OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PluralSnapshot
(Results
1 - 3
of
3
) sorted by null
/external/cldr/tools/java/org/unicode/cldr/tool/
ShowPlurals.java
16
import org.unicode.cldr.util.
PluralSnapshot
;
67
PluralSnapshot
.writeTables(english, pw);
/external/cldr/tools/java/org/unicode/cldr/draft/
Misc.java
23
import org.unicode.cldr.util.
PluralSnapshot
;
484
// for (Entry<
PluralSnapshot
, String> ruleEntry : info) {
485
//
PluralSnapshot
ss = ruleEntry.getKey();
494
System.out.println(
PluralSnapshot
.getDefaultStyles());
496
out.println("<html><head>" +
PluralSnapshot
.getDefaultStyles() + "</style><body>");
498
PluralSnapshot
.writeTables(testInfo.getEnglish(), out);
/external/cldr/tools/java/org/unicode/cldr/util/
PluralSnapshot.java
26
public class
PluralSnapshot
implements Comparable<
PluralSnapshot
> {
69
public static class SnapshotInfo implements Iterable<Entry<
PluralSnapshot
, Set<String>>> {
72
private Relation<
PluralSnapshot
, String> snapshotToLocales = Relation.of(
73
new TreeMap<
PluralSnapshot
, Set<String>>(), TreeSet.class);
80
Map<String,
PluralSnapshot
> rulesToSnapshot = new HashMap<String,
PluralSnapshot
>();
84
PluralSnapshot
snap = rulesToSnapshot.get(rules);
87
snap = new
PluralSnapshot
(pluralRules, integral, pluralsTransitionAt);
94
public Iterator<Entry<
PluralSnapshot
, Set<String>>> iterator()
[
all
...]
Completed in 682 milliseconds