Home
last modified time | relevance | path

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

/external/jarjar/src/main/com/tonicsystems/jarjar/util/
DIoUtil.java70 final ArrayList<ZipEntry> sortedList = new ArrayList<ZipEntry>(); in copyZipWithoutEmptyDirectories() local
73 sortedList.add(entry); in copyZipWithoutEmptyDirectories()
76 Collections.sort(sortedList, new Comparator<ZipEntry>() in copyZipWithoutEmptyDirectories()
85 for (int i = sortedList.size()-1; i>=0; i--) in copyZipWithoutEmptyDirectories()
87 final ZipEntry inputEntry = sortedList.get(i); in copyZipWithoutEmptyDirectories()
92 if (i == sortedList.size()-1) in copyZipWithoutEmptyDirectories()
99 final String nextName = sortedList.get(i+1).getName(); in copyZipWithoutEmptyDirectories()
112 sortedList.remove(inputEntry); in copyZipWithoutEmptyDirectories()
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationRegressionTest.java845 private void checkListOrder(String[] sortedList, Collator c) { in checkListOrder() argument
848 for (int i = 0; i < sortedList.length - 1; i++) { in checkListOrder()
849 if (c.compare(sortedList[i], sortedList[i + 1]) >= 0) { in checkListOrder()
851 + sortedList[i] + " >= " in checkListOrder()
852 + sortedList[i + 1]); in checkListOrder()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DCollationRegressionTest.java848 private void checkListOrder(String[] sortedList, Collator c) { in checkListOrder() argument
851 for (int i = 0; i < sortedList.length - 1; i++) { in checkListOrder()
852 if (c.compare(sortedList[i], sortedList[i + 1]) >= 0) { in checkListOrder()
854 + sortedList[i] + " >= " in checkListOrder()
855 + sortedList[i + 1]); in checkListOrder()
/external/guava/android/guava/src/com/google/common/collect/
DOrdering.java937 List<? extends T> sortedList, @ParametricNullness T key) { in binarySearch() argument
938 return Collections.binarySearch(sortedList, key, this); in binarySearch()
/external/guava/guava/src/com/google/common/collect/
DOrdering.java937 List<? extends T> sortedList, @ParametricNullness T key) { in binarySearch() argument
938 return Collections.binarySearch(sortedList, key, this); in binarySearch()
/external/zstd/lib/decompress/
Dhuf_decompress.c991 const sortedSymbol_t* sortedList, in HUF_fillDTableX2() argument
1021 sortedList, rankStart, in HUF_fillDTableX2()
1022 nbBitsBaseline, sortedList[s].symbol); in HUF_fillDTableX2()
1029 sortedList + begin, sortedList + end, in HUF_fillDTableX2()
/external/zstd/lib/legacy/
Dzstd_v03.c1877 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUF_fillDTableX4() argument
1891 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX4()
1892 const U32 weight = sortedList[s].weight; in HUF_fillDTableX4()
1905 sortedList+sortedRank, sortedListSize-sortedRank, in HUF_fillDTableX4()
Dzstd_v04.c2028 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUF_fillDTableX4() argument
2042 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX4()
2043 const U32 weight = sortedList[s].weight; in HUF_fillDTableX4()
2056 sortedList+sortedRank, sortedListSize-sortedRank, in HUF_fillDTableX4()
Dzstd_v02.c1880 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUF_fillDTableX4() argument
1894 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX4()
1895 const U32 weight = sortedList[s].weight; in HUF_fillDTableX4()
1908 sortedList+sortedRank, sortedListSize-sortedRank, in HUF_fillDTableX4()
Dzstd_v05.c2154 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUFv05_fillDTableX4() argument
2167 const U16 symbol = sortedList[s].symbol; in HUFv05_fillDTableX4()
2168 const U32 weight = sortedList[s].weight; in HUFv05_fillDTableX4()
2180 sortedList+sortedRank, sortedListSize-sortedRank, in HUFv05_fillDTableX4()
Dzstd_v06.c2286 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUFv06_fillDTableX4() argument
2299 const U16 symbol = sortedList[s].symbol; in HUFv06_fillDTableX4()
2300 const U32 weight = sortedList[s].weight; in HUFv06_fillDTableX4()
2312 sortedList+sortedRank, sortedListSize-sortedRank, in HUFv06_fillDTableX4()
Dzstd_v07.c2093 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUFv07_fillDTableX4() argument
2106 const U16 symbol = sortedList[s].symbol; in HUFv07_fillDTableX4()
2107 const U32 weight = sortedList[s].weight; in HUFv07_fillDTableX4()
2119 sortedList+sortedRank, sortedListSize-sortedRank, in HUFv07_fillDTableX4()