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

1 2

  /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/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/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 61 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
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) {
regexcmp.cpp 124 nextChar(fC); // Fetch the first char from the pattern string.
214 // NextChar. This is where characters are actually fetched from the pattern.
218 nextChar(fC);
    [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) = 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.
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) {
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 365 int mode = NONE, unicode = 0, count = 0, nextChar;
369 while ((nextChar = in.read()) != -1) {
371 int digit = Character.digit((char) nextChar, 16);
380 if (nextChar != '\n') {
386 switch (nextChar) {
394 nextChar = '\b';
397 nextChar = '\f';
400 nextChar = '\n';
403 nextChar = '\r';
406 nextChar = '\t'
    [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 300 char nextChar, buf[] = new char[40];
311 nextChar = (char) intVal;
319 int digit = Character.digit(nextChar, 16);
330 if (nextChar != '\n') {
336 switch (nextChar) {
344 nextChar = '\b';
347 nextChar = '\f';
350 nextChar = '\n';
353 nextChar = '\r';
356 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/emma/core/java12/com/vladium/util/args/
OptsParser.java     [all...]
  /external/chromium/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.
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 296 byte nextChar;
309 nextChar = (byte) (( (cCurr << nShift) | (cPrev >> (8-nShift)) ) & 0x7F);
310 stringBuf[nStridx++] = nextChar;
325 nextChar = (byte) (cCurr >> 1);
326 stringBuf[nStridx++] = nextChar;
  /external/skia/src/animator/
SkScript.cpp 208 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) {
231 if (nextChar == '>') {
236 if (nextChar == '=')
241 if (nextChar == '<') {
246 reverseOperands = nextChar == '=';
251 if (nextChar == '=') {
257 if (nextChar == '=') {
279 SkASSERT(nextChar != '&');
283 SkASSERT(nextChar != '|');
801 char nextChar = script[1]
    [all...]
SkScriptTokenizer.cpp 212 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) {
235 if (nextChar == '>') {
240 if (nextChar == '=')
245 if (nextChar == '<') {
250 reverseOperands = nextChar == '=';
255 if (nextChar == '=') {
261 if (nextChar == '=') {
283 SkASSERT(nextChar != '&');
287 SkASSERT(nextChar != '|');
673 char nextChar = script[1]
    [all...]
SkScript.h 198 int arithmeticOp(char ch, char nextChar, bool lastPush);
221 int logicalOp(char ch, char nextChar);
SkScript2.h 216 int arithmeticOp(char ch, char nextChar, bool lastPush);
239 int logicalOp(char ch, char nextChar);
  /external/chromium/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;
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 70 private int nextChar;
102 this.nextChar = 0;
146 while (nextChar < text.length()) {
147 if (!isWordBreak(nextChar)) {
148 if (!wasSmiley || !isSmileyBreak(nextChar)) {
259 nextChar = text.length();
268 int start = nextChar;
270 char ch = text.charAt(nextChar++);
280 } while (!isWordBreak(nextChar));
282 addToken(new Html(text.substring(start, nextChar), buf.toString()))
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 516 char nextChar = sCharacterClasses[charClass].charAt(r.nextInt(classLength));
517 sb.append(nextChar);

Completed in 664 milliseconds

1 2