/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/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/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/guava/guava/src/com/google/common/collect/ |
D | Ordering.java | 923 public int binarySearch(List<? extends T> sortedList, @Nullable T key) { in binarySearch() argument 924 return Collections.binarySearch(sortedList, key, this); in binarySearch()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | Ordering.java | 923 public int binarySearch(List<? extends T> sortedList, @NullableDecl T key) { in binarySearch() argument 924 return Collections.binarySearch(sortedList, key, this); in binarySearch()
|
/external/zstd/lib/decompress/ |
D | huf_decompress.c | 570 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUF_fillDTableX2() argument 583 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX2() 584 const U32 weight = sortedList[s].weight; in HUF_fillDTableX2() 596 sortedList+sortedRank, sortedListSize-sortedRank, in HUF_fillDTableX2()
|
/external/zstd/lib/legacy/ |
D | zstd_v03.c | 1881 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUF_fillDTableX4() argument 1895 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX4() 1896 const U32 weight = sortedList[s].weight; in HUF_fillDTableX4() 1909 sortedList+sortedRank, sortedListSize-sortedRank, in HUF_fillDTableX4()
|
D | zstd_v04.c | 2032 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUF_fillDTableX4() argument 2046 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX4() 2047 const U32 weight = sortedList[s].weight; in HUF_fillDTableX4() 2060 sortedList+sortedRank, sortedListSize-sortedRank, in HUF_fillDTableX4()
|
D | zstd_v02.c | 1884 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUF_fillDTableX4() argument 1898 const U16 symbol = sortedList[s].symbol; in HUF_fillDTableX4() 1899 const U32 weight = sortedList[s].weight; in HUF_fillDTableX4() 1912 sortedList+sortedRank, sortedListSize-sortedRank, in HUF_fillDTableX4()
|
D | zstd_v05.c | 2158 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUFv05_fillDTableX4() argument 2171 const U16 symbol = sortedList[s].symbol; in HUFv05_fillDTableX4() 2172 const U32 weight = sortedList[s].weight; in HUFv05_fillDTableX4() 2184 sortedList+sortedRank, sortedListSize-sortedRank, in HUFv05_fillDTableX4()
|
D | zstd_v06.c | 2290 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUFv06_fillDTableX4() argument 2303 const U16 symbol = sortedList[s].symbol; in HUFv06_fillDTableX4() 2304 const U32 weight = sortedList[s].weight; in HUFv06_fillDTableX4() 2316 sortedList+sortedRank, sortedListSize-sortedRank, in HUFv06_fillDTableX4()
|
D | zstd_v07.c | 2097 const sortedSymbol_t* sortedList, const U32 sortedListSize, in HUFv07_fillDTableX4() argument 2110 const U16 symbol = sortedList[s].symbol; in HUFv07_fillDTableX4() 2111 const U32 weight = sortedList[s].weight; in HUFv07_fillDTableX4() 2123 sortedList+sortedRank, sortedListSize-sortedRank, in HUFv07_fillDTableX4()
|