Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/search/
DStringMatcherUtility.java54 int nextType = Character.getType(target.codePointAt(0)); in matches() local
59 thisType = nextType; in matches()
60 nextType = i < (targetLength - 1) in matches()
62 if (matcher.isBreak(thisType, lastType, nextType) in matches()
90 int nextType = Character.getType(Character.codePointAt(input, 1)); local
93 thisType = nextType;
94 nextType = i < (inputLength - 1)
97 if (matcher.isBreak(thisType, prevType, nextType)) {
159 protected boolean isBreak(int thisType, int prevType, int nextType) { in isBreak() argument
171 if (nextType != Character.UPPERCASE_LETTER && nextType != Character.OTHER_SYMBOL in isBreak()
[all …]
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/bass_client/
DBassClientStateMachineTest.java2459 private boolean isConnectionIntentExpected(Class currentType, Class nextType) { in isConnectionIntentExpected() argument
2460 if (currentType == nextType) { in isConnectionIntentExpected()
2465 || (nextType == BassClientStateMachine.ConnectedProcessing.class)) { in isConnectionIntentExpected()