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

1 2 3 4

  /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/chromium_org/third_party/icu/source/i18n/
csrmbcs.h 21 // by providing a nextChar() function that fills in an instance of IteratedChar
88 virtual UBool nextChar(IteratedChar *it, InputText *textIn) = 0;
101 UBool nextChar(IteratedChar *it, InputText *det);
132 UBool nextChar(IteratedChar *it, InputText *det);
175 UBool nextChar(IteratedChar* it, InputText* det);
194 UBool nextChar(IteratedChar* it, InputText* det);
regexcmp.h 62 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
  /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;
  /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;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_policy.cpp 98 int nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition(
103 while (NOT_A_CODE_POINT != nextChar && --charCount > 0) {
104 outCodePoints[++wordPos] = nextChar;
105 nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition(
170 int nextChar = PatriciaTrieReadingUtils::getCodePointAndAdvancePosition(
173 while (-1 != nextChar && --charCount > 0) {
174 outCodePoints[++wordPos] = nextChar;
175 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/emma/core/java12/com/vladium/util/args/
OptsParser.java     [all...]
  /external/chromium_org/third_party/icu/source/common/
rbbiscan.h 64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
  /external/icu4c/common/
rbbiscan.h 64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
  /system/core/include/utils/
Tokenizer.h 95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
  /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/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/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
closebrackets.js 57 var line = cm.getLine(cur.line), nextChar = line.charAt(cur.ch), curChar = cur.ch > 0 ? line.charAt(cur.ch - 1) : "";
60 if (line.length == cur.ch || closingBrackets.indexOf(nextChar) >= 0 || SPACE_CHAR_REGEX.test(nextChar))
  /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/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;

Completed in 1133 milliseconds

1 2 3 4