HomeSort by relevance Sort by last modified time
    Searched full:nextchar (Results 1 - 25 of 66) 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/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...]
  /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...]
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 316 int mode = NONE, unicode = 0, count = 0, nextChar;
320 while ((nextChar = in.read()) != -1) {
322 int digit = Character.digit((char) nextChar, 16);
331 if (nextChar != '\n') {
337 switch (nextChar) {
345 nextChar = '\b';
348 nextChar = '\f';
351 nextChar = '\n';
354 nextChar = '\r';
357 nextChar = '\t'
    [all...]
  /external/grub/lib/
getopt.c 146 static char *nextchar;
407 nextchar = NULL;
472 updating `optind' and `nextchar' so that the next call to `getopt' can
549 if (nextchar == NULL || *nextchar == '\0')
622 nextchar = (argv[optind] + 1
653 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
659 if (!strncmp (p->name, nextchar, nameend - nextchar))
661 if ((unsigned int) (nameend - nextchar)
145 static char *nextchar; variable
    [all...]
  /ndk/sources/host-tools/make-3.81/
getopt.c 140 static char *nextchar; variable
394 nextchar = NULL;
459 updating `optind' and `nextchar' so that the next call to `getopt' can
531 if (nextchar == NULL || *nextchar == '\0')
604 nextchar = (argv[optind] + 1
635 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
641 if (!strncmp (p->name, nextchar, nameend - nextchar))
643 if ((unsigned int) (nameend - nextchar)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
decoder.py 122 nextchar = s[end:end + 1]
124 if nextchar == '}':
126 if nextchar != '"':
143 nextchar = s[end:end + 1]
145 if nextchar == '}':
147 if nextchar != ',':
150 nextchar = s[end:end + 1]
152 if nextchar != '"':
165 nextchar = s[end:end + 1]
166 if nextchar == ']'
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 125 const unsigned char *NextChar;
152 BitstreamCursor() : BitStream(0), NextChar(0) {
154 BitstreamCursor(const BitstreamCursor &RHS) : BitStream(0), NextChar(0) {
159 NextChar = R.getFirstChar();
160 assert(NextChar && "Bitstream not initialized yet");
170 NextChar = R.getFirstChar();
171 assert(NextChar && "Bitstream not initialized yet");
185 NextChar = RHS.NextChar;
229 return NextChar == BitStream->getLastChar() && BitsInCurWord == 0
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java 254 * @param nextChar the most recently entered digit of a phone number. Formatting characters are
260 public String inputDigit(char nextChar) {
261 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, false);
266 * Same as {@link #inputDigit}, but remembers the position where {@code nextChar} is inserted, so
269 * inserted/removed in front of {@code nextChar}.
271 public String inputDigitAndRememberPosition(char nextChar) {
272 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true);
277 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) {
278 accruedInput.append(nextChar);
284 if (!isDigitOrLeadingPlusSign(nextChar)) {
    [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...]
  /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);
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/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/chromium/base/json/
json_reader.cc 27 wchar_t first = token.NextChar();
35 c = token.NextChar();
359 c = token.NextChar();
366 c = token.NextChar();
371 c = token.NextChar();
377 c = token.NextChar();
380 c = token.NextChar();
406 wchar_t c = token.NextChar();
410 c = token.NextChar();
444 c = token.NextChar();
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.cpp 137 int NextChar = 0;
144 NextChar = peekNextChar(i++);
145 } while (isdigit(NextChar));
147 if (NextChar == 'x' || NextChar == 'b') {
155 if (NextChar == 'b')
162 if (NextChar == 'x')
169 if (isalpha(NextChar) || NextChar == '_')
  /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...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java     [all...]
  /external/bluetooth/glib/glib/
giochannel.c 1418 gchar *nextchar, *lastchar; local
1597 gchar *nextchar, *lastchar; local
1904 gchar *nextchar, *prevchar; local
    [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 212 void Tokenizer::NextChar() {
293 NextChar();
302 NextChar();
312 NextChar();
322 NextChar();
342 NextChar();
362 NextChar();
365 NextChar();
429 NextChar();
442 NextChar();
    [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;
  /external/skia/src/animator/
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/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 == '}') {
  /packages/inputmethods/LatinIME/native/src/
binary_format.h 337 int32_t nextChar = getCharCodeAndForwardPointer(root, &pos);
341 while (-1 != nextChar && --charCount > 0) {
342 outWord[++wordPos] = nextChar;
343 nextChar = getCharCodeAndForwardPointer(root, &pos);
400 int32_t nextChar =
403 while (-1 != nextChar && --charCount > 0) {
404 outWord[++wordPos] = nextChar;
405 nextChar = getCharCodeAndForwardPointer(root, &lastCandidateGroupPos);

Completed in 1050 milliseconds

1 2 3