HomeSort by relevance Sort by last modified time
    Searched full:sort (Results 1 - 25 of 8970) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/vcard/tests/res/raw/
v40_sort_as.vcf 4 N;SORT-AS="????;???":??;???;;;
5 ORG;TYPE=WORK;SORT-AS="????;???????":????;????
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug188.go 9 import "sort"
12 sort.Sort(nil);
14 sort(x); // ERROR "package"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug188.go 9 import "sort"
12 sort.Sort(nil);
14 sort(x); // ERROR "package"
  /prebuilts/go/darwin-x86/src/sort/
example_test.go 9 "sort"
14 sort.Ints(s)
21 sort.Sort(sort.Reverse(sort.IntSlice(s)))
  /prebuilts/go/linux-x86/src/sort/
example_test.go 9 "sort"
14 sort.Ints(s)
21 sort.Sort(sort.Reverse(sort.IntSlice(s)))
  /build/tools/
print_module_licenses.sh 2 find . -name MODULE_LICENSE_\* | sed 's/\/MODULE_LICENSE_/\ /' | sed 's/\.\///' | awk '{ print $2 " " $1; }' | sort
  /external/autotest/client/deps/glbench/
update_glbench_image_filelists.sh 4 ls *.png | sort > ../../glbench/glbench_reference_images.txt
5 ls *.png | sort > index.html
12 ls */*.png 2>/dev/null | sort > ../../glbench/${images}.txt
13 ls */*.png 2>/dev/null | sort > index.html
  /build/kati/testcase/
find_command_sorted.mk 1 # TODO(ninja): This test is only for ckati. ninja: fix $(sort $(shell $(1)))
3 # ninja: $(sort $(shell "find .")) becomes "$( .) find"
7 @echo $(sort $(shell $(1)))
sort.mk 4 echo $(sort foo bar lose)
5 echo $(sort foo bar aaaa)
6 echo $(sort foo bar lose lose foo bar bar)
7 echo $(sort baz bar)
8 echo $(sort single)
9 echo $(sort $(sp)foo$(sp))
10 echo $(sort )
11 echo $(sort device/sample/products/AndroidProducts.mk device/moto/shamu/AndroidProducts.mk device/asus/fugu/AndroidProducts.mk device/asus/deb/AndroidProducts.mk device/asus/flo/AndroidProducts.mk device/generic/arm64/AndroidProducts.mk device/generic/qemu/AndroidProducts.mk device/generic/mini-emulator-x86_64/AndroidProducts.mk device/generic/x86/AndroidProducts.mk device/generic/mips/AndroidProducts.mk device/generic/mini-emulator-x86/AndroidProducts.mk device/generic/mini-emulator-mips/AndroidProducts.mk device/generic/mini-emulator-arm64/AndroidProducts.mk device/generic/mini-emulator-armv7-a-neon/AndroidProducts.mk device/generic/x86_64/AndroidProducts.mk device/generic/armv7-a-neon/AndroidProducts.mk device/htc/flounder/AndroidProducts.mk device/lge/bullhead/AndroidProducts.mk device/lge/hammerhead/AndroidProducts.mk device/huawei/angler/AndroidProducts.mk)
12 echo $(sort cpplint-art-phony libart libartd libgabi++ libopenjdkjvm libopenjdkjvmd libart)
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p11.cpp 5 template<class T> void sort(Array<T>& v);
7 // explicit specialization for sort(Array<int>&)
9 template<> void sort(Array<int>&);
  /external/dhcpcd-6.8.2/dhcpcd-hooks/
01-test 4 set | grep "^\(interface\|pid\|reason\|profile\|skip_hooks\)=" | sort
5 set | grep "^if\(carrier\|flags\|mtu\|wireless\|ssid\)=" | sort
6 set | grep "^\(new_\|old_\|ra_count=\|ra[0-9]*_\)" | sort
02-dump 5 set | sed -ne 's/^new_//p' | sort
  /external/toybox/tests/
sort.test 3 # SUSv4 compliant sort tests.
10 testing "sort" "sort input" "a\nb\nc\n" "c\na\nb\n" ""
11 testing "sort #2" "sort input" "010\n1\n3\n" "3\n1\n010\n" ""
12 testing "sort stdin" "sort" "a\nb\nc\n" "" "b\na\nc\n"
13 testing "sort numeric" "sort -n input" "1\n3\n010\n" "3\n1\n010\n" ""
14 testing "sort reverse" "sort -r input" "wook\nwalrus\npoint\npabst\naargh\n"
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
eff_sequence.go 9 "sort"
14 sort.Sort(seq)
20 // Methods required by sort.Interface.
33 sort.Sort(s)
  /prebuilts/go/linux-x86/doc/progs/
eff_sequence.go 9 "sort"
14 sort.Sort(seq)
20 // Methods required by sort.Interface.
33 sort.Sort(s)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
sort_b_a-1.d 2 #ld: -T sort.t --sort-section alignment
3 #name: --sort-section alignment
sort_b_n-1.d 2 #ld: -T sort.t --sort-section name
3 #name: --sort-section name
  /external/autotest/client/site_tests/graphics_dEQP/
diff.sh 8 cat expectations/${gpu}/* | sort > /tmp/${gpu}.sorted
9 cat expectations/${gpu}/* | sort | uniq > /tmp/${gpu}.sorted_uniq
  /external/lzma/C/
Sort.h 0 /* Sort.h -- Sort functions
  /toolchain/binutils/binutils-2.25/gas/testsuite/lib/
dounsreloc 3 # numbers and sort the result. Intended for use in comparing reloc
7 | sort
dounssym 3 # numbers and sort the result. Intended for use in comparing symbol
7 | sort
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Sort.java 18 /** Provides methods to sort arrays of objects. Sorting requires working memory and this class allows that memory to be reused to
19 * avoid allocation. The sorting is otherwise identical to the Arrays.sort methods (uses timsort).<br>
21 * Note that sorting primitive arrays with the Arrays.sort methods does not allocate memory (unless sorting large arrays of char,
24 public class Sort {
25 static private Sort instance;
30 public <T> void sort (Array<T> a) { method in class:Sort
35 public <T> void sort (T[] a) { method in class:Sort
40 public <T> void sort (T[] a, int fromIndex, int toIndex) { method in class:Sort
45 public <T> void sort (Array<T> a, Comparator<? super T> c) { method in class:Sort
50 public <T> void sort (T[] a, Comparator<? super T> c) { method in class:Sort
55 public <T> void sort (T[] a, Comparator<? super T> c, int fromIndex, int toIndex) { method in class:Sort
    [all...]
  /external/autotest/client/site_tests/platform_ToolchainOptions/
sort_all.sh 8 sort -o $f $f
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p6.cpp 5 template<class T> void sort(Array<T>& v) { } function
7 // instantiate sort(Array<int>&) - template-argument deduced
8 template void sort<>(Array<int>&);
10 template void sort(Array<long>&);
  /external/strace/
generate_sen.sh 6 sort -u |

Completed in 622 milliseconds

1 2 3 4 5 6 7 8 91011>>