Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/res/
DResourceRemapperTest.java47 Set<Integer> allIds = new HashSet<>(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces() local
48 assertThat(allIds.add(ApplicationRClass.string.string_one)).isTrue(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
49 assertThat(allIds.add(ApplicationRClass.string.string_two)).isTrue(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
50 assertThat(allIds.add(SecondClass.integer.integer_one)).isTrue(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
51 assertThat(allIds.add(SecondClass.integer.integer_two)).isTrue(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
52 assertThat(allIds.add(SecondClass.string.string_one)).isFalse(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
53 assertThat(allIds.add(SecondClass.string.string_three)).isTrue(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
54 assertThat(allIds.add(ThirdClass.raw.raw_one)).isTrue(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
55 assertThat(allIds.add(ThirdClass.raw.raw_two)).isTrue(); in resourcesOfDifferentTypes_shouldHaveDifferentTypeSpaces()
/external/cldr/tools/java/org/unicode/cldr/tool/
DShowKeyboards.java203 + idSet.toString(idInfo.allIds)); in showRepertoire()
585 IdSet allIds = new IdSet(); field in ShowKeyboards.IdInfo
588 allIds.add(id); in add()
689 final String keyboardsString = value.toString(allIds); in print()
868 public String toString(IdSet allIds) { in toString() argument
869 if (this.equals(allIds)) { in toString()
884 appendLocaleAndVariants(b, valueSet, allIds.data.get(key)); in toString()
/external/icu/android_icu4j/testing/src/com/android/i18n/test/timezone/
DZoneInfoDbTest.java112 String[] allIds = zoneInfoDb.getAvailableIDs(); in testGetAvailableIDsWithRawOffset() local
113 List<ZoneInfoData> allZones = Arrays.stream(allIds) in testGetAvailableIDsWithRawOffset()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DLdmlConverter.java639 Set<String> allIds = new TreeSet<>(); in calculateEmptyFiles() local
641 while (!id.equals("root") && !allIds.contains(id)) { in calculateEmptyFiles()
642 allIds.add(id); in calculateEmptyFiles()
646 return ImmutableSet.copyOf(Sets.difference(allIds, writtenIds)); in calculateEmptyFiles()