Searched refs:nextChar (Results 1 - 24 of 24) sorted by relevance

/external/nist-sip/java/gov/nist/core/
H A DLexerCore.java185 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) {
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java222 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
[all...]
/external/icu4c/i18n/
H A Dcsrmbcs.h21 // 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);
H A Dregexcmp.h62 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
H A Dcsrmbcs.cpp155 while (nextChar(&iter, det)) {
242 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) { function in class:CharsetRecog_sjis
290 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) { function in class:CharsetRecog_euc
399 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) function in class:CharsetRecog_big5
449 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) { function in class:CharsetRecog_gb_18030
H A Dregexcmp.cpp149 nextChar(fC); // Fetch the first char from the pattern string.
243 nextChar(fC);
3697 // nextChar for pattern scanning. At this level, we handle stripping
3702 void RegexCompile::nextChar(RegexPatternChar &c) {
3713 nextChar(c); // recurse to get the real next char
3832 nextChar(c); // recurse to get the real next char.
3870 nextChar(fC);
3878 nextChar(fC);
3905 nextChar(fC); // Continue overall regex pattern processing with char after the '}'
3931 nextChar(f
[all...]
H A Ducol.cpp3255 UChar nextChar; local
3257 if(U_IS_TRAIL(nextChar = (UChar)source->iterator->current(source->iterator))) {
3258 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
3263 U_IS_TRAIL((nextChar=*source->pos))) {
3264 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DAsYouTypeFormatter.java254 * @param nextChar the most recently entered digit of a phone number. Formatting characters are
260 public String inputDigit(char nextChar) { argument
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) { argument
272 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true);
277 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) { argument
278 accruedInput.append(nextChar);
284 if (!isDigitOrLeadingPlusSign(nextChar)) {
344 isDigitOrLeadingPlusSign(char nextChar) argument
492 normalizeAndAccrueDigitsAndPlusSign(char nextChar, boolean rememberPosition) argument
509 inputDigitHelper(char nextChar) argument
[all...]
H A DPhoneNumberMatcher.java416 char nextChar = text.charAt(lastCharIndex);
417 if (isCurrencySymbol(nextChar) || isLatinLetter(nextChar)) {
/external/jdiff/src/jdiff/
H A DComments.java251 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/
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/icu4c/common/
H A Drbbiscan.h64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
H A Drbbiscan.cpp829 // nextChar for rules scanning. At this level, we handle stripping
834 void RBBIRuleScanner::nextChar(RBBIRuleChar &c) {
836 // Unicode Character constants needed for the processing done by nextChar(),
849 c.fChar = nextCharLL(); // get nextChar officially so character counts
928 nextChar(fC);
1029 nextChar(fC);
/external/skia/src/animator/
H A DSkScript.cpp208 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
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 local
1082 logicalOp(char ch, char nextChar) argument
[all...]
H A DSkScriptTokenizer.cpp212 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
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 local
907 logicalOp(char ch, char nextChar) argument
[all...]
H A DSkScript.h198 int arithmeticOp(char ch, char nextChar, bool lastPush);
221 int logicalOp(char ch, char nextChar);
H A DSkScript2.h216 int arithmeticOp(char ch, char nextChar, bool lastPush);
239 int logicalOp(char ch, char nextChar);
/external/icu4c/tools/genrb/
H A Drle.c298 UBool nextChar = TRUE; local
328 * current character in 'c' and uses the boolean 'nextChar'
332 if (nextChar) {
335 nextChar = FALSE;
339 nextChar = TRUE;
/external/harfbuzz/src/
H A Dharfbuzz-arabic.c871 static HB_UChar16 nextChar(const HB_UChar16 *str, hb_uint32 len, hb_uint32 pos) function
942 const HB_UChar16 pch = nextChar(uc, stringLength, pos);
/external/icu4c/test/intltest/
H A Drbbitst.cpp3264 virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar);
3445 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar) { argument
3460 *nextChar = fText->char32At(nPos);
3461 if (!fCM->contains(*nextChar)) {
3477 // Push the updated nextPos and nextChar back to our caller.
3481 *nextChar = fText->char32At(nPos);
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCPreparedStatement.java47 char nextChar = 0;
49 nextChar = sql.charAt(i + 1);
51 if (nextChar == '\'') {
53 sb.append(nextChar);
/external/webkit/Source/WebKit/android/nav/
H A DCacheBuilder.cpp2469 goto nextChar;
2478 goto nextChar;
2494 goto nextChar;
2498 nextChar:
/external/webkit/Source/WebCore/rendering/
H A DRenderBlockLineLayout.cpp1620 UChar nextChar = nextText->characters()[0]; local
1621 if (nextText->style()->isCollapsibleWhiteSpace(nextChar)) {
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 1288 milliseconds