Searched refs:sort (Results 1 - 25 of 1920) sorted by relevance

1234567891011>>

/external/ltp/testcases/realtime/perf/latency/
H A Dpthread_cond_many_histogram.sh12 }' | sort +0nr
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp11.cpp5 template<class T> void sort(Array<T>& v);
7 // explicit specialization for sort(Array<int>&)
9 template<> void sort(Array<int>&);
H A Dp6.cpp44 template<class T> void sort(Array<T>& v) { /* ... */ } function
50 sort(v); // expected-note{{required}}
52 // sort(Array<T>&), T is String
55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}}
56 template<> void sort<>(Array<char*>& v); // OK: sort<char*> not yet used
/external/autotest/client/site_tests/platform_ToolchainOptions/
H A Dsort_all.sh8 sort -o $f $f
/external/junit/src/main/java/org/junit/runner/manipulation/
H A DSortable.java18 public void sort(Sorter sorter); method in interface:Sortable
/external/clang/unittests/Format/
H A DSortIncludesTest.cpp1 //===- unittest/Format/SortIncludesTest.cpp - Include sort unit tests -----===//
27 std::string sort(StringRef Code, StringRef FileName = "input.cpp") { function in class:clang::format::__anon3706::SortIncludesTest
51 sort("#include \"a.h\"\n"
57 // Identical #includes have led to a failure with an unstable sort.
76 sort("#include <b>\n"
91 sort("#include \"a.h\"\n"
100 sort("#include \"a.h\"\n"
109 sort("#include \"a.h\" // comment\n"
118 sort(" #include \"a.h\"\n"
124 sort("# includ
[all...]
/external/autotest/client/deps/glbench/
H A Dupdate_glbench_image_filelists.sh4 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
/external/strace/
H A Dgenerate_sen.sh6 LC_COLLATE=C sort -u |
/external/desugar/test/java/com/google/devtools/build/android/desugar/
H A Dtestdata_desugared_jar_test.sh44 diff <(sort "$2") <(sort "${output}/actual_toc.txt")
/external/autotest/client/bin/self-test/tests/
H A DNNN-filter11 $0 XXX-barrier-ordered | sort
/external/clang/test/CodeCompletion/
H A Dfunction-templates.cpp3 void sort(RandomAccessIterator first, RandomAccessIterator last);
15 std::sort(1, 2);
19 // CHECK-CC1: sort(<#RandomAccessIterator first#>, <#RandomAccessIterator last#>
/external/mesa3d/src/mapi/glapi/gen/
H A Dnext_available_offset.sh36 sort -rn |\
/external/replicaisland/src/com/replica/replicaisland/
H A DStandardSorter.java25 public void sort(Object[] array, int count, Comparator comparator) { method in class:StandardSorter
26 Arrays.sort(array, 0, count, comparator);
H A DSorter.java22 public abstract void sort(Type[] array, int count, Comparator<Type> comparator); method in class:Sorter
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
H A DBubbleSortTest.java42 BubbleSort.sort(a);
52 BubbleSort.sort(a);
57 BubbleSort.sort(a);
67 BubbleSort.sort(a);
77 BubbleSort.sort(a);
95 BubbleSort.sort(a);
96 Arrays.sort(witness);
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp6.cpp5 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/autotest/contrib/
H A Dservo-summary55 sed "$SED_SCRIPT" $FILE | sort | uniq -c |
57 sort | cut -c -72
H A Dservo-inventory17 ' | sort | ./haveservo | xargs -l1 ./servo-stat
/external/clang/utils/
H A Dfind-unused-diagnostics.sh15 comm -23 <(sort -u <<< "$ALL_DIAGS") <(sort -u <<< "$DIAGS_IN_SOURCES")
/external/ltp/testcases/commands/lsmod/
H A Dlsmod01.sh25 lsmod_output=$(lsmod | awk '!/Module/{print $1, $2, $3}' | sort)
31 modules_output=$(awk '{print $1, $2, $3}' /proc/modules | sort)
/external/wpa_supplicant_8/hostapd/logwatch/
H A Dhostapd41 foreach my $iface (sort keys %hostapd) {
43 foreach my $mac (sort keys %{$hostapd{$iface}}) {
45 foreach my $layer (sort keys %{$hostapd{$iface}->{$mac}}) {
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
/external/elfutils/tests/
H A Drun-nm-self.sh27 for out_arg in --numeric-sort --no-sort --reverse-sort; do
/external/toybox/scripts/
H A Dbloatcheck56 echo "$STUFF" | sort -k4,4nr
64 nm --size-sort "$1" | sort -k3,3 > $DIFF1
65 nm --size-sort "$2" | sort -k3,3 > $DIFF2
67 | sort -k4,4 | do_bloatcheck
/external/tensorflow/tensorflow/contrib/framework/python/ops/
H A Dsort_ops_test.py15 """Tests for the sort wrapper."""
51 np.sort(arr, axis=sort_axis),
52 sort_ops.sort(constant_op.constant(arr), axis=sort_axis).eval())
63 np.sort(arr, axis=sort_axis),
64 sort_ops.sort(constant_op.constant(arr), axis=sort_axis).eval())
73 sort = sort_ops.sort(scalar)
76 sort.eval()
81 sort_ops.sort(arr, axis=-4)
87 np.sort(ar
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_sort.py17 raw.sort(compare)
19 raw.sort()
103 s.sort(lambda a, b: int(random.random() * 3) - 1)
112 s.sort()
117 check("exception during sort left some permutation", x, s)
121 augmented.sort() # forced stable because ties broken by index
122 x = [e for e, i in augmented] # a stable sort of s
130 # bug 453523 -- list.sort() crasher.
132 # Mutations during a list sort should raise a ValueError.
143 self.assertRaises(ValueError, L.sort)
[all...]

Completed in 741 milliseconds

1234567891011>>