/external/qemu-pc-bios/bochs/bios/ |
bios_usage | 2 gcc -E rombios.c | grep "^\.org" | sed -e 's/\.org //' | sed -e 's/ .*//' | sort >! temp.usage
|
/external/stlport/test/unit/ |
bnegate_test.cpp | 34 sort(array, array + 4, binary_negate<greater<int> >(greater<int>())); 43 sort(array, array + 4, not2(greater<int>()));
|
greater_test.cpp | 34 sort(array, array + 4, greater<int>() ); 44 sort(array, array + 4, greater_equal<int>());
|
less_test.cpp | 34 sort(array, array + 4, less<int>()); 44 sort(array, array + 4, less_equal<int>());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/ |
sort.pass.cpp | 12 // void sort(); 25 c1.sort(); 33 c1.sort();
|
sort_comp.pass.cpp | 12 // template <class Compare> sort(Compare comp); 26 c1.sort(std::greater<int>()); 34 c1.sort(std::greater<int>());
|
/ndk/tests/device/test-gnustl-full/unit/ |
bnegate_test.cpp | 34 sort(array, array + 4, binary_negate<greater<int> >(greater<int>())); 43 sort(array, array + 4, not2(greater<int>()));
|
greater_test.cpp | 34 sort(array, array + 4, greater<int>() ); 44 sort(array, array + 4, greater_equal<int>());
|
less_test.cpp | 34 sort(array, array + 4, less<int>()); 44 sort(array, array + 4, less_equal<int>());
|
/ndk/tests/device/test-stlport/unit/ |
bnegate_test.cpp | 34 sort(array, array + 4, binary_negate<greater<int> >(greater<int>())); 43 sort(array, array + 4, not2(greater<int>()));
|
greater_test.cpp | 34 sort(array, array + 4, greater<int>() ); 44 sort(array, array + 4, greater_equal<int>());
|
less_test.cpp | 34 sort(array, array + 4, less<int>()); 44 sort(array, array + 4, less_equal<int>());
|
/external/chromium_org/third_party/icu/source/config/ |
gmakever.mk | 17 latest_a=$(firstword $(sort $(MAKE_VERSION) $(at_least)))
|
/external/elfutils/tests/ |
run-arsymtest.sh | 41 sort > $okfile 45 sort $tmpfile > $testfile
|
/external/icu4c/config/ |
gmakever.mk | 19 latest_a=$(firstword $(sort $(MAKE_VERSION) $(at_least)))
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
CollisionResults.java | 64 Collections.sort(results); 85 Collections.sort(results); 97 Collections.sort(results); 106 Collections.sort(results);
|
/external/strace/linux/mips/ |
ioctlent.sh | 68 file_list=`(ls $file_find $file_stop $file_stop 2>/dev/null) | sort | uniq -u` 90 awk '{ print "#include <" substr($2, 2, length($2) - 3) ">" }' ioctlent.tmp | sort -u
|
/frameworks/base/data/sounds/ |
generate-all-audio.sh | 46 sort -u | 54 sort -u |
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
ClassPathOpener.java | 44 * If true, sort such that classes appear before their inner 48 private final boolean sort; field in class:ClassPathOpener 109 * @param sort if true, sort such that classes appear before their inner 114 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) { 115 this(pathname, sort, acceptAll, consumer); 122 * @param sort if true, sort such that classes appear before their inner 127 public ClassPathOpener(String pathname, boolean sort, FileNameFilter filter, 130 this.sort = sort [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestTopologicalSort.java | 35 /** Test topo sort in GraphNode. */ 53 List nodes = g.sort(); 67 List nodes = g.sort(); 81 List nodes = g.sort(); 95 List nodes = g.sort(); 109 List nodes = g.sort();
|
/cts/tools/signature-tools/src/signature/io/html/ |
ClassOverviewPage.java | 99 Collections.sort(removedFields, fieldComparator); 103 Collections.sort(addedFields, fieldComparator); 107 Collections.sort(changedFields, fieldComparator); 113 Collections.sort(removedAnnotationFields, annotationfieldComparator); 117 Collections.sort(addedAnnotationFields, annotationfieldComparator); 121 Collections.sort(changedAnnotationFields, annotationfieldComparator); 127 Collections.sort(removedEnumConstants, enumConstantComparator); 131 Collections.sort(addedEnumConstants, enumConstantComparator); 135 Collections.sort(changedEnumConstants, enumConstantComparator); 141 Collections.sort(removedConstructors, constructorComparator) [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
boundary2.tcl | 71 # A simple selection sort. Not trying to be efficient. 73 proc sort {inlist} { procedure 181 puts "\175 {[sort $aset]}" 188 puts "\175 {[reverse [sort $aset]]}" 192 foreach rx [sort $rset] { 203 foreach rx [reverse [sort $rset]] { 218 foreach x [sort $xset] { 237 foreach rx [sort $rset] { 248 foreach rx [reverse [sort $rset]] { 266 foreach rx [sort $rset] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sort.py | 17 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...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sort.py | 17 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...] |
/external/chromium_org/third_party/lcov/contrib/galaxy/ |
gen_makefile.sh | 29 echo RING1_DEPS:=`find $RING1 -name '*.c.*' | sed 's/\.c.*/-all.ps/' | sort | uniq` 30 echo RING4_DEPS:=`find $RING4 -name '*.c.*' | sed 's/\.c.*/-all.ps/' | sort | uniq` 98 echo "%-ring2.weight:" `find $RING2 -name '*.c.*' | sed 's/\.c.*/-all.ps/' | sort | uniq` 100 echo "%-ring3.weight:" `find $RING3 -name '*.c.*' | sed 's/\.c.*/-all.ps/' | sort | uniq`
|