| /frameworks/base/tools/preload/ |
| LoadedClass.java | 95 Arrays.sort(times);
|
| /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
| DefaultCorpusRanker.java | 86 Collections.sort(ordered, new CorpusComparator(corpora, clickScores));
|
| /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
| TablePanel.java | 74 // we need to sort the items to be sure. 75 Arrays.sort(selection);
|
| /dalvik/dx/src/com/android/dx/dex/file/ |
| AnnotationsDirectoryItem.java | 308 Collections.sort(fieldAnnotations); 318 Collections.sort(methodAnnotations); 328 Collections.sort(parameterAnnotations);
|
| /dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
| PriorityQueueTest.java | 66 Arrays.sort(array); 67 Arrays.sort(resultArray); 162 Arrays.sort(newArray); 347 Arrays.sort(array); 466 Arrays.sort(array); 625 Arrays.sort(array); 663 Arrays.sort(array); 718 Arrays.sort(array); 790 Arrays.sort(newArray); 933 Arrays.sort(array) [all...] |
| TreeSetTest.java | 343 SortedSet sort = ts.headSet(new Integer(100)); local 345 sort.headSet(new Integer(101)); 530 SortedSet sort = ts.tailSet(new Integer(101)); local 533 sort.tailSet(new Integer(100));
|
| /development/tools/findunused/ |
| find_unused_resources.rb | 182 unusedResources.unusedLayoutIds.sort { |id, file| id[1] <=> file[1] }.each {|f| 188 unusedResources.unusedStringIds.sort { |id, file| id[1] <=> file[1] }.each {|f| 199 unusedResourceIds.sort { |id, file| id[1] <=> file[1] }.each {|f|
|
| /external/icu4c/layout/ |
| LookupProcessor.cpp | 213 // If we added lookups from the required feature, sort them 215 OpenTypeUtilities::sort(lookupOrderArray, order); 235 OpenTypeUtilities::sort(&lookupOrderArray[order], count); 263 OpenTypeUtilities::sort(lookupOrderArray, order);
|
| /external/webkit/WebKitTools/Scripts/ |
| extract-localizable-strings | 107 for my $file (sort @files) { 355 my @unusedExceptions = sort grep { !$usedException{$_} } keys %exception; 376 for my $key (sort keys %commentByKey) {
|
| /frameworks/base/core/tests/coretests/src/android/accounts/ |
| AccountManagerServiceTest.java | 72 Arrays.sort(accounts, new AccountSorter()); 82 Arrays.sort(accounts, new AccountSorter()); 91 Arrays.sort(accounts, new AccountSorter());
|
| /packages/apps/Settings/src/com/android/settings/ |
| UsageStats.java | 140 // Sort list 206 Collections.sort(mUsageStats, mUsageTimeComparator); 209 Collections.sort(mUsageStats, mLaunchCountComparator); 212 Collections.sort(mUsageStats, mAppLabelComparator);
|
| /external/freetype/src/pshinter/ |
| pshalgo.c | 72 FT_FREE( table->sort ); 188 if ( FT_NEW_ARRAY( table->sort, 2 * count ) || 194 table->sort_global = table->sort + count; 277 PSH_Hint* sort = table->sort; 281 for ( count2 = count; count2 > 0; count2--, sort++ ) 283 hint2 = sort[0]; 296 table->sort[count++] = hint; 308 /* now, sort the hints; they are guaranteed to not overlap */ 313 PSH_Hint* sort = table->sort local 1522 PSH_Hint* sort = table->sort; local [all...] |
| /external/guava/src/com/google/common/collect/ |
| ImmutableSortedSet.java | 38 * natural sort ordering of their elements. Either way, null elements are not 208 sort(array, comparator); method 214 /** Sort the array, according to the comparator. */ 216 private static <E> void sort( method in class:ImmutableSortedSet 218 Arrays.sort(array, (Comparator<Object>) comparator); 376 sort(array, comparator); method 400 sort(array, comparator); method
|
| /external/icu4c/test/perf/collationperf/ |
| CollPerf.pl | 193 <td>Timing for generation of sort keys, used to 'precompile' information so 199 <td>The average length of the generated sort keys, in bytes per character 200 (Unicode/ISO 10646 code point). Generally this is the important field for sort 202 comparison, and the overhead of memory usage and retrieval time for sort 216 <li>For more information on incremental vs. sort key comparison, the importance
|
| /external/jdiff/src/jdiff/ |
| APIComparator.java | 50 Collections.sort(oldAPI.packages_); 51 Collections.sort(newAPI.packages_); 157 Collections.sort(oldPkg.classes_); 158 Collections.sort(newPkg.classes_); 367 Collections.sort(oldClass.ctors_); 368 Collections.sort(newClass.ctors_); 457 Collections.sort(oldClass.methods_); 458 Collections.sort(newClass.methods_); 687 Collections.sort(oldClass.fields_); 688 Collections.sort(newClass.fields_) [all...] |
| /external/v8/tools/ |
| profile_view.js | 123 * Sorts the profile view using the specified sort function. 127 * functions. Must comply with Array.sort sorting function requirements. 129 devtools.profiler.ProfileView.prototype.sort = function(sortFunc) { 219 * functions. Must comply with Array.sort sorting function requirements. 223 this.children.sort(sortFunc);
|
| /cts/tools/test-progress/src/ |
| TestCoverageDoclet.java | 231 Arrays.sort(classes, new Comparator<ClassDoc>() { 266 Arrays.sort(packages, comparator); 584 Arrays.sort(classes, comparator); 647 Arrays.sort(constructors, comparator); 660 Arrays.sort(methods, comparator); 707 Collections.sort(testM, membercomparator);
|
| /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
| StubMethodAdapter.java | 78 int sort = mReturnType != null ? mReturnType.getSort() : Type.VOID; local 79 switch(sort) { 96 switch(sort) {
|
| /bootable/recovery/applypatch/ |
| imgdiff_test.sh | 104 sort | uniq -d | egrep -e '[.](apk|jar|zip)$'); do
|
| /development/simulator/app/ |
| PhoneCollection.cpp | 119 * We sort them first, because it's nice when everybody's user 121 * so it's possible to define a sort order in the filesystem that 125 strArr.sort(StringArray::cmpAscendingAlpha);
|
| /external/clearsilver/python/examples/base/ |
| who_calls.py | 121 # sort by refcount 123 pairs.sort()
|
| /external/stlport/stlport/stl/pointers/ |
| _list.h | 306 void sort() { _M_impl.sort(); } function in class:list 321 void sort(_StrictWeakOrdering __comp) function in class:list 322 { _M_impl.sort(_STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
|
| /external/stlport/test/eh/ |
| test_list.cpp | 40 // list sort() member test operation. Does not verify stability. 46 gTestController.SetCurrentTestName("list::sort()"); 51 list.sort();
|
| test_slist.cpp | 44 gTestController.SetCurrentTestName("slist::sort()"); 47 slist.sort();
|
| /external/v8/test/mjsunit/tools/ |
| profile_view.js | 52 // So we can sort it using 2 fields: name and time. 83 view.sort(function(n1, n2) {
|