/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | TestCldr.java | 217 void set(AttributeName attributeName, String attributeValue) { in set() argument 219 settings.put(attributeName, attributeValue); in set() 250 String attributeValue = (String) settings.get(attributeName); in loglnSAX() local 251 temp += " " + attributeName + "=<" + attributeValue + ">"; in loglnSAX() 379 String attributeValue = settings.get(attributeName); 382 v = Double.parseDouble(attributeValue); 385 approved = attributeValue.contains("approved"); 388 numberType = attributeValue; 389 int index = lookupValue(attributeValue, NumberNames); 410 nf.setCurrency(Currency.getInstance(attributeValue)); [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | VerifyAttributeValues.java | 50 …ring file, DtdType dtdType, String element, String attribute, String attributeValue, String proble… in put() argument 51 …_attribute.put(file, new AttributeValueSpec(dtdType, element, attribute, attributeValue), problem); in put() 120 String attributeValue = attributes.get(attribute); in handlePathValue() local 121 if (dtdData.isDeprecated(element, attribute, attributeValue)) { in handlePathValue() 122 …ile_element_attribute.put(file, dtdData.dtdType, element, attribute, attributeValue, "deprecated"); in handlePathValue() 127 …tatus haveTest = AttributeValueValidity.check(dtdData, element, attribute, attributeValue, reason); in handlePathValue() 133 …ile_element_attribute.put(file, dtdData.dtdType, element, attribute, attributeValue, reason.value); in handlePathValue() 136 … missing.add(new AttributeValueSpec(dtdData.dtdType, element, attribute, attributeValue)); in handlePathValue()
|
D | GenerateAttributeList.java | 167 void add(String element, String attribute, String attributeValue, boolean dtd) { in add() argument 170 attributeValue = "[date]"; in add() 172 attributeValue = "[revision]"; in add() 179 int pos = attributeValue.indexOf("proposed"); in add() 181 if (pos > 0) attributeValue = attributeValue.substring(0, pos - 1); in add() 196 valueSets[dtd ? 1 : 0].add(attributeValue); in add() 199 + ", " + attribute + ", " + attributeValue + ", " + dtd, e); in add()
|
D | FindAttributeValueDifferences.java | 92 for (String attributeValue : currentAttributeValues) { in showDiff() 93 System.out.println(title + "\t" + element + "\t" + attribute + "\t" + attributeValue); in showDiff()
|
/external/autotest/frontend/client/src/autotest/moblab/ |
D | DutManagementView.java | 37 private TextBox attributeValue; field in DutManagementView 59 attributeValue.setValue(""); in refresh() 95 attributeValue.setValue(""); in initialize() 135 addAttribute(i, attributeName.getText(), attributeValue.getText()); in initialize() 179 attributeValue = new TextBox(); in initialize() 180 attributeValue.setStyleName("dut_manage_action_row_item"); in initialize() 187 attribValueActionRow.add(attributeValue); in initialize() 338 private void addAttribute(int row_number, String attributeName, String attributeValue) { in addAttribute() argument 340 …MoblabRpcHelper.setMoblabAttribute(ipAddress, attributeName, attributeValue, new LogAction(informa… in addAttribute()
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckAttributeValues.java | 103 String attributeValue = attributes.get(attribute); in handleCheck() local 108 if (!typeValues.contains(attributeValue)) { in handleCheck() 112 new Object[] { attribute, attributeValue, typeValues })); in handleCheck() 117 … boolean haveTest = check(common_attribute_validity, attribute, attributeValue, result); in handleCheck() 119 haveTest = haveTest || check(attribute_validity, attribute, attributeValue, result); in handleCheck() 127 if (DIGITS.containsAll(attributeValue)) { in handleCheck() 130 final Count countValue = PluralInfo.Count.valueOf(attributeValue); in handleCheck() 184 …lean check(Map<String, MatcherPattern> attribute_validity, String attribute, String attributeValue, in check() argument 193 if (matcherPattern.matcher.matches(attributeValue)) { in check() 197 String replacement = getReplacement(matcherPattern.value, attributeValue); in check() [all …]
|
D | TestCLDRTests.java | 129 void set(String attributeName, String attributeValue) { in set() argument 131 settings.put(attributeName, attributeValue); in set() 147 String attributeValue = settings.get(attributeName); in myerrln() local 148 temp += " " + attributeName + "=<" + attributeValue + ">"; in myerrln() 247 String attributeValue = settings 250 v = Double.parseDouble(attributeValue); 254 int index = lookupValue(attributeValue, NumberNames); 290 String attributeValue = settings 293 date = iso.parse(attributeValue); 297 int index = lookupValue(attributeValue, DateFormatNames);
|
D | CheckForCopy.java | 182 final String attributeValue = attributeEntry.getValue(); in handleCheck() local 183 if (SKIP_TYPES.contains(attributeValue)) { in handleCheck() 188 if (value.equals(attributeValue)) { in handleCheck() 193 throw new ICUException("Value: " + value + "\nattributeValue: " + attributeValue in handleCheck()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | AttributeValueValidity.java | 753 … public AttributeValueSpec(DtdType type, String element, String attribute, String attributeValue) { in AttributeValueSpec() argument 757 this.attributeValue = attributeValue; in AttributeValueSpec() 763 public final String attributeValue; field in AttributeValueValidity.AttributeValueSpec 767 return Objects.hash(type, element, attribute, attributeValue); in hashCode() 777 attributeValue, other.attributeValue); in equals() 786 .compare(attributeValue, other.attributeValue) in compareTo() 797 + attributeValue in toString() 811 String element, String attribute, String attributeValue, in check() argument 821 if (matcherPattern.matches(attributeValue, reason)) { in check() 827 …atus check(DtdData dtdData, String element, String attribute, String attributeValue, Output<String… in check() argument [all …]
|
D | DtdData.java | 1137 public final String attributeValue; field in DtdData.IllegalByDtdException 1139 … public IllegalByDtdException(String elementName, String attributeName, String attributeValue) { in IllegalByDtdException() argument 1142 this.attributeValue = attributeValue; in IllegalByDtdException() 1151 + (attributeValue == null ? "" : ", attributeValue: " + attributeValue); in getMessage() 1156 public boolean isDeprecated(String elementName, String attributeName, String attributeValue) { in isDeprecated() argument 1159 throw new IllegalByDtdException(elementName, attributeName, attributeValue); in isDeprecated() 1168 throw new IllegalByDtdException(elementName, attributeName, attributeValue); in isDeprecated() 1172 … return attribute.deprecatedValues.contains(attributeValue); // don't need special test for "*" in isDeprecated() 1447 String attributeValue = pathPlain.getAttributeValue(i, attribute); in isDeprecated() local 1448 if (isDeprecated(elementName, attribute, attributeValue)) { in isDeprecated() [all …]
|
D | XPathParts.java | 1113 … public XPathParts setAttribute(String elementName, String attributeName, String attributeValue) { in setAttribute() argument 1115 elements.get(index).putAttribute(attributeName, attributeValue); in setAttribute() 1130 String attributeValue = attributesAndValues.getValue(); in removeProposed() local 1131 int pos = attributeValue.indexOf("proposed"); in removeProposed() 1133 … if (pos > 0 && attributeValue.charAt(pos - 1) == '-') --pos; // backup for "...-proposed" in removeProposed() 1138 attributeValue = attributeValue.substring(0, pos); // strip it off in removeProposed() 1139 element.putAttribute(attribute, attributeValue); in removeProposed() 1170 public void setAttribute(int elementIndex, String attributeName, String attributeValue) { in setAttribute() argument 1172 element.putAttribute(attributeName, attributeValue); in setAttribute()
|
D | VoteResolver.java | 1719 public static String fixBogusDraftStatusValues(String attributeValue) { in fixBogusDraftStatusValues() argument 1720 if (attributeValue == null) return "approved"; in fixBogusDraftStatusValues() 1721 if ("confirmed".equals(attributeValue)) return "approved"; in fixBogusDraftStatusValues() 1722 if ("true".equals(attributeValue)) return "unconfirmed"; in fixBogusDraftStatusValues() 1723 if ("unknown".equals(attributeValue)) return "unconfirmed"; in fixBogusDraftStatusValues() 1724 return attributeValue; in fixBogusDraftStatusValues()
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | JsonConverter.java | 142 String attributeValue = parts.getAttributeValue(i, attribute); in rewrite() local 144 out.addAttribute(attribute, attributeValue); in rewrite() 151 String attributeValue = parts.getAttributeValue(i, attribute); in rewrite() local 153 if (attributeValue == null) { in rewrite() 154 attributeValue = "?"; in rewrite() 156 out.addElement(attributeValue); in rewrite() 219 public void add(String attribute, String attributeValue) { in add() argument 223 + attribute + "," + attributeValue); in add() 226 base = attributeValue; in add() 230 suffix.append('$').append(attribute).append('=').append(attributeValue); in add()
|
D | Keyboard.java | 575 String attributeValue = attributeAndValue.getValue(); in getOutput() local 577 chars = fixValue(attributeValue); in getOutput() 585 transformStatus = TransformStatus.fromString(attributeValue); in getOutput() 590 for (String item : attributeValue.trim().split(" ")) { in getOutput()
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/ |
D | NodeHandler.java | 35 String attributeValue = xml.getAttributeValue(null, attrName); in findMatchFor() local 36 if (attributeValue != null) { in findMatchFor() 38 NodeHandler nodeHandler = attrHandler.get(attributeValue); in findMatchFor()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_packet.cpp | 32 WideString attributeValue; in getAttribute() local 35 attributeValue = static_cast<CFX_XMLElement*>(pXMLNode)->GetString( in getAttribute() 39 runtime->NewString(attributeValue.UTF8Encode().AsStringView())); in getAttribute()
|
/external/vogar/src/vogar/ |
D | XmlReportReader.java | 130 String attributeValue = parser.getAttributeValue(i); in createAttributeMap() local 131 attributeMap.put(attributeName, attributeValue); in createAttributeMap()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestAttributeValues.java | 118 + "; \t" + item.get1().attributeValue in TestCoreValidity() 130 + "; \t" + item.get1().attributeValue in TestCoreValidity()
|
D | TestPaths.java | 222 String attributeValue = attributeNValue.getValue(); in check() local 223 if (dtdData.isDeprecated(elementName, attributeName, attributeValue)) { in check() 228 + ":" + attributeValue in check() 233 data.put(dtdData.dtdType, elementName, attributeName, attributeValue, true); in check()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/ |
D | XmlResourceParserImpl.java | 694 String attributeValue = getAttributeValue(idx); in getAttributeResourceValue() local 695 if (attributeValue != null && attributeValue.startsWith("@")) { in getAttributeResourceValue() 696 int resourceId = getResourceId(attributeValue.substring(1), packageName, null); in getAttributeResourceValue()
|
/external/opencensus-java/exporters/trace/zipkin/src/main/java/io/opencensus/exporter/trace/zipkin/ |
D | ZipkinExporterHandler.java | 180 private static String attributeValueToString(AttributeValue attributeValue) { in attributeValueToString() argument 181 return attributeValue.match( in attributeValueToString()
|
/external/opencensus-java/exporters/trace/stackdriver/src/main/java/io/opencensus/exporter/trace/stackdriver/ |
D | StackdriverV2ExporterHandler.java | 373 String attributeValue) { in putToResourceAttributeMap() argument 376 toStringAttributeValueProto(attributeValue)); in putToResourceAttributeMap() 430 io.opencensus.trace.AttributeValue attributeValue) { in toAttributeValueProto() argument 431 return attributeValue.match( in toAttributeValueProto()
|
/external/opencensus-java/exporters/trace/instana/src/main/java/io/opencensus/exporter/trace/instana/ |
D | InstanaExporterHandler.java | 120 private static String attributeValueToString(AttributeValue attributeValue) { in attributeValueToString() argument 121 return attributeValue.match( in attributeValueToString()
|
/external/expat/xmlwf/ |
D | xmlwf.c | 109 attributeValue(FILE *fp, const XML_Char *s) in attributeValue() function 184 attributeValue(fp, *atts); in startElement() 227 attributeValue(fp, name); in startElementNS() 251 attributeValue(fp, *atts); in startElementNS() 254 attributeValue(fp, name); in startElementNS()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowLegacyAssetManager.java | 1231 String attributeValue; in findAttributeValue() local 1233 attributeValue = attributeSet.getAttributeValue(i); in findAttributeValue() 1238 if (attributeValue != null) { in findAttributeValue() 1242 if (AttributeResource.isResourceReference(attributeValue)) { in findAttributeValue() 1248 attributeValue = "@" + refResName.getFullyQualifiedName(); in findAttributeValue() 1252 return new AttributeResource(resName, attributeValue, "fixme!!!", referenceResId); in findAttributeValue()
|