/aosp12/packages/services/Car/tests/DiagnosticTools/src/com/google/android/car/diagnostictools/utils/ |
H A D | MathEval.java | 81 void nextChar() { in eval() method 87 nextChar(); in eval() 90 nextChar(); in eval() 97 nextChar(); in eval() 152 nextChar(); in eval() 157 nextChar(); in eval() 161 nextChar(); in eval()
|
/aosp12/frameworks/base/core/java/android/os/ |
H A D | PatternMatcher.java | 204 char nextChar = pattern.charAt(0); in matchGlobPattern() local 206 char c = nextChar; in matchGlobPattern() 208 nextChar = ip < NP ? pattern.charAt(ip) : 0; in matchGlobPattern() 211 c = nextChar; in matchGlobPattern() 213 nextChar = ip < NP ? pattern.charAt(ip) : 0; in matchGlobPattern() 215 if (nextChar == '*') { in matchGlobPattern() 223 nextChar = pattern.charAt(ip); in matchGlobPattern() 226 if (nextChar == '\\') { in matchGlobPattern() 231 if (match.charAt(im) == nextChar) { in matchGlobPattern() 242 nextChar = ip < NP ? pattern.charAt(ip) : 0; in matchGlobPattern() [all …]
|
/aosp12/frameworks/base/core/java/com/google/android/util/ |
H A D | AbstractMessageParser.java | 72 private int nextChar; field in AbstractMessageParser 104 this.nextChar = 0; in AbstractMessageParser() 148 while (nextChar < text.length()) { in parse() 149 if (!isWordBreak(nextChar)) { in parse() 261 nextChar = text.length(); in parseMusicTrack() 270 int start = nextChar; in parseText() 282 } while (!isWordBreak(nextChar)); in parseText() 352 int start = nextChar; in parseURL() 458 nextChar = index; in parseURL() 490 int endChar = nextChar; in parseFormatting() [all …]
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/ |
H A D | patricia_trie_policy.cpp | 127 int nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( in getCodePointsAndProbabilityAndReturnCodePointCount() local 132 while (NOT_A_CODE_POINT != nextChar && --charCount > 0) { in getCodePointsAndProbabilityAndReturnCodePointCount() 133 outCodePoints[++wordPos] = nextChar; in getCodePointsAndProbabilityAndReturnCodePointCount() 134 nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( in getCodePointsAndProbabilityAndReturnCodePointCount() 204 int nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( in getCodePointsAndProbabilityAndReturnCodePointCount() local 207 while (-1 != nextChar && --charCount > 0) { in getCodePointsAndProbabilityAndReturnCodePointCount() 208 outCodePoints[++wordPos] = nextChar; in getCodePointsAndProbabilityAndReturnCodePointCount() 209 nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition( in getCodePointsAndProbabilityAndReturnCodePointCount()
|
/aosp12/build/soong/androidmk/parser/ |
H A D | make_strings.go | 150 nextChar := func() { 168 nextChar() 175 nextChar() 178 nextChar() 182 nextChar()
|
/aosp12/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/ |
H A D | Utils.java | 33 char nextChar = (char)(random.nextInt(26) + base); in getRandomWord() local 34 builder.append(nextChar); in getRandomWord()
|
/aosp12/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
H A D | StringUtils.java | 410 final String nextChar = text.substring(i, text.offsetByCodePoints(i, 1)); in capitalizeEachWord() local 412 builder.append(nextChar.toUpperCase(locale)); in capitalizeEachWord() 414 builder.append(nextChar.toLowerCase(locale)); in capitalizeEachWord() 417 needsCapsNext = (Arrays.binarySearch(sortedSeparators, nextChar.codePointAt(0)) >= 0); in capitalizeEachWord()
|
/aosp12/system/core/libutils/include/utils/ |
H A D | Tokenizer.h | 95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); } in nextChar() function
|
/aosp12/frameworks/native/libs/input/ |
H A D | VirtualKeyMap.cpp | 135 mTokenizer->nextChar(); in consumeFieldDelimiterAndSkipWhitespace()
|
H A D | KeyCharacterMap.cpp | 1080 char ch = mTokenizer->nextChar(); in parseKeyProperty() 1306 char ch = mTokenizer->nextChar(); in parseCharacterLiteral() 1311 ch = mTokenizer->nextChar(); in parseCharacterLiteral() 1314 ch = mTokenizer->nextChar(); in parseCharacterLiteral() 1328 ch = mTokenizer->nextChar(); in parseCharacterLiteral() 1351 ch = mTokenizer->nextChar(); in parseCharacterLiteral()
|
H A D | PropertyMap.cpp | 165 if (mTokenizer->nextChar() != '=') { in parse()
|
/aosp12/frameworks/base/telecomm/java/android/telecom/ |
H A D | ConnectionServiceAdapter.java | 306 void onPostDialChar(String callId, char nextChar) { in onPostDialChar() argument 309 adapter.onPostDialChar(callId, nextChar, Log.getExternalSession()); in onPostDialChar()
|
H A D | RemoteConnection.java | 128 public void onPostDialChar(RemoteConnection connection, char nextChar) {} in onPostDialChar() argument 1439 void onPostDialChar(final char nextChar) { in onPostDialChar() argument 1446 callback.onPostDialChar(connection, nextChar); in onPostDialChar()
|
H A D | RemoteConnectionService.java | 291 public void onPostDialChar(String callId, char nextChar, Session.Info sessionInfo) { 293 .onPostDialChar(nextChar);
|
H A D | ConnectionServiceAdapterServant.java | 506 public void onPostDialChar(String connectionId, char nextChar, 510 args.argi1 = nextChar;
|
H A D | Connection.java | 1235 public void onPostDialChar(Connection c, char nextChar) {} in onPostDialChar() argument 2640 public final void setNextPostDialChar(char nextChar) { in setNextPostDialChar() argument 2643 l.onPostDialChar(this, nextChar); in setNextPostDialChar()
|
H A D | ConnectionService.java | 1763 public void onPostDialChar(Connection c, char nextChar) { 1765 Log.d(this, "Adapter onPostDialChar %s, %s", c, nextChar); 1766 mAdapter.onPostDialChar(id, nextChar);
|
/aosp12/frameworks/base/telecomm/java/com/android/internal/telecom/ |
H A D | IConnectionServiceAdapter.aidl | 85 void onPostDialChar(String callId, char nextChar, in Session.Info sessionInfo); in onPostDialChar() argument
|
/aosp12/frameworks/minikin/libs/minikin/ |
H A D | FontCollection.cpp | 114 uint32_t nextChar = family->getCoverage().nextSetBit((i + 1) << kLogCharsPerPage); in init() local 115 lastChar[j] = nextChar; in init()
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
H A D | RichInputConnection.java | 327 final char nextChar = mTempObjectForCommitText.charAt(spanEnd); in commitText() local 329 && UnicodeSurrogate.isHighSurrogate(nextChar)) { in commitText()
|
/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
H A D | ConnectionServiceFixture.java | 602 public void sendOnPostDialChar(String id, char nextChar) throws Exception { in sendOnPostDialChar() argument 604 a.onPostDialChar(id, nextChar, null /*Session.Info*/); in sendOnPostDialChar()
|
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/ |
H A D | CallsManager.java | 930 public void onPostDialChar(final Call call, char nextChar) { in onPostDialChar() argument 931 if (PhoneNumberUtils.is12Key(nextChar)) { in onPostDialChar() 939 mDtmfLocalTonePlayer.playTone(call, nextChar); in onPostDialChar() 951 } else if (nextChar == 0 || nextChar == TelecomManager.DTMF_CHARACTER_WAIT || in onPostDialChar() 952 nextChar == TelecomManager.DTMF_CHARACTER_PAUSE) { in onPostDialChar() 961 Log.w(this, "onPostDialChar: invalid value %d", nextChar); in onPostDialChar()
|
H A D | Call.java | 131 void onPostDialChar(Call call, char nextChar); in onPostDialChar() argument 189 public void onPostDialChar(Call call, char nextChar) {} in onPostDialChar() argument 2866 void onPostDialChar(char nextChar) { in onPostDialChar() argument 2868 l.onPostDialChar(this, nextChar); in onPostDialChar()
|
H A D | ConnectionServiceWrapper.java | 616 public void onPostDialChar(String callId, char nextChar, in onPostDialChar() argument 622 logIncoming("onPostDialChar %s %s", callId, nextChar); in onPostDialChar() 625 call.onPostDialChar(nextChar); in onPostDialChar()
|
/aosp12/frameworks/opt/vcard/java/com/android/vcard/ |
H A D | VCardBuilder.java | 2144 char nextChar = unescaped.charAt(i); in escapeCharacters() local 2145 if (nextChar == '\n') { in escapeCharacters()
|