Home
last modified time | relevance | path

Searched refs:mMoveCount (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/
H A DLeanbackKeyboardController.java152 private int mMoveCount; field in LeanbackKeyboardController
323 mMoveCount++; in clearKeyIfNecessary()
324 if (mMoveCount >= 3) { in clearKeyIfNecessary()
325 mMoveCount = 0; in clearKeyIfNecessary()
464 mMoveCount = 0; in handleKeyDownEvent()
/aosp12/system/media/audio_utils/include/audio_utils/
H A DMetadata.h207 int32_t mMoveCount = 0;
212 mMoveCount = other.mMoveCount + 1;
216 mMoveCount = other.mMoveCount;
220 mMoveCount = other.mMoveCount + 1;
225 mMoveCount = other.mMoveCount;
/aosp12/system/media/audio_utils/tests/
H A Dmetadata_tests.cpp144 ASSERT_TRUE(1 >= std::any_cast<MoveCount>(mc).mMoveCount); // no more than 1 move. in TEST()
162 ASSERT_TRUE(2 >= std::any_cast<MoveCount>(&parceled)->mMoveCount); // no more than 2 moves. in TEST()
221 ASSERT_TRUE(1 >= d2[MOVE_COUNT].mMoveCount); // no more than one move. in TEST()
228 ASSERT_TRUE(2 >= d3[MOVE_COUNT].mMoveCount); // no more than 2 moves after parceling in TEST()