Home
last modified time | relevance | path

Searched refs:attrName (Results 1 – 25 of 26) sorted by relevance

12

/third_party/cef/libcef_dll/cpptoc/
Ddomnode_cpptoc.cc369 const cef_string_t* attrName) { in domnode_has_element_attribute() argument
378 DCHECK(attrName); in domnode_has_element_attribute()
379 if (!attrName) in domnode_has_element_attribute()
384 CefDOMNodeCppToC::Get(self)->HasElementAttribute(CefString(attrName)); in domnode_has_element_attribute()
392 const cef_string_t* attrName) { in domnode_get_element_attribute() argument
401 DCHECK(attrName); in domnode_get_element_attribute()
402 if (!attrName) in domnode_get_element_attribute()
407 CefDOMNodeCppToC::Get(self)->GetElementAttribute(CefString(attrName)); in domnode_get_element_attribute()
440 const cef_string_t* attrName, in domnode_set_element_attribute() argument
450 DCHECK(attrName); in domnode_set_element_attribute()
[all …]
/third_party/cef/libcef_dll/ctocpp/
Ddomnode_ctocpp.cc372 bool CefDOMNodeCToCpp::HasElementAttribute(const CefString& attrName) { in HasElementAttribute() argument
382 DCHECK(!attrName.empty()); in HasElementAttribute()
383 if (attrName.empty()) in HasElementAttribute()
387 int _retval = _struct->has_element_attribute(_struct, attrName.GetStruct()); in HasElementAttribute()
394 CefString CefDOMNodeCToCpp::GetElementAttribute(const CefString& attrName) { in GetElementAttribute() argument
404 DCHECK(!attrName.empty()); in GetElementAttribute()
405 if (attrName.empty()) in GetElementAttribute()
410 _struct->get_element_attribute(_struct, attrName.GetStruct()); in GetElementAttribute()
446 bool CefDOMNodeCToCpp::SetElementAttribute(const CefString& attrName, in SetElementAttribute() argument
457 DCHECK(!attrName.empty()); in SetElementAttribute()
[all …]
Ddomnode_ctocpp.h56 bool HasElementAttribute(const CefString& attrName) override;
57 CefString GetElementAttribute(const CefString& attrName) override;
59 bool SetElementAttribute(const CefString& attrName,
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/lib/
Dindex.ts84 const attrName = attrs[i].name;
86 attribs[attrName] = attrs[i].value;
87 attribsNamespace[attrName] = attrs[i].namespace;
88 attribsPrefix[attrName] = attrs[i].prefix;
208 const attrName = attrs[i].name;
210 if (typeof recipient.attribs[attrName] === 'undefined') {
211 recipient.attribs[attrName] = attrs[i].value;
212 recipient['x-attribsNamespace']![attrName] = attrs[i].namespace!;
213 recipient['x-attribsPrefix']![attrName] = attrs[i].prefix!;
/third_party/skia/include/docs/
DSkPDFDocument.h37 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/cef/libcef/renderer/
Ddom_node_impl.cc295 bool CefDOMNodeImpl::HasElementAttribute(const CefString& attrName) { in HasElementAttribute() argument
305 return element.HasAttribute(WebString::FromUTF16(attrName.ToString16())); in HasElementAttribute()
308 CefString CefDOMNodeImpl::GetElementAttribute(const CefString& attrName) { in GetElementAttribute() argument
320 element.GetAttribute(WebString::FromUTF16(attrName.ToString16())); in GetElementAttribute()
348 bool CefDOMNodeImpl::SetElementAttribute(const CefString& attrName, in SetElementAttribute() argument
359 element.SetAttribute(WebString::FromUTF16(attrName.ToString16()), in SetElementAttribute()
Ddom_node_impl.h41 bool HasElementAttribute(const CefString& attrName) override;
42 CefString GetElementAttribute(const CefString& attrName) override;
44 bool SetElementAttribute(const CefString& attrName,
/third_party/cef/include/
Dcef_dom.h297 virtual bool HasElementAttribute(const CefString& attrName) = 0;
303 virtual CefString GetElementAttribute(const CefString& attrName) = 0;
316 virtual bool SetElementAttribute(const CefString& attrName,
/third_party/cef/include/capi/
Dcef_dom_capi.h306 const cef_string_t* attrName);
314 const cef_string_t* attrName);
327 const cef_string_t* attrName,
/third_party/skia/src/gpu/
DGrPersistentCacheUtils.cpp107 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/
DSkSVGNode.cpp91 #define PARSE_AND_SET(svgName, attrName) \ in parseAndSetAttribute() argument
92 this->set##attrName( \ in parseAndSetAttribute()
93 SkSVGAttributeParser::parseProperty<decltype(fPresentationAttributes.f##attrName)>( \ in parseAndSetAttribute()
/third_party/parse5/packages/parse5/lib/common/
Dtoken.ts82 export function getTokenAttr(token: TagToken, attrName: string): string | null {
84 if (token.attrs[i].name === attrName) {
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
DStableAPI.java449 static String getAttr(Node node, String attrName) { in getAttr() argument
458 return node.getAttributes().getNamedItem(attrName).getNodeValue(); in getAttr()
462 … "[no attributes Can't get attr " + attrName + " out of node " + node.getNodeName() + ":" in getAttr()
464 } else if (node.getAttributes().getNamedItem(attrName) == null) { in getAttr()
468 System.err.println("Can't get attr " + attrName + ": " + npe.toString()); in getAttr()
471 throw new InternalError("Can't get attr " + attrName); in getAttr()
475 static String getAttr(NamedNodeMap attrList, String attrName) { in getAttr() argument
476 return attrList.getNamedItem(attrName).getNodeValue(); in getAttr()
/third_party/flutter/skia/src/xml/
DSkDOM.h52 const char* findAttr(const Node*, const char attrName[]) const;
/third_party/typescript/tests/baselines/reference/
DneverReturningFunctions1.js168 attrName?: string;
498 attrName?: string;
DneverReturningFunctions1.symbols415 attrName?: string;
416 >attrName : Symbol(Component.attrName, Decl(neverReturningFunctions1.ts, 165, 52))
DneverReturningFunctions1.types471 attrName?: string;
472 >attrName : string | undefined
DneverReturningFunctions1.errors.txt239 attrName?: string;
/third_party/skia/src/xml/
DSkDOM.h72 const char* findAttr(const Node*, const char attrName[]) const;
/third_party/typescript/tests/cases/conformance/controlFlow/
DneverReturningFunctions1.ts171 attrName?: string; property
/third_party/mesa3d/src/gallium/tools/trace/
Ddump_state.py633 for fileName, attrName in mapping:
635 attr = getattr(stage, attrName)
/third_party/libxml2/
Dcatalog.c1150 const xmlChar *name, const xmlChar *attrName, in xmlParseXMLCatalogOneNode() argument
1160 if (attrName != NULL) { in xmlParseXMLCatalogOneNode()
1161 nameValue = xmlGetProp(cur, attrName); in xmlParseXMLCatalogOneNode()
1164 "%s entry lacks '%s'\n", name, attrName, NULL); in xmlParseXMLCatalogOneNode()
Dparser.c5984 const xmlChar *attrName; in xmlParseAttributeListDecl() local
6010 attrName = xmlParseName(ctxt); in xmlParseAttributeListDecl()
6011 if (attrName == NULL) { in xmlParseAttributeListDecl()
6062 ctxt->sax->attributeDecl(ctxt->userData, elemName, attrName, in xmlParseAttributeListDecl()
6070 xmlAddDefAttrs(ctxt, elemName, attrName, defaultValue); in xmlParseAttributeListDecl()
6073 xmlAddSpecialAttr(ctxt, elemName, attrName, type); in xmlParseAttributeListDecl()
/third_party/typescript/tests/lib/
Dlib.d.ts11830 attrName: string; property
/third_party/typescript/lib/
Dlib.dom.d.ts10645 readonly attrName: string; property

12