Home
last modified time | relevance | path

Searched refs:attrName (Results 1 – 25 of 30) 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/mindspore/mindspore/core/ir/
Dprimitive.h75 void set_attr(const std::string &attrName, const ValuePtr &attr) { attrs_[attrName] = attr; } in set_attr() argument
76 void EraseAttr(const std::string &attrName) { (void)attrs_.erase(attrName); } in EraseAttr() argument
79 ValuePtr GetAttr(const std::string &attrName) const { in GetAttr() argument
80 auto iter = attrs_.find(attrName); in GetAttr()
95 bool HasAttr(const std::string &attrName) const { in HasAttr() argument
96 auto iter = attrs_.find(attrName); in HasAttr()
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/lib/
Dindex.js92 const attrName = attrs[i].name;
94 attribs[attrName] = attrs[i].value;
95 attribsNamespace[attrName] = attrs[i].namespace;
96 attribsPrefix[attrName] = attrs[i].prefix;
253 const attrName = attrs[i].name;
255 if (typeof recipient.attribs[attrName] === 'undefined') {
256 recipient.attribs[attrName] = attrs[i].value;
257 recipient['x-attribsNamespace'][attrName] = attrs[i].namespace;
258 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.h41 bool HasElementAttribute(const CefString& attrName) override;
42 CefString GetElementAttribute(const CefString& attrName) override;
44 bool SetElementAttribute(const CefString& attrName,
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()
/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/parse5/test/utils/
Dgenerate-tokenization-tests.js109 Object.keys(tokenEntry).forEach(attrName => {
110 const attrVal = tokenEntry[attrName];
112 delete tokenEntry[attrName];
113 tokenEntry[unicodeUnescape(attrName)] = unicodeUnescape(attrVal);
/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/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/skia/src/xml/
DSkDOM.h52 const char* findAttr(const Node*, const char attrName[]) const;
/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/typescript/tests/cases/conformance/controlFlow/
DneverReturningFunctions1.ts171 attrName?: string; property
/third_party/mesa3d/src/gallium/tools/trace/
Ddump_state.py588 for fileName, attrName in mapping:
590 attr = getattr(stage, attrName)
/third_party/gettext/gnulib-local/lib/libxml/
Dcatalog.c1178 const xmlChar *name, const xmlChar *attrName, in xmlParseXMLCatalogOneNode() argument
1188 if (attrName != NULL) { in xmlParseXMLCatalogOneNode()
1189 nameValue = xmlGetProp(cur, attrName); in xmlParseXMLCatalogOneNode()
1192 "%s entry lacks '%s'\n", name, attrName, NULL); in xmlParseXMLCatalogOneNode()
/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()
/third_party/parse5/packages/parse5/lib/tokenizer/
Dindex.js2186 Tokenizer.getTokenAttr = function(token, attrName) { argument
2188 if (token.attrs[i].name === attrName) {

12