/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
D | IoUtil.java | 70 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/ |
D | CollationRegressionTest.java | 845 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/ |
D | CollationRegressionTest.java | 848 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/ |
D | Ordering.java | 937 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/ |
D | Ordering.java | 937 List<? extends T> sortedList, @ParametricNullness T key) { in binarySearch() argument 938 return Collections.binarySearch(sortedList, key, this); in binarySearch()
|
/external/zstd/lib/decompress/ |
D | huf_decompress.c | 991 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/ |
D | zstd_v03.c | 1877 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()
|
D | zstd_v04.c | 2028 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()
|
D | zstd_v02.c | 1880 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()
|
D | zstd_v05.c | 2154 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()
|
D | zstd_v06.c | 2286 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()
|
D | zstd_v07.c | 2093 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()
|