Home
last modified time | relevance | path

Searched refs:attributeValue (Results 1 – 25 of 49) sorted by relevance

12

/external/angle/src/libANGLE/
DConfig.cpp242 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/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/jpeg/
DXmpMotionPhotoDescriptionParser.java118 @Nullable String attributeValue = XmlPullParserUtil.getAttributeValue(xpp, attributeName); in parseMotionPhotoFlagFromDescription() local
119 if (attributeValue != null) { in parseMotionPhotoFlagFromDescription()
120 int motionPhotoFlag = Integer.parseInt(attributeValue); in parseMotionPhotoFlagFromDescription()
129 @Nullable String attributeValue = XmlPullParserUtil.getAttributeValue(xpp, attributeName); in parseMotionPhotoPresentationTimestampUsFromDescription() local
130 if (attributeValue != null) { in parseMotionPhotoPresentationTimestampUsFromDescription()
131 long presentationTimestampUs = Long.parseLong(attributeValue); in parseMotionPhotoPresentationTimestampUsFromDescription()
143 @Nullable String attributeValue = XmlPullParserUtil.getAttributeValue(xpp, attributeName); in parseMicroVideoOffsetFromDescription() local
144 if (attributeValue != null) { in parseMicroVideoOffsetFromDescription()
145 long microVideoOffset = Long.parseLong(attributeValue); in parseMicroVideoOffsetFromDescription()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/jpeg/
DXmpMotionPhotoDescriptionParser.java118 @Nullable String attributeValue = XmlPullParserUtil.getAttributeValue(xpp, attributeName); in parseMotionPhotoFlagFromDescription() local
119 if (attributeValue != null) { in parseMotionPhotoFlagFromDescription()
120 int motionPhotoFlag = Integer.parseInt(attributeValue); in parseMotionPhotoFlagFromDescription()
129 @Nullable String attributeValue = XmlPullParserUtil.getAttributeValue(xpp, attributeName); in parseMotionPhotoPresentationTimestampUsFromDescription() local
130 if (attributeValue != null) { in parseMotionPhotoPresentationTimestampUsFromDescription()
131 long presentationTimestampUs = Long.parseLong(attributeValue); in parseMotionPhotoPresentationTimestampUsFromDescription()
143 @Nullable String attributeValue = XmlPullParserUtil.getAttributeValue(xpp, attributeName); in parseMicroVideoOffsetFromDescription() local
144 if (attributeValue != null) { in parseMicroVideoOffsetFromDescription()
145 long microVideoOffset = Long.parseLong(attributeValue); in parseMicroVideoOffsetFromDescription()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/icu/
DTestCldr.java218 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/cldr-code/src/main/java/org/unicode/cldr/tool/
DVerifyAttributeValues.java50 …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()
DGenerateAttributeList.java141 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()
DFindAttributeValueDifferences.java92 for (String attributeValue : currentAttributeValues) { in showDiff()
93 System.out.println(title + "\t" + element + "\t" + attribute + "\t" + attributeValue); in showDiff()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlDecoder.java495 String attributeValue = parser.getAttributeValue(i); in parseStyleAttributes() local
499 style = createIfNull(style).setId(attributeValue); in parseStyleAttributes()
505 style.setBackgroundColor(ColorParser.parseTtmlColor(attributeValue)); in parseStyleAttributes()
507 Log.w(TAG, "Failed parsing background value: " + attributeValue); in parseStyleAttributes()
513 style.setFontColor(ColorParser.parseTtmlColor(attributeValue)); in parseStyleAttributes()
515 Log.w(TAG, "Failed parsing color value: " + attributeValue); in parseStyleAttributes()
519 style = createIfNull(style).setFontFamily(attributeValue); in parseStyleAttributes()
524 parseFontSize(attributeValue, style); in parseStyleAttributes()
526 Log.w(TAG, "Failed parsing fontSize value: " + attributeValue); in parseStyleAttributes()
530 style = createIfNull(style).setBold(TtmlNode.BOLD.equalsIgnoreCase(attributeValue)); in parseStyleAttributes()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlDecoder.java495 String attributeValue = parser.getAttributeValue(i); in parseStyleAttributes() local
499 style = createIfNull(style).setId(attributeValue); in parseStyleAttributes()
505 style.setBackgroundColor(ColorParser.parseTtmlColor(attributeValue)); in parseStyleAttributes()
507 Log.w(TAG, "Failed parsing background value: " + attributeValue); in parseStyleAttributes()
513 style.setFontColor(ColorParser.parseTtmlColor(attributeValue)); in parseStyleAttributes()
515 Log.w(TAG, "Failed parsing color value: " + attributeValue); in parseStyleAttributes()
519 style = createIfNull(style).setFontFamily(attributeValue); in parseStyleAttributes()
524 parseFontSize(attributeValue, style); in parseStyleAttributes()
526 Log.w(TAG, "Failed parsing fontSize value: " + attributeValue); in parseStyleAttributes()
530 style = createIfNull(style).setBold(TtmlNode.BOLD.equalsIgnoreCase(attributeValue)); in parseStyleAttributes()
[all …]
/external/autotest/frontend/client/src/autotest/moblab/
DDutManagementView.java37 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/cldr-code/src/main/java/org/unicode/cldr/test/
DCheckAttributeValues.java106 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 …]
DTestCLDRTests.java130 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);
DCheckForCopy.java193 final String attributeValue = attributeEntry.getValue(); in sameAsCodePerAttributes() local
195 if (value.equals(attributeValue)) { in sameAsCodePerAttributes()
199 throw new ICUException("Value: " + value + "\nattributeValue: " + attributeValue in sameAsCodePerAttributes()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/rtsp/src/main/java/com/google/android/exoplayer2/source/rtsp/
DRtspTrackTiming.java74 String attributeValue = attributes[1]; in parseTrackTiming() local
78 uri = resolveUri(/* urlString= */ attributeValue, sessionUri); in parseTrackTiming()
81 sequenceNumber = Integer.parseInt(attributeValue); in parseTrackTiming()
84 rtpTime = Long.parseLong(attributeValue); in parseTrackTiming()
DSessionDescriptionParser.java167 String attributeValue = nullToEmpty(matcher.group(2)); in parse() local
170 sessionDescriptionBuilder.addAttribute(attributeName, attributeValue); in parse()
172 mediaDescriptionBuilder.addAttribute(attributeName, attributeValue); in parse()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/rtsp/src/main/java/com/google/android/exoplayer2/source/rtsp/
DRtspTrackTiming.java74 String attributeValue = attributes[1]; in parseTrackTiming() local
78 uri = resolveUri(/* urlString= */ attributeValue, sessionUri); in parseTrackTiming()
81 sequenceNumber = Integer.parseInt(attributeValue); in parseTrackTiming()
84 rtpTime = Long.parseLong(attributeValue); in parseTrackTiming()
DSessionDescriptionParser.java167 String attributeValue = nullToEmpty(matcher.group(2)); in parse() local
170 sessionDescriptionBuilder.addAttribute(attributeName, attributeValue); in parse()
172 mediaDescriptionBuilder.addAttribute(attributeName, attributeValue); in parse()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DAttributeValueValidity.java755 … 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 …]
DDtdData.java1211 public final String attributeValue; field in DtdData.IllegalByDtdException
1213 … public IllegalByDtdException(String elementName, String attributeName, String attributeValue) { in IllegalByDtdException() argument
1216 this.attributeValue = attributeValue; in IllegalByDtdException()
1225 + (attributeValue == null ? "" : ", attributeValue: " + attributeValue); in getMessage()
1230 public boolean isDeprecated(String elementName, String attributeName, String attributeValue) { in isDeprecated() argument
1240 throw new IllegalByDtdException(elementName, attributeName, attributeValue); in isDeprecated()
1244 … return attribute.deprecatedValues.contains(attributeValue); // don't need special test for "*" in isDeprecated()
1625 String attributeValue = pathPlain.getAttributeValue(i, attribute); in isDeprecated() local
1626 if (isDeprecated(elementName, attribute, attributeValue)) { in isDeprecated()
1651 private void addAttribute(String attribute, String attributeValue) { in addAttribute() argument
[all …]
DXPathParts.java1195 … 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/cldr-code/src/main/java/org/unicode/cldr/draft/
DJsonConverter.java142 String attributeValue = parts.getAttributeValue(i, attribute); in rewrite() local
144 out.addAttribute(attribute, attributeValue); in rewrite()
154 String attributeValue = parts.getAttributeValue(i, attribute); in rewrite() local
156 if (attributeValue == null) { in rewrite()
157 attributeValue = "?"; in rewrite()
159 out.addElement(attributeValue); in rewrite()
222 public void add(String attribute, String attributeValue) { in add() argument
226 + attribute + "," + attributeValue); in add()
229 base = attributeValue; in add()
233 suffix.append('$').append(attribute).append('=').append(attributeValue); in add()
/external/pdfium/fxjs/xfa/
Dcjx_packet.cpp44 WideString attributeValue; in getAttribute() local
47 attributeValue = element->GetAttribute(runtime->ToWideString(params[0])); in getAttribute()
50 runtime->NewString(attributeValue.ToUTF8().AsStringView())); in getAttribute()
/external/robolectric/resources/src/main/java/org/robolectric/res/
DNodeHandler.java35 String attributeValue = xml.getAttributeValue(null, attrName); in findMatchFor() local
36 if (attributeValue != null) { in findMatchFor()
38 NodeHandler nodeHandler = attrHandler.get(attributeValue); in findMatchFor()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
DNodeHandler.java35 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/
DXmlReportReader.java130 String attributeValue = parser.getAttributeValue(i); in createAttributeMap() local
131 attributeMap.put(attributeName, attributeValue); in createAttributeMap()

12