Searched refs:attrName (Results 1 - 10 of 10) sorted by relevance
/third_party/node/test/fixtures/wpt/user-timing/ |
H A D | invoke_with_timing_attributes.worker.js | 4 function emit_test(attrName) { 6 performance.mark(attrName); 7 performance.clearMarks(attrName); 8 }, "performance.mark should not throw if used with timing attribute " + attrName 15 function emit_test2(attrName) { 17 performance.measure(attrName); 18 performance.clearMeasures(attrName); 19 }, "performance.measure should not throw if used with timing attribute " + attrName
|
/third_party/skia/include/docs/ |
H A D | SkPDFDocument.h | 37 void appendName(const char* owner, const char* attrName, const char* value); 38 void appendString(const char* owner, const char* attrName, const char* value); 44 const char* attrName, 47 const char* attrName,
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/ |
H A D | linux_getxattr_test.cpp | 39 const char* attrName = "user.test"; in HWTEST_F() local 41 int setResult = setxattr(filePath, attrName, attrValue, strlen(attrValue), XATTR_CREATE); in HWTEST_F() 44 int getResult = getxattr(filePath, attrName, buffer, sizeof(buffer)); in HWTEST_F()
|
H A D | linux_setxattr_test.cpp | 41 const char* attrName = "user.test"; in HWTEST_F() local 43 int setResult = setxattr(filePath, attrName, attrValue, strlen(attrValue), XATTR_CREATE); in HWTEST_F()
|
/third_party/skia/src/gpu/ |
H A D | GrPersistentCacheUtils.cpp | 107 const char* attrName = static_cast<const char*>(reader->skipByteArray(&attrLen)); in UnpackCachedShaders() local 108 if (attrName) { in UnpackCachedShaders() 109 attr.assign(attrName, attrLen); in UnpackCachedShaders()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGNode.cpp | 91 #define PARSE_AND_SET(svgName, attrName) \ in parseAndSetAttribute() 92 this->set##attrName( \ in parseAndSetAttribute() 93 SkSVGAttributeParser::parseProperty<decltype(fPresentationAttributes.f##attrName)>( \ in parseAndSetAttribute()
|
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/ |
H A D | StableAPI.java | 453 static String getAttr(Node node, String attrName) { in getAttr() argument 458 // node.getFirstChild().getAttributes().getNamedItem(attrName).getNodeValue(); in getAttr() 462 return node.getAttributes().getNamedItem(attrName).getNodeValue(); in getAttr() 466 "[no attributes Can't get attr " + attrName + " out of node " + node.getNodeName() + ":" in getAttr() 468 } else if (node.getAttributes().getNamedItem(attrName) == null) { in getAttr() 470 // throw new InternalError("No attribute named: "+attrName); in getAttr() 472 System.err.println("Can't get attr " + attrName + ": " + npe.toString()); in getAttr() 475 throw new InternalError("Can't get attr " + attrName); in getAttr() 479 static String getAttr(NamedNodeMap attrList, String attrName) { in getAttr() argument 480 return attrList.getNamedItem(attrName) in getAttr() [all...] |
/third_party/skia/src/xml/ |
H A D | SkDOM.h | 72 const char* findAttr(const Node*, const char attrName[]) const;
|
/third_party/typescript/tests/baselines/reference/ |
H A D | neverReturningFunctions1.js | 168 attrName?: string; 498 attrName?: string;
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | dump_state.py | 633 for fileName, attrName in mapping: 635 attr = getattr(stage, attrName)
|
Completed in 6 milliseconds