HomeSort by relevance Sort by last modified time
    Searched refs:sort (Results 51 - 75 of 2471) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/lcov-1.9/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`
  /external/chromium_org/third_party/sqlite/src/test/
boundary1.tcl 71 # A simple selection sort. Not trying to be efficient.
73 proc sort {inlist} { procedure
180 puts "\175 {[sort $aset]}"
187 puts "\175 {[reverse [sort $aset]]}"
191 foreach rx [sort $rset] {
202 foreach rx [reverse [sort $rset]] {
217 foreach x [sort $xset] {
236 foreach rx [sort $rset] {
247 foreach rx [reverse [sort $rset]] {
265 foreach rx [sort $rset]
    [all...]
boundary4.tcl 70 # A simple selection sort. Not trying to be efficient.
72 proc sort {inlist} { procedure
149 foreach r [sort $all_rowid] {
156 foreach r [reverse [sort $all_rowid]] {
163 foreach a [sort $all_a] {
171 foreach a [reverse [sort $all_a]] {
179 foreach x [sort $all_x] {
187 foreach x [reverse [sort $all_x]] {
197 foreach r [sort $all_rowid] {
204 foreach r [reverse [sort $all_rowid]]
    [all...]
boundary3.tcl 71 # A simple selection sort. Not trying to be efficient.
73 proc sort {inlist} { procedure
197 puts "\175 {[sort $aset]}"
205 puts "\175 {[reverse [sort $aset]]}"
211 foreach rx [sort $rset] {
224 foreach rx [reverse [sort $rset]] {
241 foreach x [sort $xset] {
262 foreach rx [sort $rset] {
275 foreach rx [reverse [sort $rset]] {
  /external/ipsec-tools/src/racoon/
stats.pl 13 foreach (sort keys %t) {
  /external/llvm/utils/
findsym.pl 20 @objects = grep(/l?i?b?LLVM.*\.[oa]$/,sort(@files));
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 41 // Sort the fields.
42 Arrays.sort(programClass.fields, 0, programClass.u2fieldsCount, this);
44 // Sort the methods.
45 Arrays.sort(programClass.methods, 0, programClass.u2methodsCount, this);
AttributeSorter.java 45 // Sort the attributes.
46 Arrays.sort(programClass.attributes, 0, programClass.u2attributesCount, this);
48 // Sort the attributes of the class members.
58 // Sort the attributes.
59 Arrays.sort(programMember.attributes, 0, programMember.u2attributesCount, this);
61 // Sort the attributes of the attributes.
73 // Sort the attributes.
74 Arrays.sort(codeAttribute.attributes, 0, codeAttribute.u2attributesCount, this);
  /ndk/build/tools/
find-case-duplicates.sh 26 ORG_FILES=`(cd $NDK_ROOT_DIR && git ls-files) | sort -f`
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/sort/
sort.pass.cpp 16 // sort(Iter first, Iter last);
33 std::sort(save, save+len);
89 std::sort(array, array+N);
93 std::sort(array, array+N);
96 std::sort(array, array+N);
100 std::sort(array, array+N);
104 std::sort(array, array+N);
109 std::sort(array, array+N);
132 std::sort(&d, &d);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestStringSortedSetGenerator.java 37 Collections.sort(insertionOrder);
  /external/llvm/utils/lit/utils/
check-sdist 20 sort > /tmp/lit_source_files.txt
35 sort > /tmp/lit_sdist_files.txt
  /frameworks/av/media/libmedia/
StringArray.h 29 // An expanding array of strings. Add, get, sort, delete.
47 // Sort the array.
49 void sort(int (*compare)(const void*, const void*));
52 // Pass this to the sort routine to do an ascending alphabetical sort.
  /cts/tools/signature-tools/src/signature/io/html/
ApiOverviewPage.java 52 Collections.sort(removedPackages, new PackageByNameComparator());
56 Collections.sort(addedPackages, new PackageByNameComparator());
60 Collections.sort(changedPackages, new PackageByNameComparator());
PackageOverviewPage.java 52 Collections.sort(removedClasses, new ClassByNameComparator());
56 Collections.sort(addedClasses, new ClassByNameComparator());
60 Collections.sort(changedClasses, new ClassByNameComparator());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
do-file-rename 80 for my $file (sort @paths) {
86 for my $file (sort @paths) {
96 for my $file (sort @paths) {
  /external/compiler-rt/make/
lib_info.mk 18 AvailableModules := $(sort $(foreach key,$(SubDirKeys),\
25 AvailableArchs := $(sort $(foreach key,$(SubDirKeys),\
28 AvailableFunctions := $(sort $(foreach key,$(SubDirKeys),\
31 CommonFunctions := $(sort\
40 $(call Append,ArchFunctions.$(arch),$(sort \
45 $(call Set,ArchFunctions.$(arch),$(sort $(ArchFunctions.$(arch))))\
  /external/chromium_org/v8/test/mjsunit/
array-sort.js 30 // Test array sort.
36 // Default sort converts each element to string and orders
38 a.sort();
40 // Sort numbers by value using a compare functions.
41 a.sort(function(x, y) { return x - y; });
44 // Default sort on negative numbers.
46 a.sort();
49 // Default sort on negative and non-negative numbers.
51 a.sort();
55 a = [9, 1000000000].sort();
    [all...]
  /external/v8/test/mjsunit/
array-sort.js 30 // Test array sort.
36 // Default sort converts each element to string and orders
38 a.sort();
40 // Sort numbers by value using a compare functions.
41 a.sort(function(x, y) { return x - y; });
44 // Default sort on negative numbers.
46 a.sort();
49 // Default sort on negative and non-negative numbers.
51 a.sort();
55 a = [9, 1000000000].sort();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
make_settings.pl 79 for my $settingName (sort keys %parsedItems) {
96 # FIXME: Sort by type so bools come last and are bit packed.
119 for my $conditional (sort keys %settingsByConditional) {
124 for my $settingName (sort keys %{ $settingsByConditional{$conditional} }) {
130 for my $settingName (sort keys %{ $settingsByConditional{$conditional} }) {
138 for my $settingName (sort keys %{ $settingsByConditional{$conditional} }) {
145 for my $settingName (sort keys %{ $settingsByConditional{$conditional} }) {
152 for my $settingName (sort keys %{ $settingsByConditional{$conditional} }) {
159 for my $settingName (sort keys %{ $settingsByConditional{$conditional} }) {
184 for my $settingName (sort keys %unconditionalSettings)
    [all...]
  /external/oprofile/pp/
opreport_options.cpp 59 vector<string> sort; member in namespace:__anon26201
75 popt::option(sort, "sort", 's',
76 "sort by", "sample,image,app-name,symbol,debug,vma"),
77 popt::option(options::reverse_sort, "reverse-sort", 'r',
78 "use reverse sort"),
117 if (options::xml && !sort.empty()) {
118 cerr << "warning: sort options ignored because they "
122 sort.clear();
125 if (sort.empty() || options::xml)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genren/
Makefile 74 sorts: urename.sort urename.old.sort
76 @echo "Try 'diff --side-by-side urename.old.sort urename.sort'"
78 urename.sort: urename.h
79 sort urename.h > $@
81 urename.old.sort: $(TOP)/common/unicode/urename.h
82 sort $(TOP)/common/unicode/urename.h > $@
  /external/icu4c/tools/genren/
Makefile 87 sorts: urename.sort urename.old.sort
89 @echo "Try 'diff --side-by-side urename.old.sort urename.sort'"
91 urename.sort: urename.h
92 sort urename.h > $@
94 urename.old.sort: $(top_srcdir)/common/unicode/urename.h
95 sort $(top_srcdir)/common/unicode/urename.h > $@
  /dalvik/dexgen/src/com/android/dexgen/util/
ListIntSet.java 34 ints.sort();
86 ints.sort();
93 ints.sort();
  /dalvik/dx/src/com/android/dx/util/
ListIntSet.java 34 ints.sort();
86 ints.sort();
93 ints.sort();

Completed in 257 milliseconds

1 23 4 5 6 7 8 91011>>