/aosp12/packages/apps/Settings/src/com/android/settings/homepage/ |
H A D | TopLevelHighlightMixin.java | 39 private String mCurrentKey; field in TopLevelHighlightMixin 51 mCurrentKey = source.readString(); in TopLevelHighlightMixin() 58 dest.writeString(mCurrentKey); in writeToParcel() 93 mCurrentKey = mPreviousKey; in onCancel() 101 if (TextUtils.isEmpty(mCurrentKey)) { in onCreateAdapter() 126 mPreviousKey = mCurrentKey; in setHighlightPreferenceKey() 127 mCurrentKey = prefKey; in setHighlightPreferenceKey() 145 mCurrentKey = mHiddenKey; in setMenuHighlightShowed() 149 mHiddenKey = mCurrentKey; in setMenuHighlightShowed() 151 mCurrentKey = null; in setMenuHighlightShowed() [all …]
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
H A D | MoreKeysKeyboardView.java | 49 private Key mCurrentKey; field in MoreKeysKeyboardView 161 mCurrentKey = detectKey(x, y); in onDownEvent() 169 final boolean hasOldKey = (mCurrentKey != null); in onMoveEvent() 170 mCurrentKey = detectKey(x, y); in onMoveEvent() 171 if (hasOldKey && mCurrentKey == null) { in onMoveEvent() 184 mCurrentKey = detectKey(x, y); in onUpEvent() 185 if (mCurrentKey != null) { in onUpEvent() 186 updateReleaseKeyGraphics(mCurrentKey); in onUpEvent() 187 onKeyInput(mCurrentKey, x, y); in onUpEvent() 188 mCurrentKey = null; in onUpEvent() [all …]
|
H A D | PointerTracker.java | 122 private Key mCurrentKey = null; field in PointerTracker 373 return mCurrentKey; in getKey() 378 return mCurrentKey != null && mCurrentKey.isModifier(); in isModifier() 495 mCurrentKey = newKey; in onMoveToNewKey() 894 final Key oldKey = mCurrentKey; in onMoveEventInternal() 901 mCurrentKey = null; in onMoveEventInternal() 932 if (mCurrentKey != null && mCurrentKey.isModifier()) { in onUpEvent() 962 final Key currentKey = mCurrentKey; in onUpEventInternal() 963 mCurrentKey = null; in onUpEventInternal() 1058 setReleasedKeyGraphics(mCurrentKey, true /* withAnimation */); in cancelKeyTracking() [all …]
|
/aosp12/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/imaging/ |
H A D | ImageBinder.java | 79 private ImageKey mCurrentKey; field in ImageBinder 123 if (Objects.equals(mCurrentKey, key)) { in setImage() 134 mCurrentKey = null; in setImage() 137 mCurrentKey = new ImageKey(mCurrentRef.getImageURI(), mMaxImageSize); in setImage() 138 getImageFetcher(context).getImage(context, mCurrentKey, mFetchReceiver); in setImage() 158 if (mCurrentKey != null) { in prepareForNewBinding() 159 getImageFetcher(context).cancelRequest(mCurrentKey, mFetchReceiver); in prepareForNewBinding() 166 mCurrentKey = null; in onRequestFinished()
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/ |
H A D | EmojiPageKeyboardView.java | 123 if (key != null && key != mCurrentKey) { in onTouchEvent() 130 private Key mCurrentKey; field in EmojiPageKeyboardView 159 final Key currentKey = mCurrentKey; in releaseCurrentKey() 164 mCurrentKey = null; in releaseCurrentKey() 171 mCurrentKey = key; in onDown() 195 final Key currentKey = mCurrentKey; in onSingleTapUp()
|
/aosp12/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/testing/shadows/ |
H A D | ShadowBackupDataOutput.java | 36 private String mCurrentKey; field in ShadowBackupDataOutput 55 mCurrentKey = key; in writeEntityHeader() 63 ENTRIES.add(new DataEntity(mCurrentKey, data, mDataSize)); in writeEntityData()
|
/aosp12/frameworks/base/core/java/android/inputmethodservice/ |
H A D | KeyboardView.java | 206 private int mCurrentKey = NOT_A_KEY; field in KeyboardView 1072 if (mCurrentKey < 0 || mCurrentKey >= mKeys.length) { in openPopupIfRequired() 1076 Key popupKey = mKeys[mCurrentKey]; in openPopupIfRequired() 1273 mCurrentKey = keyIndex; 1280 if (mCurrentKey >= 0 && mKeys[mCurrentKey].repeatable) { 1329 showPreview(mCurrentKey); 1335 if (keyIndex == mCurrentKey) { 1339 mLastKey = mCurrentKey; 1341 mCurrentKey = keyIndex; 1346 mCurrentKey = mLastKey; [all …]
|
/aosp12/packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/car/ |
H A D | KeyboardView.java | 222 private int mCurrentKey = NOT_A_KEY; field in KeyboardView 1142 if (mPopupKeyboardView == null || mCurrentKey < 0 || mCurrentKey >= mKeys.length) { in openPopupIfRequired() 1146 Key popupKey = mKeys[mCurrentKey]; in openPopupIfRequired() 1298 mCurrentKey = keyIndex; in onModifiedTouchEvent() 1306 if (mCurrentKey >= 0 && mKeys[mCurrentKey].repeatable) { in onModifiedTouchEvent() 1355 showPreview(mCurrentKey); in onModifiedTouchEvent() 1361 if (keyIndex == mCurrentKey) { in onModifiedTouchEvent() 1365 mLastKey = mCurrentKey; in onModifiedTouchEvent() 1367 mCurrentKey = keyIndex; in onModifiedTouchEvent() 1372 mCurrentKey = mLastKey; in onModifiedTouchEvent() [all …]
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 25563 Landroid/inputmethodservice/KeyboardView;->mCurrentKey:I
|