Home
last modified time | relevance | path

Searched refs:SnapshotInfo (Results 1 – 6 of 6) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DPluralSnapshot.java69 public static class SnapshotInfo implements Iterable<Entry<PluralSnapshot, Set<String>>> { class in PluralSnapshot
77 private SnapshotInfo(PluralType pluralType, Integral integral) { in SnapshotInfo() method in PluralSnapshot.SnapshotInfo
130 …private static final EnumMap<PluralType, EnumMap<Integral, SnapshotInfo>> SINGLETONS = new EnumMap…
133 SINGLETONS.put(PluralType.cardinal, new EnumMap<Integral, SnapshotInfo>(Integral.class)); in SINGLETONS.put()
134 SINGLETONS.put(PluralType.ordinal, new EnumMap<Integral, SnapshotInfo>(Integral.class)); in SINGLETONS.put()
138 public static SnapshotInfo getInstance(PluralType pluralType, Integral integral) { in getInstance()
139 EnumMap<Integral, SnapshotInfo> temp = SINGLETONS.get(pluralType); in getInstance()
140 SnapshotInfo result = temp.get(integral); in getInstance()
142 temp.put(integral, result = new SnapshotInfo(pluralType, integral)); in getInstance()
289 SnapshotInfo info = PluralSnapshot.getInstance(pluralType, integral); in writeTables()
/external/OpenCSD/decoder/tests/snapshot_parser_lib/include/
Ddevice_parser.h93 void addSnapshotInfo(SnapshotInfo snap);
95 SnapshotInfo snaphotInfo;
Dsnapshot_info.h41 struct SnapshotInfo struct
Dsnapshot_parser.h93 SnapshotInfo snapshotInfo;
/external/OpenCSD/decoder/tests/snapshot_parser_lib/source/
Ddevice_parser.cpp128 void ModernSnapshotParser::addSnapshotInfo(SnapshotInfo snap) in addSnapshotInfo()
Dsnapshot_parser.cpp417 …SnapshotSection(SnapshotInfo& result) : m_result(result), m_gotDescription(false), m_gotVersion(fa… in SnapshotSection()
436 SnapshotInfo getSnapshotInfo() { return m_result; } in getSnapshotInfo()
440 SnapshotInfo &m_result;