Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/icu/
DIcuTextWriter.java114 String[] lastLabels = new String[] {}; in writeToFile() local
119 int common = getCommon(lastLabels, labels); in writeToFile()
120 for (int i = lastLabels.length - 1; i > common; --i) { in writeToFile()
147 lastLabels = labels; in writeToFile()
150 for (int i = lastLabels.length - 1; i > 0; --i) { in writeToFile()
338 private static int getCommon(String[] lastLabels, String[] labels) { in getCommon() argument
339 int min = Math.min(lastLabels.length, labels.length); in getCommon()
342 if (!lastLabels[i].equals(labels[i])) { in getCommon()