/external/libvpx/ |
config.x86.mk | 9 libvpx_codec_srcs := $(sort $(shell cat $(libvpx_config_dir_x86)/libvpx_srcs.txt))
|
/external/mesa3d/src/gallium/tools/ |
addr2line.sh | 10 sed -nre 's|([^ ]*/[^ ]*)\(\+0x([^)]*).*|\1 \2|p' "$input"|sort|uniq|while read bin addr; do
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
FeatureGroupInfoTest.java | 68 // We're going to do linear comparisons, so sort everything first. 69 Arrays.sort(actualFeatures, sFeatureInfoComparator); 70 Arrays.sort(expectedFeatures, sFeatureInfoComparator); 77 // We're going to do linear comparisons, so sort everything first. 81 Arrays.sort(actualGroups, sFeatureGroupComparator); 82 Arrays.sort(expectedGroups, sFeatureGroupComparator); 124 Arrays.sort(g.features, sFeatureInfoComparator);
|
/external/chromium_org/third_party/icu/source/common/ |
rbbicst.pl | 211 foreach $setName (sort keys %charClasses) { 258 foreach $act (sort keys %actions) { 267 foreach $setName (sort keys %charClasses) { 361 foreach $setName (sort keys %charClasses) { 373 foreach $act (sort keys %actions) {
|
/external/chromium_org/tools/perf_expectations/ |
update_perf_expectations_unittest.py | 79 actual_list.sort() 104 actual_list.sort() 118 actual_list.sort() 133 actual_list.sort() 161 actual_list.sort()
|
/external/icu/icu4c/source/common/ |
rbbicst.pl | 211 foreach $setName (sort keys %charClasses) { 258 foreach $act (sort keys %actions) { 267 foreach $setName (sort keys %charClasses) { 361 foreach $setName (sort keys %charClasses) { 373 foreach $act (sort keys %actions) {
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-326.js | 29 // Should sort non-array into equivalent of [37,42,undefined,,0] 32 Array.prototype.sort.call(nonArray); 35 assertEquals(37, nonArray[0], "sort smallest first"); 36 assertEquals(42, nonArray[1], "sort largest last"); 38 assertEquals(undefined, nonArray[2], "sort undefined after largest");
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MixedItemSection.java | 46 /** sort by type only */ 49 /** sort in class-major order, with instances sorted per-class */ 69 /** {@code non-null;} how to sort the items */ 70 private final SortType sort; field in class:MixedItemSection 86 * @param sort how the items should be sorted in the final output 89 SortType sort) { 94 this.sort = sort; 296 switch (sort) { 298 Collections.sort(items) [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MixedItemSection.java | 45 /** sort by type only */ 48 /** sort in class-major order, with instances sorted per-class */ 68 /** {@code non-null;} how to sort the items */ 69 private final SortType sort; field in class:MixedItemSection 85 * @param sort how the items should be sorted in the final output 88 SortType sort) { 93 this.sort = sort; 295 switch (sort) { 297 Collections.sort(items) [all...] |
/external/chromium_org/net/base/ |
directory_lister.cc | 74 // Sort the results. See the TODO below (this sort should be removed and we 77 std::sort(data->begin(), data->end(), CompareDate); 79 std::sort(data->begin(), data->end(), CompareFullPath); 81 std::sort(data->begin(), data->end(), CompareAlphaDirsFirst); 98 SortType sort, 100 : core_(new Core(dir, recursive, sort, this)), 120 SortType sort, 124 sort_(sort),
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MixedItemSection.java | 46 /** sort by type only */ 49 /** sort in class-major order, with instances sorted per-class */ 69 /** {@code non-null;} how to sort the items */ 70 private final SortType sort; field in class:MixedItemSection 86 * @param sort how the items should be sorted in the final output 89 SortType sort) { 94 this.sort = sort; 296 switch (sort) { 298 Collections.sort(items) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
object-get-own-property-names.js | 33 propertyNames.sort(); 40 propertyNames.sort(); 49 propertyNames.sort(); 56 propertyNames.sort(); 68 propertyNames.sort(); 76 propertyNames.sort();
|
/external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/ |
eval_param.pass.cpp | 43 std::sort(u.begin(), u.end()); 60 std::sort(u.begin(), u.end()); 77 std::sort(u.begin(), u.end());
|
/external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/ |
eval.pass.cpp | 64 std::sort(u.begin(), u.end()); 82 std::sort(u.begin(), u.end()); 100 std::sort(u.begin(), u.end());
|
/build/tools/ |
fileslist.py | 40 output.sort(key=operator.itemgetter(0), reverse=True)
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
TextReport.java | 35 Collections.sort(packages, comparator); 52 Collections.sort(classes, comparator); 59 Collections.sort(constructors); 65 Collections.sort(methods);
|
/development/tools/mkstubs/tests/data/ |
TestTemplateClass.java | 50 public static <T extends Comparable<? super T>> void sort(List<T> list) { method in class:TestTemplateClass
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
generate_ad_network_hashes.py | 79 hashes.sort()
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_list_data_source.py | 40 content_script_apis_list.sort(key=itemgetter('name')) 44 restricted_nodes.sort(key=itemgetter('node')) 88 apis_by_channel.sort(key=itemgetter('name')) 95 apis.sort(key=itemgetter('name'))
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
scorer_unittest.cc | 90 std::sort(expected_page_terms.begin(), expected_page_terms.end()); 94 std::sort(page_terms_v.begin(), page_terms_v.end()); 106 std::sort(expected_page_words.begin(), expected_page_words.end()); 110 std::sort(page_words_v.begin(), page_words_v.end());
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
check-dom-results | 107 foreach my $failure (sort @disabled) { 116 foreach my $failure (sort @failures) {
|
/external/chromium_org/third_party/codesighs/ |
autosummary.win.bash | 148 $OBJROOT/dist/bin/msdump2symdb --input $ALLOBJSYMSFILE | /usr/bin/sort > $SYMDBFILE 2> /dev/null 166 # Sort the TSV output for useful diffing and eyeballing in general. 168 /usr/bin/sort -r $RAWTSVFILE > $COPYSORTTSV
|
/external/chromium_org/third_party/icu/scripts/ |
sjis_gen.sh | 121 unsorted_table | sort | uniq
|
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/ |
bwe_plot.sh | 28 data_sets=$(echo "$log" | grep "^PLOT" | cut -f 2 | sort | uniq)
|
/external/clang/test/CodeGen/ |
2009-01-21-InvalidIterator.c | 34 struct fde_vector *sort; member in union:object::__anon23183
|