/external/cldr/tools/java/org/unicode/cldr/util/ |
D | PathChecker.java | 55 String attrValue = entry.getValue(); in checkPath() local 56 ok &= checkAttribute(dtdData, element, attribute, attrValue, errors); in checkPath() 63 …heckAttribute(DtdData dtdData, String element, String attribute, String attrValue, Map<R3<String, … in checkAttribute() argument 87 ValueStatus valueStatus = attrValueToStatus.get(attrValue); in checkAttribute() 89 valueStatus = dtdData.getValueStatus(element, attribute, attrValue); in checkAttribute() 92 dtdData.getValueStatus(element, attribute, attrValue); in checkAttribute() 94 attrValueToStatus.putIfAbsent(attrValue, valueStatus); in checkAttribute() 98 errors.put(Row.of(element, attribute, attrValue), valueStatus); in checkAttribute()
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | ProcessorOutputElem.java | 151 …lic void setForeignAttr(String attrUri, String attrLocalName, String attrRawName, String attrValue) in setForeignAttr() argument 154 m_outputProperties.setProperty(key, attrValue); in setForeignAttr() 161 …dLiteralResultAttribute(String attrUri, String attrLocalName, String attrRawName, String attrValue) in addLiteralResultAttribute() argument 164 m_outputProperties.setProperty(key, attrValue); in addLiteralResultAttribute()
|
D | XSLTAttributeDef.java | 1568 String attrRawName, String attrValue, ElemTemplateElement elem) in setAttrValue() argument 1597 attrRawName, attrValue }; in setAttrValue() 1602 attrRawName, attrValue, elem); in setAttrValue()
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | NewHdfParser.java | 429 String attrValue = internStrategy.intern(sb.toString()); in parseAttribute() local 430 element.addAttribute(attrKey, attrValue); in parseAttribute() 434 String attrValue = parseAttributeValue(seq, index, state); in parseAttribute() local 435 if (attrValue == null || attrValue.length() == 0) { in parseAttribute() 440 attrValue = internStrategy.intern(attrValue); in parseAttribute() 441 element.addAttribute(attrKey, attrValue); in parseAttribute() 442 end = index + attrValue.length(); in parseAttribute()
|
/external/llvm-project/mlir/examples/toy/Ch7/mlir/ |
D | Dialect.cpp | 203 auto attrValue = opaqueValue.dyn_cast<mlir::DenseFPElementsAttr>(); in verifyConstantForType() local 204 if (!attrValue) in verifyConstantForType() 217 auto attrType = attrValue.getType().cast<mlir::TensorType>(); in verifyConstantForType() 239 auto attrValue = opaqueValue.dyn_cast<ArrayAttr>(); in verifyConstantForType() local 240 if (!attrValue || attrValue.getValue().size() != resultElementTypes.size()) in verifyConstantForType() 246 llvm::ArrayRef<mlir::Attribute> attrElementValues = attrValue.getValue(); in verifyConstantForType()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
D | DOM3TreeWalker.java | 673 String attrValue = attr.getNodeValue(); in serializeAttList() local 838 fSerializer.addAttribute(attrNS, localName, attrName, type, attrValue); in serializeAttList() 852 attrValue); in serializeAttList() 859 attrValue); in serializeAttList() 875 fSerializer.namespaceAfterStartElement(prefix, attrValue); in serializeAttList() 1832 String attrValue = attr.getNodeValue(); in recordLocalNSDecl() local 1839 attrValue = attrValue == null ? "" : attrValue; in recordLocalNSDecl() 1846 if (XMLNS_URI.equals(attrValue)) { in recordLocalNSDecl() 1866 if (attrValue.length() != 0) { in recordLocalNSDecl() 1867 fNSBinder.declarePrefix(localName, attrValue); in recordLocalNSDecl() [all …]
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestAttributeValues.java | 252 String attrValue = entry.getValue(); in checkPath() local 253 checkAttribute(element, attribute, attrValue); in checkPath() 265 private void checkAttribute(String element, String attribute, String attrValue) { in checkAttribute() argument 286 if (set.putIfAbsent(attrValue, Boolean.TRUE) != null) { in checkAttribute() 291 ValueStatus valueStatus = dtdData.getValueStatus(element, attribute, attrValue); in checkAttribute() 294 dtdData.getValueStatus(element, attribute, attrValue); in checkAttribute() 297 valueStatusInfo.put(valueStatus, element, attribute, attrValue, Boolean.TRUE); in checkAttribute()
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/ |
D | NodeHandler.java | 56 String attrValue = attrMatcher.group(3); in addHandler() local 74 attrHandler.put(attrValue, subHandler); in addHandler()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowLegacyAssetManager.java | 361 AttributeResource attrValue = themeStyleSet.getAttrValue(resName); in getThemeValue() local 362 while(attrValue != null && attrValue.isStyleReference()) { in getThemeValue() 363 ResName attrResName = attrValue.getStyleReference(); in getThemeValue() 364 if (attrValue.resName.equals(attrResName)) { in getThemeValue() 368 attrValue = themeStyleSet.getAttrValue(attrResName); in getThemeValue() 370 if (attrValue != null) { in getThemeValue() 371 convertAndFill(attrValue, outValue, config, resolveRefs); in getThemeValue() 1120 AttributeResource attrValue = themeStyleSet.getAttrValue(styleAttributeResName); in buildTypedValue() local 1121 if (attrValue == null) { in buildTypedValue() 1126 if (attrValue.isResourceReference()) { in buildTypedValue() [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/src/ |
D | style-util.js | 335 const attrValue = element.getAttribute(CSS_BUILD_ATTR); 336 if (attrValue) { 337 element.__cssBuild = attrValue;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
D | AttributeTable.java | 223 public AttributeTable add(ASN1ObjectIdentifier attrType, ASN1Encodable attrValue) in add() argument 227 newTable.addAttribute(attrType, new Attribute(attrType, new DERSet(attrValue))); in add()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/cms/ |
D | AttributeTable.java | 225 public AttributeTable add(ASN1ObjectIdentifier attrType, ASN1Encodable attrValue) in add() argument 229 newTable.addAttribute(attrType, new Attribute(attrType, new DERSet(attrValue))); in add()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/cms/ |
D | AttributeTable.java | 225 public AttributeTable add(ASN1ObjectIdentifier attrType, ASN1Encodable attrValue) in add() argument 229 newTable.addAttribute(attrType, new Attribute(attrType, new DERSet(attrValue))); in add()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateEnglishChanged.java | 114 for (String attrValue : attrValues) { in main() 115 alphabet.addAll(attrValue); in main()
|
/external/llvm-project/mlir/lib/Dialect/PDL/IR/ |
D | PDL.cpp | 98 Optional<Attribute> attrValue = op.value(); in verify() local 100 if (!attrValue && isa<RewriteOp>(op->getParentOp())) in verify() 103 if (attrValue && attrType) in verify()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | ParseRDF.java | 412 String attrValue = attribute.getNodeValue(); in rdf_PropertyElement() local 424 else if ("Literal".equals(attrValue)) in rdf_PropertyElement() 428 else if ("Resource".equals(attrValue)) in rdf_PropertyElement() 432 else if ("Collection".equals(attrValue)) in rdf_PropertyElement()
|
/external/testng/src/main/java/org/testng/reporters/ |
D | XMLSuiteResultWriter.java | 324 Object attrValue = testResult.getAttribute(attrName); in addTestResultAttributes() local 328 if (attrValue == null) { in addTestResultAttributes() 333 xmlBuffer.addCDATA(attrValue.toString()); in addTestResultAttributes()
|
/external/cldr/tools/java/org/unicode/cldr/json/ |
D | Ldml2JsonConverter.java | 1436 String attrValue = escapeValue(attrAsValueMap.get(key)); in writeLeafNode() local 1439 String[] strings = attrValue.trim().split("\\s+"); in writeLeafNode() 1451 out.name("_" + key).value(attrValue); in writeLeafNode() 1453 out.name(key).value(attrValue); in writeLeafNode()
|
/external/libxml2/ |
D | xmlschemas.c | 7193 const xmlChar *attrValue, *name = NULL, *ns = NULL; in xmlSchemaParseLocalAttribute() local 7249 attrValue = xmlSchemaGetNodeContent(pctxt, in xmlSchemaParseLocalAttribute() 7251 if (xmlStrEqual(attrValue, BAD_CAST "qualified")) { in xmlSchemaParseLocalAttribute() 7253 } else if (!xmlStrEqual(attrValue, BAD_CAST "unqualified")) in xmlSchemaParseLocalAttribute() 7259 attrValue, NULL, NULL, NULL); in xmlSchemaParseLocalAttribute() 7266 attrValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr); in xmlSchemaParseLocalAttribute() 7268 if (xmlStrEqual(attrValue, BAD_CAST "optional")) in xmlSchemaParseLocalAttribute() 7270 else if (xmlStrEqual(attrValue, BAD_CAST "prohibited")) in xmlSchemaParseLocalAttribute() 7272 else if (xmlStrEqual(attrValue, BAD_CAST "required")) in xmlSchemaParseLocalAttribute() 7279 attrValue, NULL, NULL, NULL); in xmlSchemaParseLocalAttribute() [all …]
|
/external/icu/icu4c/source/common/ |
D | uloc_tag.cpp | 1329 icu::CharString* attrValue = in _appendKeywordsToLanguageTag() local 1331 if (attrValue == NULL) { in _appendKeywordsToLanguageTag() 1338 attr->attribute = attrValue->data(); in _appendKeywordsToLanguageTag()
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/ |
D | Deserializer.cpp | 2742 auto attrValue = words[wordIndex++]; in processOp() local 2744 "memory_access", opBuilder.getI32IntegerAttr(attrValue))); in processOp() 2745 isAlignedAttr = (attrValue == 2); in processOp()
|
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 939 attrValue = markupAttrMap.get(attr) 940 if not self._matches(attrValue, matchAgainst):
|
/external/llvm-project/mlir/lib/Dialect/Vector/ |
D | VectorOps.cpp | 2961 int64_t attrValue = it.value().cast<IntegerAttr>().getInt(); in verify() local 2962 if (attrValue < 0 || attrValue > resultShape[it.index()]) in verify() 2965 maskDimSizes.push_back(attrValue); in verify()
|
/external/python/setuptools/setuptools/_vendor/ |
D | pyparsing.py | 4947 for attrName,attrValue in attrs: 4950 if attrValue != withAttribute.ANY_VALUE and tokens[attrName] != attrValue: 4952 (attrName, tokens[attrName], attrValue))
|
/external/python/setuptools/pkg_resources/_vendor/ |
D | pyparsing.py | 4947 for attrName,attrValue in attrs: 4950 if attrValue != withAttribute.ANY_VALUE and tokens[attrName] != attrValue: 4952 (attrName, tokens[attrName], attrValue))
|