Searched refs:sorted (Results 1 - 22 of 22) sorted by relevance

/frameworks/native/opengl/tools/glgen/
H A Dconvert_to_java.py30 for define in sorted(allDefines, key=lambda define: define[1]):
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DBRWriter.kt22 val indexedProps = properties.sorted().withIndex()
/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DShowDataAction.java87 List<String> sorted = new ArrayList<>(set);
88 Collections.sort(sorted);
89 for (String s : sorted) {
/frameworks/support/design/jvm-tests/src/android/support/design/widget/
H A DDirectedAcyclicGraphTest.java186 final List<TestNode> sorted = mGraph.getSortedList();
188 assertEquals(4, sorted.size());
189 // Assert that all of the nodes are present and in their sorted order
190 assertEquals(node1, sorted.get(0));
191 assertEquals(node3, sorted.get(1));
192 assertEquals(node2, sorted.get(2));
193 assertEquals(node4, sorted.get(3));
/frameworks/base/tools/localedata/
H A Dextract_icu_data.py133 for locale in sorted(likely_script_dict.keys()):
157 for locale in sorted(representative_locales):
219 sorted_scripts = sorted(script_organized_dict.keys())
225 for locale in sorted(parent_dict.keys()):
/frameworks/native/cmds/installd/
H A Dmatchgen.py76 for k in sorted(target.keys()):
/frameworks/rs/tests/lldb/tests/testcases/
H A Dtest_reduction.py263 for x, _, __ in sorted(coords_range_3d(X_TESTS, Y_TESTS, Z_TESTS)):
/frameworks/base/packages/ExtServices/src/android/ext/services/storage/
H A DCacheQuotaServiceImpl.java83 .sorted(sCacheQuotaRequestComparator)
86 // Because the elements are sorted, we can use the index to also be the sorted
/frameworks/base/tools/aapt2/tools/consumers/
H A Dduplicates.py33 duplicates = sorted(duplicates, key=lambda x: x.start)
/frameworks/minikin/tools/
H A Dmk_hyb_file.py198 succ = sorted([ch_map[c] + edge_start for c in node.succ.keys()])
236 for i in sorted(mapped.keys()):
255 for c in sorted(node.succ.keys()):
328 for c, val in sorted(ch_map.items()):
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DGridWidgetTest.java267 View[][] sorted = new View[rows.size()][];
273 sorted[i] = views;
275 return sorted;
279 View[][] sorted = sortByRows();
280 for (int row = 0; row < sorted.length; row++) {
281 View[] views = sorted[row];
296 View[][] sorted = sortByRows();
300 for (int i = 0; i < sorted.length; i++) {
302 alignedLocation = sorted[i][sorted[
[all...]
/frameworks/base/tools/fonts/
H A Dfontchain_lint.py174 for base, vs in sorted(sequences):
295 for first, second in sorted(equivalent_emoji.items()):
336 assert_font_supports_none_of_chars(record.font, sorted(default_emoji))
/frameworks/rs/tests/lldb/tests/harness/
H A Dtest_base.py107 for test in sorted(
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java185 ArrayList<Integer> sorted = new ArrayList<Integer>();
187 sorted.add(pidCounts.keyAt(i));
189 Collections.sort(sorted, new Comparator<Integer>() {
203 for (int i=0; i<sorted.size(); i++) {
204 int pid = sorted.get(i);
H A DSyncManager.java1878 final List<RegisteredServicesCache.ServiceInfo<SyncAdapterType>> sorted =
1880 sorted.addAll(mSyncAdapters.getAllServices(account.userId));
1881 Collections.sort(sorted,
1889 for (RegisteredServicesCache.ServiceInfo<SyncAdapterType> syncAdapterType : sorted) {
/frameworks/base/tools/apilint/
H A Dapilint.py1194 for key in sorted(api.keys()):
1229 for key in sorted(prev.keys()):
1292 for f in sorted(compat_fail):
1298 for f in sorted(cur_fail):
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1752 * Builds a sorted list of views. The sorting order depends on the dependencies
1755 * is: B -> A -> C. The sorted array will contain views B, A and C in this order.
1757 * @param sorted The sorted list of views. The length of this array must
1761 void getSortedViews(View[] sorted, int... rules) { argument
1770 sorted[index++] = view;
1785 if (index < sorted.length) {
/frameworks/native/opengl/tools/glgen2/registry/
H A Dreg.py1161 for key in sorted(badGroup.keys()):
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp2133 // NOTE: we rely on the fact that layers are sorted by
3494 std::map<float, BufferTuple, std::greater<float>> sorted; local
3508 sorted.insert({activeTime, {name, twoBufferRatio,
3511 for (const auto& sortedPair : sorted) {
H A DSurfaceFlinger_hwc1.cpp1804 // NOTE: we rely on the fact that layers are sorted by
3149 std::map<float, BufferTuple, std::greater<float>> sorted; local
3163 sorted.insert({activeTime, {name, twoBufferRatio,
3166 for (const auto& sortedPair : sorted) {
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 8314 milliseconds