/third_party/vk-gl-cts/executor/ |
D | xeTestResultParser.cpp | 399 const char* TestResultParser::getAttribute (const char* name) in getAttribute() function in xe::TestResultParser 404 return m_xmlParser.getAttribute(name); in getAttribute() 466 const char* version = getAttribute("Version"); in handleElementStart() 470 m_result->casePath = getAttribute("CasePath"); in handleElementStart() 474 m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType")); in handleElementStart() 498 result->statusCode = getTestStatusCode(getAttribute("StatusCode")); in handleElementStart() 510 section->name = getAttribute("Name"); in handleElementStart() 511 section->description = getAttribute("Description"); in handleElementStart() 519 number->name = getAttribute("Name"); in handleElementStart() 520 number->description = getAttribute("Description"); in handleElementStart() [all …]
|
D | xeTestCaseListParser.cpp | 104 …const char* name = m_xmlParser.hasAttribute("Name") ? m_xmlParser.getAttribute("Name") : DE_… in parse() 105 …const char* description = m_xmlParser.hasAttribute("Description") ? m_xmlParser.getAttribute("Des… in parse() 106 …const char* caseType = m_xmlParser.hasAttribute("CaseType") ? m_xmlParser.getAttribute("CaseType… in parse()
|
/third_party/libphonenumber/migrator/migrator-servlet/src/main/webapp/ |
D | index.jsp | 17 …ionResult> validMigrations = (ImmutableList<MigrationResult>) request.getAttribute("validMigration… 18 …nResult> invalidMigrations = (ImmutableList<MigrationResult>) request.getAttribute("invalidMigrati… 19 …onEntry> validUntouchedNums = (ImmutableList<MigrationEntry>) request.getAttribute("validUntouched… 20 …Entry> invalidUntouchedNums = (ImmutableList<MigrationEntry>) request.getAttribute("invalidUntouch… 144 if (request.getAttribute("numberError") == null && request.getAttribute("number") != null) { 145 if (request.getAttribute("validMigration") != null) { 146 …out.print("<h3 class='valid'>Valid +" + request.getAttribute("numberCountryCode") + " Phone Number… 147 …out.print("<p>The stale number '" + request.getAttribute("number") + "' was successfully migrated … 148 " phone number: +" + request.getAttribute("validMigration") + "</p>"); 149 } else if (request.getAttribute("invalidMigration") != null) { [all …]
|
/third_party/boost/tools/build/src/tools/ |
D | doxproc.py | 66 if node.getAttribute(attribute) == 'yes': 154 if node.getAttribute('linkend') in self.idmap: 156 node.setAttribute('linkend',self.idmap[node.getAttribute('linkend')]) 160 …elif hasattr(node,'hasAttribute') and node.hasAttribute('id') and node.getAttribute('id') in self.… 162 node.setAttribute('id',self.idmap[node.getAttribute('id')]) 269 if n.getAttribute('kind') not in ('file','dir','define'): 274 'id' : n.getAttribute('refid') 276 if n.getAttribute('kind') in ('class','struct'): 285 'id' : n.getAttribute('refid') 287 … if hasattr(m,'getAttribute') and m.getAttribute('kind') in ('class','struct'): [all …]
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
D | RBTMXImporter.java | 96 String name = tu_elem.getAttribute("tuid"); in importDoc() 104 String type = prop_elem.getAttribute("type"); in importDoc() 120 String encoding = tuv_elem.getAttribute("lang"); in importDoc() 145 item.setCreatedDate(tuv_elem.getAttribute("creationdate")); in importDoc() 146 item.setModifiedDate(tuv_elem.getAttribute("changedate")); in importDoc() 147 if (tuv_elem.getAttribute("changeid") != null) in importDoc() 148 item.setModifier(tuv_elem.getAttribute("changeid")); in importDoc() 149 if (tuv_elem.getAttribute("creationid") != null) in importDoc() 150 item.setCreator(tuv_elem.getAttribute("creationid")); in importDoc() 156 String type = prop_elem.getAttribute("type"); in importDoc() [all …]
|
D | RBReporterScanner.java | 109 File directory = new File(dir_elem.getAttribute("location")); in performScan() 110 boolean recurse = dir_elem.getAttribute("recurse_directories").equalsIgnoreCase("true"); in performScan() 118 FileRule frule = (FileRule)fileRules.get(frule_elem.getAttribute("name")); in performScan() 125 ParseRule prule = (ParseRule)parseRules.get(prule_elem.getAttribute("name")); in performScan() 204 FileRule frule = new FileRule(elem.getAttribute("name"), elem.getAttribute("starts_with"), in getFileRules() 205 elem.getAttribute("ends_with"), elem.getAttribute("contains")); in getFileRules() 206 result.put(elem.getAttribute("name"), frule); in getFileRules() 222 ParseRule prule = new ParseRule(elem.getAttribute("name"), elem.getAttribute("follows"), in getParseRules() 223 elem.getAttribute("precedes")); in getParseRules() 224 result.put(elem.getAttribute("name"), prule); in getParseRules()
|
D | RBxliffImporter.java | 122 String propertyType = property_elem.getAttribute("prop-type"); in importDoc() 155 String sourceLocale = ((Element)fileNode).getAttribute("source-language"); in importDoc() 156 String targetLocale = ((Element)fileNode).getAttribute("target-language"); in importDoc() 186 String rootGroupName = localeNode.getAttribute("id"); in importDoc() 220 String name = tu_elem.getAttribute("id"); in importDoc() 276 String name = trans_unit_elem.getAttribute("id"); in parseTranslationUnit() 283 String state = trans_unit_elem.getAttribute("state"); in parseTranslationUnit() 288 String date = trans_unit_elem.getAttribute("date"); in parseTranslationUnit() 312 String propertyType = property_elem.getAttribute("prop-type"); in parseTranslationUnit()
|
/third_party/weex-loader/src/ |
D | parser.js | 32 function getAttribute (node, name) { function 77 type = getAttribute(node, 'type') 86 …console.warn(`<we-element name="${getAttribute(node, 'name')}"> is deprecated, please use <element… 94 const name = getAttribute(node, 'name') 95 const src = getAttribute(node, 'src') 96 const lang = getAttribute(node, 'lang')
|
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/ |
D | BuildMetadataFromXml.java | 127 regionCode = territoryElement.getAttribute("id"); in buildPhoneMetadataCollection() 193 return element.hasAttribute(NATIONAL_PREFIX) ? element.getAttribute(NATIONAL_PREFIX) : ""; in getNationalPrefix() 202 metadata.setCountryCode(Integer.parseInt(element.getAttribute(COUNTRY_CODE))); in loadTerritoryTagMetadata() 205 metadata.setLeadingDigits(validateRE(element.getAttribute(LEADING_DIGITS))); in loadTerritoryTagMetadata() 208 metadata.setInternationalPrefix(validateRE(element.getAttribute(INTERNATIONAL_PREFIX))); in loadTerritoryTagMetadata() 212 element.getAttribute(PREFERRED_INTERNATIONAL_PREFIX)); in loadTerritoryTagMetadata() 216 validateRE(element.getAttribute(NATIONAL_PREFIX_FOR_PARSING), true)); in loadTerritoryTagMetadata() 219 validateRE(element.getAttribute(NATIONAL_PREFIX_TRANSFORM_RULE))); in loadTerritoryTagMetadata() 229 metadata.setPreferredExtnPrefix(element.getAttribute(PREFERRED_EXTN_PREFIX)); in loadTerritoryTagMetadata() 265 intlFormat.setPattern(numberFormatElement.getAttribute(PATTERN)); in loadInternationalFormat() [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/ |
D | pretty_vcproj.py | 53 node_string += node.getAttribute("Name") 108 node.getAttribute('Name') == '_excluded_files'): 226 vsprops = dom.documentElement.getAttribute('InheritedPropertySheets') 236 current_name = child2.getAttribute("Name") 244 name = sub_node.getAttribute("Name") 261 value1 = node1.getAttribute(name) 310 vsprops = configuration_node.getAttribute('InheritedPropertySheets')
|
/third_party/node/tools/gyp/tools/ |
D | pretty_vcproj.py | 56 node_string += node.getAttribute("Name") 110 if node.attributes and node.getAttribute("Name") == "_excluded_files": 231 vsprops = dom.documentElement.getAttribute("InheritedPropertySheets") 242 current_name = child2.getAttribute("Name") 250 name = sub_node.getAttribute("Name") 267 value1 = node1.getAttribute(name) 318 vsprops = configuration_node.getAttribute("InheritedPropertySheets")
|
/third_party/icu/icu4c/source/test/letest/ |
D | xmlreader.cpp | 170 char *id = getCString(testCase->getAttribute(id_attr)); in readTestFile() 171 char *script = getCString(testCase->getAttribute(script_attr)); in readTestFile() 172 char *lang = getCString(testCase->getAttribute(lang_attr)); in readTestFile() 206 fontName = getCString(element->getAttribute(name_attr)); in readTestFile() 207 fontVer = getCString(element->getAttribute(ver_attr)); in readTestFile() 208 fontCksum = getCString(element->getAttribute(cksum_attr)); in readTestFile()
|
D | gendata.cpp | 193 char *id = getCString(testCase->getAttribute(id_attr)); in main() 194 char *script = getCString(testCase->getAttribute(script_attr)); in main() 195 char *lang = getCString(testCase->getAttribute(lang_attr)); in main() 237 char *fontName = getCString(element->getAttribute(name_attr)); in main()
|
/third_party/boost/libs/predef/tools/ci/ |
D | build_log.py | 64 found = found and n.getAttribute('id') == id 66 found = found and n.hasAttribute('id') and n.getAttribute('id') == id 68 found = found and n.hasAttribute('name') and n.getAttribute('name') == name 129 test_name = test_node.getAttribute('name') 135 'test-type' : test_node.getAttribute('type').lower(), 224 if action_node.getAttribute('status') == '0': 297 info['time-start'] = action_node.getAttribute('start') 298 info['time-end'] = action_node.getAttribute('end') 299 info['time-user'] = action_node.getAttribute('user') 300 info['time-system'] = action_node.getAttribute('system')
|
/third_party/icu/icu4c/source/test/perf/leperf/ |
D | xmlreader.cpp | 174 char *id = getCString(testCase->getAttribute(id_attr)); in readTestFile() 175 char *script = getCString(testCase->getAttribute(script_attr)); in readTestFile() 176 char *lang = getCString(testCase->getAttribute(lang_attr)); in readTestFile() 210 fontName = getCString(element->getAttribute(name_attr)); in readTestFile() 211 fontVer = getCString(element->getAttribute(ver_attr)); in readTestFile() 212 fontCksum = getCString(element->getAttribute(cksum_attr)); in readTestFile()
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglChooseConfigReference.cpp | 210 return a.getAttribute(Attribute) < b.getAttribute(Attribute); in compareAttributeSmaller() 224 EGLint getAttribute (const EGLenum attribute) const in getAttribute() function in deqp::egl::SurfaceConfig 226 return m_info.getAttribute(attribute); in getAttribute() 237 if (a.getAttribute(attribute) != b.getAttribute(attribute)) return false; in operator ==() 385 AttribRule getAttribute (EGLenum name) const in getAttribute() function in deqp::egl::ConfigFilter 406 const EGLint cfgValue = config.getAttribute(rule.name); in isMatch() 452 const EGLint value = getAttribute(attrib).value; in getSpecifiedRGBColors() 476 const EGLint value = getAttribute(attrib).value; in getSpecifiedLuminanceColors() 490 const EGLint value = getAttribute(attrib).value; in isYuvPlaneBppSpecified()
|
/third_party/node/deps/npm/node_modules/unique-filename/coverage/ |
D | sorter.js | 29 key: colNode.getAttribute('data-col'), 30 sortable: !colNode.getAttribute('data-nosort'), 31 type: colNode.getAttribute('data-type') || 'string' 53 val = colNode.getAttribute('data-value');
|
/third_party/node/deps/npm/node_modules/mute-stream/coverage/lcov-report/ |
D | sorter.js | 29 key: colNode.getAttribute('data-col'), 30 sortable: !colNode.getAttribute('data-nosort'), 31 type: colNode.getAttribute('data-type') || 'string' 53 val = colNode.getAttribute('data-value');
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | GlobalVariable.h | 213 Attribute getAttribute(Attribute::AttrKind Kind) const { in getAttribute() function 214 return Attrs.getAttribute(Kind); in getAttribute() 218 Attribute getAttribute(StringRef Kind) const { in getAttribute() function 219 return Attrs.getAttribute(Kind); in getAttribute()
|
D | Function.h | 334 return getAttribute(AttributeList::FunctionIndex, Kind); in getFnAttribute() 339 return getAttribute(AttributeList::FunctionIndex, Kind); in getFnAttribute() 413 Attribute getAttribute(unsigned i, Attribute::AttrKind Kind) const { in getAttribute() function 414 return AttributeSets.getAttribute(i, Kind); in getAttribute() 418 Attribute getAttribute(unsigned i, StringRef Kind) const { in getAttribute() function 419 return AttributeSets.getAttribute(i, Kind); in getAttribute()
|
/third_party/libsoup/libsoup/ |
D | directory.js | 36 var a = rowA.cells[gOrderBy].getAttribute("sortable-data") || rowA.cells[gOrderBy].innerHTML; 37 var b = rowB.cells[gOrderBy].getAttribute("sortable-data") || rowB.cells[gOrderBy].innerHTML; 59 order = gTable.getAttribute("order") == "asc" ? "desc" : "asc";
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/ |
D | JacocoReportCheck.java | 179 String cls = clsElement.getAttribute("name"); in parseReport() 193 String mtdName = mtdElement.getAttribute("name"); in parseReport() 194 String mtdDesc = mtdElement.getAttribute("desc"); in parseReport() 195 String mtdLineStr = mtdElement.getAttribute("line"); in parseReport() 226 String type = cntElement.getAttribute("type"); in parseReport() 227 String missedStr = cntElement.getAttribute("missed"); in parseReport() 228 String coveredStr = cntElement.getAttribute("covered"); in parseReport()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Function.h | 231 return getAttribute(AttributeSet::FunctionIndex, Kind); in getFnAttribute() 234 return getAttribute(AttributeSet::FunctionIndex, Kind); in getFnAttribute() 276 Attribute getAttribute(unsigned i, Attribute::AttrKind Kind) const { in getAttribute() function 277 return AttributeSets.getAttribute(i, Kind); in getAttribute() 280 Attribute getAttribute(unsigned i, StringRef Kind) const { in getAttribute() function 281 return AttributeSets.getAttribute(i, Kind); in getAttribute()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/mount-origin/ |
D | lws-fts.js | 91 if (t.getAttribute && t.getAttribute("string")) { 93 t.getAttribute("string");
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Statepoint.cpp | 64 AS.getAttribute(AttributeList::FunctionIndex, "statepoint-id"); in parseStatepointDirectivesFromAttrs() 71 Attribute AttrNumPatchBytes = AS.getAttribute(AttributeList::FunctionIndex, in parseStatepointDirectivesFromAttrs()
|