Searched defs:nextChar (Results 1 - 25 of 54) sorted by relevance

123

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DComposedCharIter.java109 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; field in class:ComposedCharIter
H A DCharsetRecog_mbcs.java60 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); method in class:CharsetRecog_mbcs
202 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_sjis
268 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_big5
330 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_euc
476 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_gb_18030
H A DRBBIRuleScanner.java756 // nextChar for rules scanning. At this level, we handle stripping
761 void nextChar(RBBIRuleChar c) { method in class:RBBIRuleScanner
763 // Unicode Character constants needed for the processing done by nextChar(),
776 c.fChar = nextCharLL(); // get nextChar officially so character counts
853 nextChar(fC);
948 nextChar(fC);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DComposedCharIter.java107 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; field in class:ComposedCharIter
H A DCharsetRecog_mbcs.java59 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); method in class:CharsetRecog_mbcs
201 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_sjis
267 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_big5
329 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_euc
475 boolean nextChar(iteratedChar it, CharsetDetector det) { method in class:CharsetRecog_mbcs.CharsetRecog_gb_18030
H A DRBBIRuleScanner.java755 // nextChar for rules scanning. At this level, we handle stripping
760 void nextChar(RBBIRuleChar c) { method in class:RBBIRuleScanner
762 // Unicode Character constants needed for the processing done by nextChar(),
775 c.fChar = nextCharLL(); // get nextChar officially so character counts
852 nextChar(fC);
947 nextChar(fC);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3input.h89 void * nextChar; member in struct:ANTLR3_INPUT_STREAM_struct
155 * offset from nextChar. Same as _LA for char stream, but token
250 void * nextChar; member in struct:ANTLR3_LEX_STATE_struct
/external/deqp/executor/
H A DxeContainerFormatParser.cpp167 int nextChar = getChar(m_elementLen); local
168 if (curChar == '\n' || (nextChar != (int)END_OF_BUFFER && nextChar != '\n'))
/external/icu/icu4c/source/tools/genrb/
H A Drle.c300 UBool nextChar = TRUE; local
330 * current character in 'c' and uses the boolean 'nextChar'
334 if (nextChar) {
337 nextChar = FALSE;
341 nextChar = TRUE;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
H A DBIG5Tool.java129 while (nextChar(ichar)) {
301 boolean nextChar(iteratedChar it) { method in class:BIG5Tool
H A DEUCTool.java129 while (nextChar(ichar)) {
301 boolean nextChar(iteratedChar it) { method in class:EUCTool
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
H A DChecker.java116 public char nextChar() method in class:Checker
H A DStatisticsTool.java121 public char nextChar() method in class:StatisticsTool
H A DNGramParser.java26 char nextChar(); method in interface:NGramParser.NGramParserClient
139 while ((ch = client.nextChar()) != 0) {
/external/icu/icu4c/source/i18n/
H A Dcsrmbcs.cpp157 while (nextChar(&iter, det)) {
244 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_sjis
293 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_euc
406 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const function in class:CharsetRecog_big5
458 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_gb_18030
H A Drematch.cpp418 UChar32 nextChar = utext_current32(replacement); local
419 if (nextChar == LEFTBRACKET) {
423 while(U_SUCCESS(status) && nextChar != RIGHTBRACKET) {
424 nextChar = utext_next32(replacement);
425 if (nextChar == U_SENTINEL) {
427 } else if ((nextChar >= 0x41 && nextChar <= 0x5a) || // A..Z
428 (nextChar >= 0x61 && nextChar <= 0x7a) || // a..z
429 (nextChar >
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonTokenizer.cs690 private char? nextChar; field in class:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader
698 if (nextChar != null)
700 char? tmp = nextChar;
701 nextChar = null;
720 if (nextChar != null)
724 nextChar = c;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3inputstream.c264 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
862 UTF16 * nextChar; local
1142 pANTLR3_UCHAR nextChar; local
1363 pANTLR3_UCHAR nextChar; local
1809 pANTLR3_UINT8 nextChar; local
1875 pANTLR3_UINT8 nextChar; local
[all...]
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DAsYouTypeFormatter.java293 * @param nextChar the most recently entered digit of a phone number. Formatting characters are
299 public String inputDigit(char nextChar) { argument
300 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, false);
305 * Same as {@link #inputDigit}, but remembers the position where {@code nextChar} is inserted, so
308 * inserted/removed in front of {@code nextChar}.
310 public String inputDigitAndRememberPosition(char nextChar) { argument
311 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true);
316 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) { argument
317 accruedInput.append(nextChar);
323 if (!isDigitOrLeadingPlusSign(nextChar)) {
422 isDigitOrLeadingPlusSign(char nextChar) argument
629 normalizeAndAccrueDigitsAndPlusSign(char nextChar, boolean rememberPosition) argument
646 inputDigitHelper(char nextChar) argument
[all...]
/external/pdfium/fpdfsdk/
H A Dfpdfedittext.cpp263 uint32_t nextChar = local
266 if (nextChar > kMaxSimpleFontChar || glyphIndex == 0)
268 for (uint32_t i = currentChar + 1; i < nextChar; i++)
270 currentChar = nextChar;
/external/skia/tools/bookmaker/
H A Dbookmaker.cpp912 char nextChar = this->next(); local
913 lineStart = nextChar == '\n';
914 if (' ' < nextChar) {
/external/skqp/tools/bookmaker/
H A Dbookmaker.cpp812 char nextChar = this->next(); local
813 lineStart = nextChar == '\n';
814 if (' ' < nextChar) {
/external/emma/core/java12/com/vladium/util/args/
H A DOptsParser.java1047 nextChar ();
1238 nextChar ();
1245 nextChar ();
1252 nextChar ();
1259 nextChar ();
1266 nextChar ();
1273 nextChar ();
1280 nextChar ();
1287 nextChar ();
1296 nextChar ();
1360 private void nextChar () method in class:OptsParser.MetadataParser
[all...]
/external/icu/icu4c/source/test/intltest/
H A Drbbitst.cpp2981 virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar);
3189 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar) { argument
3204 *nextChar = fText->char32At(nPos);
3205 if (!fCM->contains(*nextChar)) {
3221 // Push the updated nextPos and nextChar back to our caller.
3225 *nextChar = fText->char32At(nPos);
/external/pdfium/fxjs/
H A Dcfxjse_formcalc_context.cpp2964 wchar_t nextChar = pData[u + 1]; local
2968 !IsPartOfNumberW(nextChar)) {
2974 wchar_t nextChar = pData[u + 1]; local
2978 !IsPartOfNumberW(nextChar)) {
2980 if (nextChar == 'p' || ((u + 5 < uLen) && pData[u + 1] == 'i' &&

Completed in 1044 milliseconds

123