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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
BufFileInput.cpp 48 int BufFileInput::nextChar( void )
DLG_stream_input.h 30 // It would have been so much nicer for nextChar()
69 virtual int nextChar()
DLexerBase.h 59 virtual int nextChar() = 0;
69 int nextChar() {
91 int nextChar()
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
BufFileInput.cpp 48 int BufFileInput::nextChar( void )
DLG_stream_input.h 30 // It would have been so much nicer for nextChar()
69 virtual int nextChar()
DLexerBase.h 59 virtual int nextChar() = 0;
69 int nextChar() {
91 int nextChar()
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ComposedCharIter.java 109 if (nextChar == Normalizer.DONE) {
112 return nextChar != Normalizer.DONE;
125 if (nextChar == Normalizer.DONE) {
128 curChar = nextChar;
129 nextChar = Normalizer.DONE;
168 nextChar=c;
174 private int nextChar = Normalizer.DONE;
CharsetRecog_mbcs.java 60 for (iter.reset(); nextChar(iter, det);) {
135 // by providing a nextChar() function that fills in an instance of iteratedChar
179 abstract boolean nextChar(iteratedChar it, CharsetDetector det);
202 boolean nextChar(iteratedChar it, CharsetDetector det) {
268 boolean nextChar(iteratedChar it, CharsetDetector det) {
330 boolean nextChar(iteratedChar it, CharsetDetector det) {
476 boolean nextChar(iteratedChar it, CharsetDetector det) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ComposedCharIter.java 107 if (nextChar == Normalizer.DONE) {
110 return nextChar != Normalizer.DONE;
123 if (nextChar == Normalizer.DONE) {
126 curChar = nextChar;
127 nextChar = Normalizer.DONE;
166 nextChar=c;
172 private int nextChar = Normalizer.DONE;
CharsetRecog_mbcs.java 59 for (iter.reset(); nextChar(iter, det);) {
134 // by providing a nextChar() function that fills in an instance of iteratedChar
178 abstract boolean nextChar(iteratedChar it, CharsetDetector det);
201 boolean nextChar(iteratedChar it, CharsetDetector det) {
267 boolean nextChar(iteratedChar it, CharsetDetector det) {
329 boolean nextChar(iteratedChar it, CharsetDetector det) {
475 boolean nextChar(iteratedChar it, CharsetDetector det) {
  /external/pdfium/fpdfsdk/
fpdfedittext.cpp 75 int nextChar;
80 nextChar = FXFT_Get_Next_Char(pFont->GetFace(), currentChar, &glyphIndex);
83 for (int i = currentChar + 1; i < nextChar; i++)
85 currentChar = nextChar;
  /system/core/libutils/include/utils/
Tokenizer.h 95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
  /external/icu/icu4c/source/tools/genrb/
rle.c 300 UBool nextChar = TRUE;
330 * current character in 'c' and uses the boolean 'nextChar'
334 if (nextChar) {
337 nextChar = FALSE;
341 nextChar = TRUE;
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
StringUtils.java 410 final String nextChar = text.substring(i, text.offsetByCodePoints(i, 1));
412 builder.append(nextChar.toUpperCase(locale));
414 builder.append(nextChar.toLowerCase(locale));
417 needsCapsNext = (Arrays.binarySearch(sortedSeparators, nextChar.codePointAt(0)) >= 0);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3input.h 89 void * nextChar;
155 * offset from nextChar. Same as _LA for char stream, but token
250 void * nextChar;
  /external/deqp/executor/
xeContainerFormatParser.cpp 167 int nextChar = getChar(m_elementLen);
168 if (curChar == '\n' || (nextChar != (int)END_OF_BUFFER && nextChar != '\n'))
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONTokener.java 111 char nextChar = next();
112 if (nextChar == 0) {
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
DataBindingUtil.java 211 final char nextChar = tagString.charAt(6);
214 if (nextChar == '/') {
217 } else if (nextChar == '-' && slashIndex != -1) {
  /libcore/ojluni/src/main/java/java/io/
BufferedWriter.java 71 private int nChars, nextChar;
107 nextChar = 0;
127 if (nextChar == 0)
129 out.write(cb, 0, nextChar);
130 nextChar = 0;
142 if (nextChar >= nChars)
144 cb[nextChar++] = (char) c;
194 int d = min(nChars - nextChar, t - b);
195 System.arraycopy(cbuf, b, cb, nextChar, d);
197 nextChar += d
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
EmulatedStackFrame.java 390 writer.putNextChar(reader.nextChar());
488 public char nextChar() {
  /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/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 267 char nextChar =
270 (nextChar >= '0') && (nextChar <= '7');
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 267 char nextChar =
270 (nextChar >= '0') && (nextChar <= '7');
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 264 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 + la - 1)))
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 223 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 = '\t'
    [all...]

Completed in 673 milliseconds

1 2 3 4 5 6 7 8 91011>>