HomeSort by relevance Sort by last modified time
    Searched refs:nextChar (Results 1 - 25 of 42) 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/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) {
  /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...]
  /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/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...]
PhoneNumberMatcher.java 416 char nextChar = text.charAt(lastCharIndex);
417 if (isCurrencySymbol(nextChar) || isLatinLetter(nextChar)) {
  /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...]
  /frameworks/base/include/utils/
Tokenizer.h 85 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
  /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);
  /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/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/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/libs/ui/
VirtualKeyMap.cpp 149 mTokenizer->nextChar();
KeyCharacterMap.cpp 609 char ch = mTokenizer->nextChar();
778 char ch = mTokenizer->nextChar();
783 ch = mTokenizer->nextChar();
786 ch = mTokenizer->nextChar();
800 ch = mTokenizer->nextChar();
823 ch = mTokenizer->nextChar();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 168 char nextChar = extractChar(viewer, offset);
174 parentNode, currentNode, parent, info, nextChar);
177 currentNode, parent, nextChar);
186 char nextChar) {
201 if (wordPrefix.length() == 0 && nextChar == '<') {
220 Node currentNode, String parent, AttribInfo info, char nextChar) {
243 && (Character.isWhitespace(nextChar) || nextChar == '>' || nextChar == '/');
    [all...]
  /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...]

Completed in 460 milliseconds

1 2