/external/angle/src/libANGLE/ |
D | Config.cpp | 242 EGLAttrib attributeValue = attribIter->second; in filter() local 244 if (attributeValue == EGL_DONT_CARE) in filter() 252 match = config.bufferSize >= attributeValue; in filter() 255 match = config.alphaSize >= attributeValue; in filter() 258 match = config.blueSize >= attributeValue; in filter() 261 match = config.greenSize >= attributeValue; in filter() 264 match = config.redSize >= attributeValue; in filter() 267 match = config.depthSize >= attributeValue; in filter() 270 match = config.stencilSize >= attributeValue; in filter() 273 match = config.configCaveat == static_cast<EGLenum>(attributeValue); in filter() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | TestCldr.java | 218 void set(AttributeName attributeName, String attributeValue) { in set() argument 220 settings.put(attributeName, attributeValue); in set() 251 String attributeValue = settings.get(attributeName); in loglnSAX() local 252 temp += " " + attributeName + "=<" + attributeValue + ">"; in loglnSAX() 382 String attributeValue = settings.get(attributeName); 385 v = Double.parseDouble(attributeValue); 388 approved = attributeValue.contains("approved"); 391 numberType = attributeValue; 392 int index = lookupValue(attributeValue, NumberNames); 413 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() 121 String attributeValue = attributes.get(attribute); in handlePathValue() local 122 if (dtdData.isDeprecated(element, attribute, attributeValue)) { in handlePathValue() 123 …ile_element_attribute.put(file, dtdData.dtdType, element, attribute, attributeValue, "deprecated"); in handlePathValue() 128 …tatus haveTest = AttributeValueValidity.check(dtdData, element, attribute, attributeValue, reason); in handlePathValue() 134 …ile_element_attribute.put(file, dtdData.dtdType, element, attribute, attributeValue, reason.value); in handlePathValue() 137 … missing.add(new AttributeValueSpec(dtdData.dtdType, element, attribute, attributeValue)); in handlePathValue()
|
D | GenerateAttributeList.java | 141 void add(String element, String attribute, String attributeValue, boolean dtd) { in add() argument 144 attributeValue = "[date]"; in add() 146 attributeValue = "[revision]"; in add() 153 int pos = attributeValue.indexOf("proposed"); in add() 155 if (pos > 0) attributeValue = attributeValue.substring(0, pos - 1); in add() 170 valueSets[dtd ? 1 : 0].add(attributeValue); in add() 173 + ", " + 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 | 106 String attributeValue = attributes.get(attribute); in handleCheck() local 111 if (!typeValues.contains(attributeValue)) { in handleCheck() 115 new Object[] { attribute, attributeValue, typeValues })); in handleCheck() 120 … boolean haveTest = check(common_attribute_validity, attribute, attributeValue, result); in handleCheck() 122 haveTest = haveTest || check(attribute_validity, attribute, attributeValue, result); in handleCheck() 130 if (DIGITS.containsAll(attributeValue)) { in handleCheck() 133 final Count countValue = PluralInfo.Count.valueOf(attributeValue); in handleCheck() 187 …lean check(Map<String, MatcherPattern> attribute_validity, String attribute, String attributeValue, in check() argument 196 if (matcherPattern.matcher.test(attributeValue)) { in check() 200 String replacement = getReplacement(matcherPattern.value, attributeValue); in check() [all …]
|
D | TestCLDRTests.java | 130 void set(String attributeName, String attributeValue) { in set() argument 132 settings.put(attributeName, attributeValue); in set() 148 String attributeValue = settings.get(attributeName); in myerrln() local 149 temp += " " + attributeName + "=<" + attributeValue + ">"; in myerrln() 251 String attributeValue = settings 254 v = Double.parseDouble(attributeValue); 258 int index = lookupValue(attributeValue, NumberNames); 295 String attributeValue = settings 298 date = iso.parse(attributeValue); 302 int index = lookupValue(attributeValue, DateFormatNames);
|
D | CheckForCopy.java | 181 final String attributeValue = attributeEntry.getValue(); in sameAsCodeOrEnglish() local 183 if (value2.equals(attributeValue)) { in sameAsCodeOrEnglish() 188 throw new ICUException("Value: " + value + "\nattributeValue: " + attributeValue in sameAsCodeOrEnglish()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/ |
D | TtmlDecoder.java | 468 String attributeValue = parser.getAttributeValue(i); in parseStyleAttributes() local 472 style = createIfNull(style).setId(attributeValue); in parseStyleAttributes() 478 style.setBackgroundColor(ColorParser.parseTtmlColor(attributeValue)); in parseStyleAttributes() 480 Log.w(TAG, "Failed parsing background value: " + attributeValue); in parseStyleAttributes() 486 style.setFontColor(ColorParser.parseTtmlColor(attributeValue)); in parseStyleAttributes() 488 Log.w(TAG, "Failed parsing color value: " + attributeValue); in parseStyleAttributes() 492 style = createIfNull(style).setFontFamily(attributeValue); in parseStyleAttributes() 497 parseFontSize(attributeValue, style); in parseStyleAttributes() 499 Log.w(TAG, "Failed parsing fontSize value: " + attributeValue); in parseStyleAttributes() 504 TtmlNode.BOLD.equalsIgnoreCase(attributeValue)); in parseStyleAttributes() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | AttributeValueValidity.java | 755 … public AttributeValueSpec(DtdType type, String element, String attribute, String attributeValue) { in AttributeValueSpec() argument 759 this.attributeValue = attributeValue; in AttributeValueSpec() 765 public final String attributeValue; field in AttributeValueValidity.AttributeValueSpec 769 return Objects.hash(type, element, attribute, attributeValue); in hashCode() 779 attributeValue, other.attributeValue); in equals() 788 .compare(attributeValue, other.attributeValue) in compareTo() 799 + attributeValue in toString() 813 String element, String attribute, String attributeValue, in check() argument 823 if (matcherPattern.matches(attributeValue, reason)) { in check() 829 …atus check(DtdData dtdData, String element, String attribute, String attributeValue, Output<String… in check() argument [all …]
|
D | DtdData.java | 1160 public final String attributeValue; field in DtdData.IllegalByDtdException 1162 … public IllegalByDtdException(String elementName, String attributeName, String attributeValue) { in IllegalByDtdException() argument 1165 this.attributeValue = attributeValue; in IllegalByDtdException() 1174 + (attributeValue == null ? "" : ", attributeValue: " + attributeValue); in getMessage() 1179 public boolean isDeprecated(String elementName, String attributeName, String attributeValue) { in isDeprecated() argument 1182 throw new IllegalByDtdException(elementName, attributeName, attributeValue); in isDeprecated() 1191 throw new IllegalByDtdException(elementName, attributeName, attributeValue); in isDeprecated() 1195 … return attribute.deprecatedValues.contains(attributeValue); // don't need special test for "*" in isDeprecated() 1513 String attributeValue = pathPlain.getAttributeValue(i, attribute); in isDeprecated() local 1514 if (isDeprecated(elementName, attribute, attributeValue)) { in isDeprecated() [all …]
|
D | XPathParts.java | 1195 … public XPathParts setAttribute(String elementName, String attributeName, String attributeValue) { in setAttribute() argument 1197 putAttributeValue(index, attributeName, attributeValue); in setAttribute() 1212 String attributeValue = attributesAndValues.getValue(); in removeProposed() local 1213 int pos = attributeValue.indexOf("proposed"); in removeProposed() 1215 … if (pos > 0 && attributeValue.charAt(pos - 1) == '-') --pos; // backup for "...-proposed" in removeProposed() 1220 attributeValue = attributeValue.substring(0, pos); // strip it off in removeProposed() 1221 putAttributeValue(i, attribute, attributeValue); in removeProposed() 1254 public XPathParts setAttribute(int elementIndex, String attributeName, String attributeValue) { in setAttribute() argument 1255 putAttributeValue(elementIndex, attributeName, attributeValue); in setAttribute()
|
/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 | 574 String attributeValue = attributeAndValue.getValue(); in getOutput() local 576 chars = fixValue(attributeValue); in getOutput() 584 transformStatus = TransformStatus.fromString(attributeValue); in getOutput() 589 for (String item : attributeValue.trim().split(" ")) { in getOutput()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_packet.cpp | 42 WideString attributeValue; in getAttribute() local 45 attributeValue = element->GetAttribute(runtime->ToWideString(params[0])); in getAttribute() 48 runtime->NewString(attributeValue.ToUTF8().AsStringView())); in getAttribute()
|
/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/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 | TestPaths.java | 297 String attributeValue = attributeNValue.getValue(); in check() local 298 if (dtdData.isDeprecated(elementName, attributeName, attributeValue)) { in check() 303 + ":" + attributeValue in check() 308 data.put(dtdData.dtdType, elementName, attributeName, attributeValue, true); in check()
|
D | TestAttributeValues.java | 190 String attributeValue = r.getAttributeValue(i); in checkFile() local 191 pathChecker.checkAttribute(element, attribute, attributeValue); in checkFile() 464 + "; \t" + item.get1().attributeValue in oldTestCoreValidity() 476 + "; \t" + item.get1().attributeValue in oldTestCoreValidity()
|
/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/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/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/expat/xmlwf/ |
D | xmlwf.c | 107 attributeValue(FILE *fp, const XML_Char *s) { in attributeValue() function 179 attributeValue(fp, *atts); in startElement() 219 attributeValue(fp, name); in startElementNS() 241 attributeValue(fp, *atts); in startElementNS() 244 attributeValue(fp, name); in startElementNS()
|