Home
last modified time | relevance | path

Searched refs:layouts (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/display/
H A DDeviceStateToLayoutMap.java113 final Layouts layouts = XmlParser.read(in); in loadLayoutsFromConfig() local
114 if (layouts == null) { in loadLayoutsFromConfig()
118 for (com.android.server.display.config.layout.Layout l : layouts.getLayout()) { in loadLayoutsFromConfig()
/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DKeyboardLayoutManager.java288 final List<KeyboardLayout> layouts = new ArrayList<>(); in getDefaultKeyboardLayout() local
300 layouts.add(layout); in getDefaultKeyboardLayout()
306 if (layouts.isEmpty()) { in getDefaultKeyboardLayout()
311 Collections.sort(layouts); in getDefaultKeyboardLayout()
313 for (KeyboardLayout layout : layouts) { in getDefaultKeyboardLayout()
324 for (KeyboardLayout layout : layouts) { in getDefaultKeyboardLayout()
335 return layouts.get(0).getDescriptor(); in getDefaultKeyboardLayout()
654 String[] layouts = mDataStore.getKeyboardLayouts(key); in getEnabledKeyboardLayoutsForInputDevice() local
655 if ((layouts == null || layouts.length == 0) in getEnabledKeyboardLayoutsForInputDevice()
657 layouts = mDataStore.getKeyboardLayouts(identifier.getDescriptor()); in getEnabledKeyboardLayoutsForInputDevice()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DConversationNotifications.kt110 (row.layouts?.asSequence() ?: emptySequence())
158 entry.row?.layouts?.asSequence()
264 (row.layouts?.asSequence() ?: emptySequence())
/aosp14/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java468 KeyboardLayout[] layouts = getKeyboardLayoutsForInputDevice(device.getIdentifier()); in getKeyboardLayoutDescriptorsForInputDevice() local
470 for (KeyboardLayout kl : layouts) { in getKeyboardLayoutDescriptorsForInputDevice()
491 KeyboardLayout[] layouts = getKeyboardLayouts(); in getKeyboardLayoutTypeForLayoutDescriptor() local
492 for (KeyboardLayout kl : layouts) { in getKeyboardLayoutTypeForLayoutDescriptor()
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/widget/
H A DTextViewFontFamilyLayoutPerfTest.java42 public static Collection layouts() { in layouts() method in TextViewFontFamilyLayoutPerfTest
H A DTextViewAutoSizeLayoutPerfTest.java45 public static Collection layouts() { in layouts() method in TextViewAutoSizeLayoutPerfTest
/aosp14/frameworks/base/core/tests/coretests/src/android/text/
H A DLayoutTest.java493 final List<Integer> layouts = new ArrayList<>(2); in testGetSelection_mixedLatinAndArabicTextDirection() local
496 (left, top, right, bottom, textSelectionLayout) -> layouts.add( in testGetSelection_mixedLatinAndArabicTextDirection()
499 assertEquals(2, layouts.size()); in testGetSelection_mixedLatinAndArabicTextDirection()
500 assertEquals(Layout.TEXT_SELECTION_LAYOUT_LEFT_TO_RIGHT, (long) layouts.get(0)); in testGetSelection_mixedLatinAndArabicTextDirection()
501 assertEquals(Layout.TEXT_SELECTION_LAYOUT_RIGHT_TO_LEFT, (long) layouts.get(1)); in testGetSelection_mixedLatinAndArabicTextDirection()
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewFallbackLineSpacingTest.java51 public static Collection layouts() { in layouts() method in TextViewFallbackLineSpacingTest
/aosp14/frameworks/base/startop/view_compiler/
H A DREADME.md15 `R.layouts.my_layout`, instead call `CompiledView.inflate`.
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dmedia-controls.md25 …](/packages/SystemUI/res/drawable/qs_media_light_source.xml)). Should be reusable in other layouts.
/aosp14/frameworks/base/tools/aapt/
H A DResource.cpp1322 sp<ResourceTypeSet> layouts; in buildResources() local
1359 !applyFileOverlay(bundle, assets, &layouts, "layout") || in buildResources()
1410 if (layouts != NULL) { in buildResources()
1411 err = makeFileResources(bundle, assets, &table, layouts, "layout"); in buildResources()
1515 if (layouts != NULL) { in buildResources()
1516 ResourceDirIterator it(layouts, String8("layout")); in buildResources()