/third_party/cef/libcef_dll/ctocpp/ |
D | domnode_ctocpp.cc | 372 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 …]
|
D | domnode_ctocpp.h | 56 bool HasElementAttribute(const CefString& attrName) OVERRIDE; 57 CefString GetElementAttribute(const CefString& attrName) OVERRIDE; 59 bool SetElementAttribute(const CefString& attrName,
|
/third_party/cef/libcef_dll/cpptoc/ |
D | domnode_cpptoc.cc | 369 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/parse5/packages/parse5-htmlparser2-tree-adapter/lib/ |
D | index.js | 92 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/ |
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/cef/libcef/renderer/ |
D | dom_node_impl.h | 41 bool HasElementAttribute(const CefString& attrName) override; 42 CefString GetElementAttribute(const CefString& attrName) override; 44 bool SetElementAttribute(const CefString& attrName,
|
D | dom_node_impl.cc | 295 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/ |
D | cef_dom.h | 297 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/ |
D | generate-tokenization-tests.js | 109 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/ |
D | cef_dom_capi.h | 306 const cef_string_t* attrName); 314 const cef_string_t* attrName); 327 const cef_string_t* attrName,
|
/third_party/skia/src/gpu/ |
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/ |
D | SkSVGNode.cpp | 91 #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/skia/src/xml/ |
D | SkDOM.h | 52 const char* findAttr(const Node*, const char attrName[]) const;
|
/third_party/flutter/skia/src/xml/ |
D | SkDOM.h | 52 const char* findAttr(const Node*, const char attrName[]) const;
|
/third_party/typescript/tests/baselines/reference/ |
D | neverReturningFunctions1.js | 168 attrName?: string; 498 attrName?: string;
|
D | neverReturningFunctions1.symbols | 415 attrName?: string; 416 >attrName : Symbol(Component.attrName, Decl(neverReturningFunctions1.ts, 165, 52))
|
D | neverReturningFunctions1.errors.txt | 239 attrName?: string;
|
D | neverReturningFunctions1.types | 471 attrName?: string; 472 >attrName : string | undefined
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | neverReturningFunctions1.ts | 171 attrName?: string; property
|
/third_party/libxml2/ |
D | catalog.c | 1149 const xmlChar *name, const xmlChar *attrName, in xmlParseXMLCatalogOneNode() argument 1159 if (attrName != NULL) { in xmlParseXMLCatalogOneNode() 1160 nameValue = xmlGetProp(cur, attrName); in xmlParseXMLCatalogOneNode() 1163 "%s entry lacks '%s'\n", name, attrName, NULL); in xmlParseXMLCatalogOneNode()
|
D | parser.c | 5982 const xmlChar *attrName; in xmlParseAttributeListDecl() local 6008 attrName = xmlParseName(ctxt); in xmlParseAttributeListDecl() 6009 if (attrName == NULL) { in xmlParseAttributeListDecl() 6060 ctxt->sax->attributeDecl(ctxt->userData, elemName, attrName, in xmlParseAttributeListDecl() 6068 xmlAddDefAttrs(ctxt, elemName, attrName, defaultValue); in xmlParseAttributeListDecl() 6071 xmlAddSpecialAttr(ctxt, elemName, attrName, type); in xmlParseAttributeListDecl()
|
/third_party/gettext/gnulib-local/lib/libxml/ |
D | catalog.c | 1178 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()
|
D | parser.c | 5930 const xmlChar *attrName; in xmlParseAttributeListDecl() local 5956 attrName = xmlParseName(ctxt); in xmlParseAttributeListDecl() 5957 if (attrName == NULL) { in xmlParseAttributeListDecl() 6008 ctxt->sax->attributeDecl(ctxt->userData, elemName, attrName, in xmlParseAttributeListDecl() 6016 xmlAddDefAttrs(ctxt, elemName, attrName, defaultValue); in xmlParseAttributeListDecl() 6019 xmlAddSpecialAttr(ctxt, elemName, attrName, type); in xmlParseAttributeListDecl()
|
/third_party/parse5/packages/parse5/lib/tokenizer/ |
D | index.js | 2186 Tokenizer.getTokenAttr = function(token, attrName) { argument 2188 if (token.attrs[i].name === attrName) {
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 11830 attrName: string; property
|