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

1 2

  /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/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...]
  /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...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstUtf8.java 267 char nextChar =
270 (nextChar >= '0') && (nextChar <= '7');
  /external/chromium/third_party/icu/source/i18n/
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) {
ucol.cpp     [all...]
  /external/icu4c/i18n/
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) {
ucol.cpp     [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 == '}') {
  /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...]
  /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/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...]
  /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...]
  /bionic/libc/kernel/tools/
cpp.py 279 def nextChar(self):
287 result = self.nextChar()
329 c = self.nextChar()
338 c = self.nextChar()
347 c = self.nextChar()
386 c2 = self.nextChar()
392 c2 = self.nextChar()
404 c2 = self.nextChar()
    [all...]
  /external/webkit/WebCore/rendering/
RenderBlockLineLayout.cpp     [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardBuilder.java     [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...]
  /packages/apps/Tag/src/com/android/vcard/
VCardBuilder.java     [all...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java     [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /external/emma/lib/
emma.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 1363 milliseconds

1 2