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

1 2 3

  /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...]
  /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...]
antlr3filestream.c 164 if ( (ANTLR3_UINT8)(*((pANTLR3_UINT8)input->nextChar)) == 0xEF
165 && (ANTLR3_UINT8)(*((pANTLR3_UINT8)input->nextChar+1)) == 0xBB
166 && (ANTLR3_UINT8)(*((pANTLR3_UINT8)input->nextChar+2)) == 0xBF
171 input->nextChar = (void *)((pANTLR3_UINT8)input->nextChar + 3);
186 if ( (ANTLR3_UINT8)(*((pANTLR3_UINT8)input->nextChar)) == 0xFE
187 && (ANTLR3_UINT8)(*((pANTLR3_UINT8)input->nextChar+1)) == 0xFF
192 input->nextChar = (void *)((pANTLR3_UINT8)input->nextChar + 2);
196 else if ( (ANTLR3_UINT8)(*((pANTLR3_UINT8)input->nextChar)) == 0xF
    [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...]
  /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/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/icu4c/i18n/
csrmbcs.h 21 // by providing a nextChar() function that fills in an instance of IteratedChar
88 virtual UBool nextChar(IteratedChar *it, InputText *textIn) const = 0;
101 UBool nextChar(IteratedChar *it, InputText *det) const;
132 UBool nextChar(IteratedChar *it, InputText *det) const;
175 UBool nextChar(IteratedChar* it, InputText* det) const;
194 UBool nextChar(IteratedChar* it, InputText* det) const;
regexcmp.h 62 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
  /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/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java 288 * @param nextChar the most recently entered digit of a phone number. Formatting characters are
294 public String inputDigit(char nextChar) {
295 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, false);
300 * Same as {@link #inputDigit}, but remembers the position where {@code nextChar} is inserted, so
303 * inserted/removed in front of {@code nextChar}.
305 public String inputDigitAndRememberPosition(char nextChar) {
306 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true);
311 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) {
312 accruedInput.append(nextChar);
318 if (!isDigitOrLeadingPlusSign(nextChar)) {
    [all...]
  /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...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapFont.java 137 public float getCharacterAdvance(char curChar, char nextChar, float size){
143 advance += c.getKerning(nextChar) * size;
147 private int findKerningAmount(int newLineLastChar, int nextChar) {
151 return c.getKerning(nextChar);
190 // kerningAmount(nextChar)
  /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/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/emma/core/java12/com/vladium/util/args/
OptsParser.java     [all...]
  /external/icu4c/common/
rbbiscan.h 64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
  /external/webkit/Source/WebKit/android/content/
PhoneEmailDetector.cpp 156 goto nextChar;
165 goto nextChar;
181 goto nextChar;
185 nextChar:
  /frameworks/native/include/utils/
Tokenizer.h 95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
  /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...]
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...]
  /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/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;
  /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)));

Completed in 566 milliseconds

1 2 3