/frameworks/libs/net/common/hostdevice/com/android/testutils/ |
D | MiscAsserts.kt | 63 assertEquals(actual.sorted(), expected.sorted(), in assertContainsExactly() 68 assertEquals(actual.sorted(), expected.sorted(), in assertContainsStringsExactly()
|
/frameworks/base/core/java/android/os/ |
D | BinderProxy.java | 275 Map.Entry<String, Integer>[] sorted = counts.entrySet().toArray( in getSortedInterfaceCounts() local 278 Arrays.sort(sorted, (Map.Entry<String, Integer> a, Map.Entry<String, Integer> b) in getSortedInterfaceCounts() 281 int returnCount = Math.min(maxToReturn, sorted.length); in getSortedInterfaceCounts() 284 ifaceCounts[i] = new InterfaceCount(sorted[i].getKey(), sorted[i].getValue()); in getSortedInterfaceCounts() 295 final InterfaceCount[] sorted = getSortedInterfaceCounts(MAX_NUM_INTERFACES_TO_DUMP); in dumpProxyInterfaceCounts() local 299 for (int i = 0; i < sorted.length; i++) { in dumpProxyInterfaceCounts() 300 Log.v(Binder.TAG, " #" + (i + 1) + ": " + sorted[i]); in dumpProxyInterfaceCounts()
|
/frameworks/base/tests/JankBench/scripts/external/ |
D | statistics.py | 172 total = sum(Fraction(n, d) for d, n in sorted(partials.items())) 350 data = sorted(data) 373 data = sorted(data) 395 data = sorted(data) 428 data = sorted(data)
|
/frameworks/base/tools/localedata/ |
D | extract_icu_data.py | 133 for locale in sorted(likely_script_dict.keys()): 157 for locale in sorted(representative_locales): 222 sorted_scripts = sorted(script_organized_dict.keys()) 228 for locale in sorted(parent_dict.keys()):
|
/frameworks/rs/tests/java_api/RSUnitTests/ |
D | RSUnitTests.py | 219 tests = sorted(tests) 566 for build_tool_version_name in sorted(BUILD_TOOL_VERSIONS.values()): 573 for build_tool_version in sorted(BUILD_TOOL_VERSIONS.keys()): 642 for version in sorted(UNIT_TEST_PLATFORM_VERSIONS.keys()): 644 tests = sorted(UNIT_TEST_PLATFORM_VERSIONS[version])
|
/frameworks/native/opengl/tools/glgen/ |
D | convert_to_java.py | 30 for define in sorted(allDefines, key=lambda define: define[1]):
|
/frameworks/av/services/audiopolicy/engineconfigurable/tools/ |
D | buildCommonTypesStructureFile.py | 75 ordered_values = OrderedDict(sorted(values_dict.items(), key=lambda x: x[1])) 84 ordered_values = OrderedDict(sorted(values_dict.items(), key=lambda x: x[1]))
|
/frameworks/base/cmds/am/src/com/android/commands/am/ |
D | Instrument.java | 135 private static Collection<String> sorted(Collection<String> list) { in sorted() method in Instrument 170 for (String key : sorted(results.keySet())) { in onInstrumentationStatusLocked() 191 for (String key : sorted(results.keySet())) { in onInstrumentationFinishedLocked() 307 for (final String key: sorted(bundle.keySet())) { in writeBundle()
|
/frameworks/native/cmds/installd/ |
D | matchgen.py | 76 for k in sorted(target.keys()):
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | process_newdb_perf_test_logs.py | 65 for k in sorted(timings):
|
/frameworks/base/tools/hiddenapi/ |
D | merge_csv.py | 61 fieldnames = sorted(headers)
|
D | generate_hiddenapi_lists.py | 275 flags = sorted([self.convert_to_old_flag(flag) for flag in self._dict[api]]) 277 return sorted(lines)
|
/frameworks/base/tools/aapt2/tools/ |
D | extract_unicode_properties.py | 58 for char_prop in sorted(chars.values(), key=CharacterProperty.key):
|
/frameworks/ml/nn/tools/ |
D | parse_benchmark.py | 62 for name in sorted(data):
|
/frameworks/minikin/tools/ |
D | mk_hyb_file.py | 202 succ = sorted([ch_map[c] + edge_start for c in node.succ.keys()]) 240 for i in sorted(mapped.keys()): 259 for c in sorted(node.succ.keys()): 337 for c, val in sorted(ch_map.items()):
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/ |
D | BubbleData.java | 325 .sorted(Comparator.comparingLong(Bubble::getLastActivity)) in trim() 605 .sorted(GROUPS_BY_MAX_SORT_KEY_DESCENDING) in repackAll() 615 .sorted(BUBBLES_BY_SORT_KEY_DESCENDING) in repackAll()
|
/frameworks/rs/tests/lldb/tests/testcases/ |
D | test_reduction.py | 263 for x, _, __ in sorted(coords_range_3d(X_TESTS, Y_TESTS, Z_TESTS)):
|
/frameworks/base/core/tests/benchmarks/src/android/util/ |
D | StreamsBenchmark.java | 86 getOpenSessionCallsList(calls).stream().sorted( in timeStreams()
|
/frameworks/ml/nn/tools/test_generator/ |
D | example_generator.py | 83 for k in sorted(var.keys())
|
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
D | AsmGeneratorTest.java | 322 .sorted() in findClassNames() 329 .sorted() in findFileNames()
|
/frameworks/base/tools/aapt2/tools/consumers/ |
D | duplicates.py | 33 duplicates = sorted(duplicates, key=lambda x: x.start)
|
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/ |
D | balls.rscript | 76 // Create the sorted grid cache
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_framebuffer_target.txt | 88 EGLConfigs are not sorted with respect to the parameters
|
/frameworks/rs/tests/lldb/tests/harness/ |
D | test_base.py | 107 for test in sorted(
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | ContentService.java | 225 ArrayList<Integer> sorted = new ArrayList<Integer>(); in dump() local 227 sorted.add(pidCounts.keyAt(i)); in dump() 229 Collections.sort(sorted, new Comparator<Integer>() { in dump() 243 for (int i=0; i<sorted.size(); i++) { in dump() 244 int pid = sorted.get(i); in dump()
|