HomeSort by relevance Sort by last modified time
    Searched defs:nextChar (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /system/core/include/utils/
Tokenizer.h 95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
  /external/chromium_org/third_party/icu/source/tools/genrb/
rle.c 298 UBool nextChar = TRUE;
328 * current character in 'c' and uses the boolean 'nextChar'
332 if (nextChar) {
335 nextChar = FALSE;
339 nextChar = TRUE;
  /external/icu/icu4c/source/tools/genrb/
rle.c 298 UBool nextChar = TRUE;
328 * current character in 'c' and uses the boolean 'nextChar'
332 if (nextChar) {
335 nextChar = FALSE;
339 nextChar = TRUE;
  /frameworks/base/core/java/android/os/
PatternMatcher.java 125 char nextChar = pattern.charAt(0);
127 char c = nextChar;
129 nextChar = ip < NP ? pattern.charAt(ip) : 0;
132 c = nextChar;
134 nextChar = ip < NP ? pattern.charAt(ip) : 0;
136 if (nextChar == '*') {
144 nextChar = pattern.charAt(ip);
147 if (nextChar == '\\') {
149 nextChar = ip < NP ? pattern.charAt(ip) : 0;
152 if (match.charAt(im) == nextChar) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
StringUtils.java 330 final String nextChar = text.substring(i, text.offsetByCodePoints(i, 1));
332 builder.append(nextChar.toUpperCase(locale));
334 builder.append(nextChar.toLowerCase(locale));
337 needsCapsNext = (Arrays.binarySearch(sortedSeparators, nextChar.codePointAt(0)) >= 0);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3input.h 89 void * nextChar;
155 * offset from nextChar. Same as _LA for char stream, but token
250 void * nextChar;
  /external/deqp/executor/
xeContainerFormatParser.cpp 167 int nextChar = getChar(m_elementLen);
168 if (curChar == '\n' || (nextChar != (int)END_OF_BUFFER && nextChar != '\n'))
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONTokener.java 111 char nextChar = next();
112 if (nextChar == 0) {
  /cts/tools/dasm/src/dasm/
Scanner.java 81 protected int nextChar;
111 nextChar = 0;
113 if (nextChar == -1) throw new DasmError("empty source file");
134 nextChar = inputReader.read();
135 switch (nextChar) {
141 nextChar = '\n';
148 line.append((char) nextChar);
160 if (nextChar != ';') {
163 } while (isWhitespace(nextChar));
164 if (nextChar != ';') return
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 267 char nextChar =
270 (nextChar >= '0') && (nextChar <= '7');
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 267 char nextChar =
270 (nextChar >= '0') && (nextChar <= '7');
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 264 input->nextChar = input->data; /* Input at first character */
321 if ((pANTLR3_UINT8)(input->nextChar) < (((pANTLR3_UINT8)input->data) + input->sizeBuf))
327 if ((ANTLR3_UCHAR)(*((pANTLR3_UINT8)input->nextChar)) == input->newlineChar)
333 input->currentLine = (void *)(((pANTLR3_UINT8)input->nextChar) + 1);
338 input->nextChar = (void *)(((pANTLR3_UINT8)input->nextChar) + 1);
356 if (( ((pANTLR3_UINT8)input->nextChar) + la - 1) >= (((pANTLR3_UINT8)input->data) + input->sizeBuf))
362 return (ANTLR3_UCHAR)(*((pANTLR3_UINT8)input->nextChar + la - 1));
383 if (( ((pANTLR3_UINT8)input->nextChar) + la - 1) >= (((pANTLR3_UINT8)input->data) + input->sizeBuf))
389 return (ANTLR3_UCHAR)toupper((*((pANTLR3_UINT8)input->nextChar + la - 1)))
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 223 int mode = NONE, unicode = 0, count = 0, nextChar;
227 while ((nextChar = in.read()) != -1) {
229 int digit = Character.digit((char) nextChar, 16);
238 if (nextChar != '\n') {
244 switch (nextChar) {
252 nextChar = '\b';
255 nextChar = '\f';
258 nextChar = '\n';
261 nextChar = '\r';
264 nextChar = '\t'
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
csrmbcs.cpp 155 while (nextChar(&iter, det)) {
242 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) {
290 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) {
399 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det)
449 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstString.java 267 char nextChar =
270 (nextChar >= '0') && (nextChar <= '7');
  /external/icu/icu4c/source/i18n/
csrmbcs.cpp 156 while (nextChar(&iter, det)) {
243 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const {
292 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const {
405 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const
457 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const {
  /frameworks/minikin/libs/minikin/
FontCollection.cpp 96 uint32_t nextChar = instance->mCoverage->nextSetBit((i + 1) << kLogCharsPerPage);
98 ALOGD("nextChar = %d (j = %d)\n", nextChar, j);
100 lastChar[j] = nextChar;
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 306 int mode = NONE, unicode = 0, count = 0, nextChar;
310 while ((nextChar = in.read()) != -1) {
312 int digit = Character.digit((char) nextChar, 16);
321 if (nextChar != '\n') {
327 switch (nextChar) {
335 nextChar = '\b';
338 nextChar = '\f';
341 nextChar = '\n';
344 nextChar = '\r';
347 nextChar = '\t'
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
patricia_trie_policy.cpp 120 int nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition(
125 while (NOT_A_CODE_POINT != nextChar && --charCount > 0) {
126 outCodePoints[++wordPos] = nextChar;
127 nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition(
193 int nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition(
196 while (-1 != nextChar && --charCount > 0) {
197 outCodePoints[++wordPos] = nextChar;
198 nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition(
  /external/jdiff/src/jdiff/
Comments.java 251 char nextChar = i < text.length()-1 ? text.charAt( i+1) : (char)-1;
269 if (Character.isWhitespace(nextChar)) continue;
270 if (nextChar == '}') {
273 } else if (!Character.isWhitespace(nextChar)) {
295 if (nextChar == '}') {
313 if (nextChar == '}') {
323 if (nextChar == '}') {
332 if (nextChar == '}') {
  /external/chromium_org/third_party/skia/src/animator/
SkScript.cpp 201 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) {
224 if (nextChar == '>') {
229 if (nextChar == '=')
234 if (nextChar == '<') {
239 reverseOperands = nextChar == '=';
244 if (nextChar == '=') {
250 if (nextChar == '=') {
272 SkASSERT(nextChar != '&');
276 SkASSERT(nextChar != '|');
794 char nextChar = script[1]
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 409 char nextChar = text.charAt(lastCharIndex);
410 if (isInvalidPunctuationSymbol(nextChar) || isLatinLetter(nextChar)) {
    [all...]
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 185 char nextChar = getNextChar();
186 tok.tokenValue = String.valueOf(nextChar);
187 if (isAlpha(nextChar)) {
189 } else if (isDigit(nextChar)) {
192 tok.tokenType = (int) nextChar;
322 char nextChar = lookAhead(0);
323 return isTokenChar(nextChar);
331 char nextChar = lookAhead(0);
332 if (isAlphaDigit(nextChar)) {
336 switch (nextChar) {
727 char nextchar = lookAhead(0); local
    [all...]
  /external/skia/src/animator/
SkScript.cpp 201 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) {
224 if (nextChar == '>') {
229 if (nextChar == '=')
234 if (nextChar == '<') {
239 reverseOperands = nextChar == '=';
244 if (nextChar == '=') {
250 if (nextChar == '=') {
272 SkASSERT(nextChar != '&');
276 SkASSERT(nextChar != '|');
794 char nextChar = script[1]
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 189 char ch = 0, nextChar = 0;
280 nextChar = catedStr.charAt(itemEnd + 1);
281 nextKind = classifyCharacter(nextChar);
286 nextChar = 0x3B;
289 if (ch == nextChar)
    [all...]

Completed in 1233 milliseconds

1 2 3 4