Home
last modified time | relevance | path

Searched refs:attributeKeyValuePairs (Results 1 – 2 of 2) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/api/
DCldrPath.java124 private final ImmutableList<String> attributeKeyValuePairs;
143 List<String> attributeKeyValuePairs, in CldrPath() argument
151 this.attributeKeyValuePairs = checkKeyValuePairs(attributeKeyValuePairs); in CldrPath()
164 this.hashCode = Objects.hash(length, name, this.attributeKeyValuePairs, parent); in CldrPath()
197 && this.attributeKeyValuePairs.equals(keyValuePairs) in matchesContent()
315 return attributeKeyValuePairs.size() / 2; in getAttributeCount()
326 return attributeKeyValuePairs.get(2 * n); in getLocalAttributeName()
337 return attributeKeyValuePairs.get((2 * n) + 1); in getLocalAttributeValue()
343 for (int i = 0; i < attributeKeyValuePairs.size(); i += 2) { in getLocalAttributeValue()
344 if (attributeName.equals(attributeKeyValuePairs.get(i))) { in getLocalAttributeValue()
[all …]
DXmlDataSource.java327 List<String> attributeKeyValuePairs = ImmutableList.of(); in extendPath() local
347 attributeKeyValuePairs = valueAttributes; in extendPath()
356 parent, elementName, attributeKeyValuePairs, dataType, draftStatus, sortIndex); in extendPath()