Home
last modified time | relevance | path

Searched refs:PlaceholderInfo (Results 1 – 8 of 8) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DPatternPlaceholders.java44 Map<String, PlaceholderInfo> data = new LinkedHashMap<>();
47 PlaceholderInfo row = new PlaceholderInfo(name, example); in add()
52 public static class PlaceholderInfo { class in PatternPlaceholders
56 private PlaceholderInfo(String name, String example) { in PlaceholderInfo() method in PatternPlaceholders.PlaceholderInfo
112 PlaceholderInfo old = result.data.get(id); in transform()
122 for (Entry<String, PlaceholderInfo> entry : result.data.entrySet()) { in transform()
147 public Map<String, PlaceholderInfo> get(String path) { in get()
DPathDescription.java15 import org.unicode.cldr.util.PatternPlaceholders.PlaceholderInfo;
208 Map<String, PlaceholderInfo> placeholders = PatternPlaceholders.getInstance().get(path);
213 for (Entry<String, PlaceholderInfo> entry : placeholders.entrySet()) {
214 PlaceholderInfo info = entry.getValue();
/external/cldr/tools/java/org/unicode/cldr/tool/
DConvertXTB.java31 import org.unicode.cldr.util.PatternPlaceholders.PlaceholderInfo;
381 Map<String, PlaceholderInfo> tagMap = getTagMap(xpath); in getPlaceholderForName()
382 for (Map.Entry<String, PlaceholderInfo> entry : tagMap.entrySet()) { in getPlaceholderForName()
395 private Map<String, PlaceholderInfo> getTagMap(String xpath) { in getTagMap()
DGenerateXMB.java45 import org.unicode.cldr.util.PatternPlaceholders.PlaceholderInfo;
853 private final Map<String, PlaceholderInfo> placeholders;
862 Map<String, PlaceholderInfo> placeholders, in PathInfo()
894 PlaceholderInfo info = placeholders.get("{0}"); in getFirstVariable()
935 PlaceholderInfo info = placeholders.get(placeholder); in getPlaceholderWithExample()
963 PlaceholderInfo info = placeholders.get(matcher.group()); in transformValue()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dtf2xla_util.cc335 struct PlaceholderInfo { in AddPlaceholdersForFeeds() struct
343 std::map<string, PlaceholderInfo> placeholder_info; in AddPlaceholdersForFeeds()
347 PlaceholderInfo& info = placeholder_info[name_port]; in AddPlaceholdersForFeeds()
360 PlaceholderInfo& info = it->second; in AddPlaceholdersForFeeds()
406 const PlaceholderInfo& info = it->second; in AddPlaceholdersForFeeds()
/external/cldr/tools/java/org/unicode/cldr/test/
DCheckForExemplars.java28 import org.unicode.cldr.util.PatternPlaceholders.PlaceholderInfo;
476 Map<String, PlaceholderInfo> placeholderInfo = patternPlaceholders.get(path); in checkAndReplacePlaceholders()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestPathHeader.java46 import org.unicode.cldr.util.PatternPlaceholders.PlaceholderInfo;
328 Map<String, PlaceholderInfo> placeholderInfo = patternPlaceholders in TestAppendTimezone()
330 PlaceholderInfo placeholderInfo2 = placeholderInfo.get("{1}"); in TestAppendTimezone()
DTestCheckCLDR.java54 import org.unicode.cldr.util.PatternPlaceholders.PlaceholderInfo;
297 final Map<String, PlaceholderInfo> placeholderInfo = patternPlaceholders in checkPlaceholders()