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

1 2 3

  /frameworks/native/include/utils/
Tokenizer.h 95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
StringUtils.java 257 final String nextChar = text.substring(i, text.offsetByCodePoints(i, 1));
259 builder.append(nextChar.toUpperCase(locale));
261 builder.append(nextChar.toLowerCase(locale));
264 needCapsNext = (-1 != separators.indexOf(nextChar.codePointAt(0)));
  /external/icu4c/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...]
  /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;
  /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 222 int mode = NONE, unicode = 0, count = 0, nextChar;
226 while ((nextChar = in.read()) != -1) {
228 int digit = Character.digit((char) nextChar, 16);
237 if (nextChar != '\n') {
243 switch (nextChar) {
251 nextChar = '\b';
254 nextChar = '\f';
257 nextChar = '\n';
260 nextChar = '\r';
263 nextChar = '\t'
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstString.java 267 char nextChar =
270 (nextChar >= '0') && (nextChar <= '7');
  /external/icu4c/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 {
  /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...]
  /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/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 411 char nextChar = text.charAt(lastCharIndex);
412 if (isInvalidPunctuationSymbol(nextChar) || isLatinLetter(nextChar)) {
  /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/legacy/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...]
SkScriptTokenizer.cpp 220 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) {
243 if (nextChar == '>') {
248 if (nextChar == '=')
253 if (nextChar == '<') {
258 reverseOperands = nextChar == '=';
263 if (nextChar == '=') {
269 if (nextChar == '=') {
291 SkASSERT(nextChar != '&');
295 SkASSERT(nextChar != '|');
682 char nextChar = script[1]
    [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...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 515 char nextChar = sCharacterClasses[charClass].charAt(r.nextInt(classLength));
516 sb.append(nextChar);
  /libcore/luni/src/main/java/java/util/
Properties.java 282 char nextChar, buf[] = new char[40];
293 nextChar = (char) intVal;
301 int digit = Character.digit(nextChar, 16);
312 if (nextChar != '\n') {
318 switch (nextChar) {
326 nextChar = '\b';
329 nextChar = '\f';
332 nextChar = '\n';
335 nextChar = '\r';
338 nextChar = '\t'
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
binary_format.h 577 int nextChar = getCodePointAndForwardPointer(root, &pos);
581 while (NOT_A_CODE_POINT != nextChar && --charCount > 0) {
582 outWord[++wordPos] = nextChar;
583 nextChar = getCodePointAndForwardPointer(root, &pos);
641 int nextChar = getCodePointAndForwardPointer(root, &lastCandidateGroupPos);
643 while (-1 != nextChar && --charCount > 0) {
644 outWord[++wordPos] = nextChar;
645 nextChar = getCodePointAndForwardPointer(root, &lastCandidateGroupPos);
    [all...]
  /external/harfbuzz/src/
harfbuzz-arabic.c 871 static HB_UChar16 nextChar(const HB_UChar16 *str, hb_uint32 len, hb_uint32 pos)
942 const HB_UChar16 pch = nextChar(uc, stringLength, pos);
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-arabic.c 871 static HB_UChar16 nextChar(const HB_UChar16 *str, hb_uint32 len, hb_uint32 pos)
942 const HB_UChar16 pch = nextChar(uc, stringLength, pos);
    [all...]

Completed in 1565 milliseconds

1 2 3