Searched refs:nextChar (Results 1 - 25 of 58) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3inputstream.c264 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
862 UTF16 * nextChar; local
1142 pANTLR3_UCHAR nextChar; local
1363 pANTLR3_UCHAR nextChar; local
1809 pANTLR3_UINT8 nextChar; local
1875 pANTLR3_UINT8 nextChar; local
[all...]
H A Dantlr3filestream.c164 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))
[all...]
/external/nist-sip/java/gov/nist/core/
H A DLexerCore.java185 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) {
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java223 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
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsrmbcs.h21 // 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;
H A Dregexcmp.h62 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
/external/icu/icu4c/source/i18n/
H A Dcsrmbcs.h21 // 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;
H A Dregexcmp.h62 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DAsYouTypeFormatter.java291 * @param nextChar the most recently entered digit of a phone number. Formatting characters are
297 public String inputDigit(char nextChar) { argument
298 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, false);
303 * Same as {@link #inputDigit}, but remembers the position where {@code nextChar} is inserted, so
306 * inserted/removed in front of {@code nextChar}.
308 public String inputDigitAndRememberPosition(char nextChar) { argument
309 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true);
314 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) { argument
315 accruedInput.append(nextChar);
321 if (!isDigitOrLeadingPlusSign(nextChar)) {
416 isDigitOrLeadingPlusSign(char nextChar) argument
622 normalizeAndAccrueDigitsAndPlusSign(char nextChar, boolean rememberPosition) argument
639 inputDigitHelper(char nextChar) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3input.h89 void * nextChar; member in struct:ANTLR3_INPUT_STREAM_struct
155 * offset from nextChar. Same as _LA for char stream, but token
250 void * nextChar; member in struct:ANTLR3_LEX_STATE_struct
/external/deqp/executor/
H A DxeContainerFormatParser.cpp167 int nextChar = getChar(m_elementLen); local
168 if (curChar == '\n' || (nextChar != (int)END_OF_BUFFER && nextChar != '\n'))
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
H A DSearchConfig.js161 var nextChar = query[i];
162 if (nextChar === " ")
/external/jdiff/src/jdiff/
H A DComments.java251 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/
H A DOptsParser.java1047 nextChar ();
1238 nextChar ();
1245 nextChar ();
1252 nextChar ();
1259 nextChar ();
1266 nextChar ();
1273 nextChar ();
1280 nextChar ();
1287 nextChar ();
1296 nextChar ();
1360 private void nextChar () method in class:OptsParser.MetadataParser
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Drbbiscan.h64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
/external/icu/icu4c/source/common/
H A Drbbiscan.h64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
/external/chromium_org/third_party/skia/src/animator/
H A DSkScript.cpp201 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
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 local
1075 logicalOp(char ch, char nextChar) argument
[all...]
H A DSkScriptTokenizer.cpp220 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
243 if (nextChar == '>') {
248 if (nextChar == '=')
253 if (nextChar == '<') {
258 reverseOperands = nextChar == '=';
263 if (nextChar == '=') {
269 if (nextChar == '=') {
291 SkASSERT(nextChar != '&');
295 SkASSERT(nextChar != '|');
680 char nextChar local
915 logicalOp(char ch, char nextChar) argument
[all...]
H A DSkScript.h190 int arithmeticOp(char ch, char nextChar, bool lastPush);
213 int logicalOp(char ch, char nextChar);
H A DSkScript2.h224 int arithmeticOp(char ch, char nextChar, bool lastPush);
247 int logicalOp(char ch, char nextChar);
/external/skia/src/animator/
H A DSkScript.cpp201 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
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 local
1075 logicalOp(char ch, char nextChar) argument
[all...]
H A DSkScriptTokenizer.cpp220 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
243 if (nextChar == '>') {
248 if (nextChar == '=')
253 if (nextChar == '<') {
258 reverseOperands = nextChar == '=';
263 if (nextChar == '=') {
269 if (nextChar == '=') {
291 SkASSERT(nextChar != '&');
295 SkASSERT(nextChar != '|');
680 char nextChar local
915 logicalOp(char ch, char nextChar) argument
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONTokener.java111 char nextChar = next();
112 if (nextChar == 0) {
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Drle.c298 UBool nextChar = TRUE; local
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/
H A Drle.c298 UBool nextChar = TRUE; local
328 * current character in 'c' and uses the boolean 'nextChar'
332 if (nextChar) {
335 nextChar = FALSE;
339 nextChar = TRUE;

Completed in 579 milliseconds

123