Home
last modified time | relevance | path

Searched refs:oldLayout (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DKeyboardLayoutManager.java676 String oldLayout = mDataStore.getCurrentKeyboardLayout(key); in addKeyboardLayoutForInputDevice() local
677 if (oldLayout == null && !key.equals(identifier.getDescriptor())) { in addKeyboardLayoutForInputDevice()
678 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor()); in addKeyboardLayoutForInputDevice()
681 && !Objects.equals(oldLayout, in addKeyboardLayoutForInputDevice()
704 String oldLayout = mDataStore.getCurrentKeyboardLayout(key); in removeKeyboardLayoutForInputDevice() local
705 if (oldLayout == null && !key.equals(identifier.getDescriptor())) { in removeKeyboardLayoutForInputDevice()
706 oldLayout = mDataStore.getCurrentKeyboardLayout(identifier.getDescriptor()); in removeKeyboardLayoutForInputDevice()
714 if (removed && !Objects.equals(oldLayout, in removeKeyboardLayoutForInputDevice()
/aosp14/frameworks/base/services/core/java/com/android/server/display/
H A DLogicalDisplayMapper.java1007 final Layout oldLayout = mCurrentLayout; in applyLayoutLocked() local
1009 Slog.i(TAG, "Applying layout: " + mCurrentLayout + ", Previous layout: " + oldLayout); in applyLayoutLocked()