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

12

/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/chromium_org/third_party/icu/source/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/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.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/chromium_org/third_party/icu/source/i18n/
H A Dcsrmbcs.cpp156 while (nextChar(&iter, det)) {
243 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_sjis
292 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_euc
405 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const function in class:CharsetRecog_big5
457 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_gb_18030
H A Ducol.cpp3256 UChar nextChar; local
3258 if(U_IS_TRAIL(nextChar = (UChar)source->iterator->current(source->iterator))) {
3259 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
3264 U_IS_TRAIL((nextChar=*source->pos))) {
3265 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
/external/icu/icu4c/source/i18n/
H A Dcsrmbcs.cpp156 while (nextChar(&iter, det)) {
243 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_sjis
292 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_euc
405 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const function in class:CharsetRecog_big5
457 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_gb_18030
/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/java/src/com/android/i18n/phonenumbers/
H A DAsYouTypeFormatter.java291 * @param nextChar the most recently entered digit of a phone number. Formatting characters are
297 public String inputDigit(char nextChar) { argument
298 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, false);
303 * Same as {@link #inputDigit}, but remembers the position where {@code nextChar} is inserted, so
306 * inserted/removed in front of {@code nextChar}.
308 public String inputDigitAndRememberPosition(char nextChar) { argument
309 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true);
314 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) { argument
315 accruedInput.append(nextChar);
321 if (!isDigitOrLeadingPlusSign(nextChar)) {
416 isDigitOrLeadingPlusSign(char nextChar) argument
622 normalizeAndAccrueDigitsAndPlusSign(char nextChar, boolean rememberPosition) argument
639 inputDigitHelper(char nextChar) argument
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkScript.cpp201 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
224 if (nextChar == '>') {
229 if (nextChar == '=')
234 if (nextChar == '<') {
239 reverseOperands = nextChar == '=';
244 if (nextChar == '=') {
250 if (nextChar == '=') {
272 SkASSERT(nextChar != '&');
276 SkASSERT(nextChar != '|');
794 char nextChar local
1075 logicalOp(char ch, char nextChar) argument
[all...]
H A DSkScriptTokenizer.cpp220 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
243 if (nextChar == '>') {
248 if (nextChar == '=')
253 if (nextChar == '<') {
258 reverseOperands = nextChar == '=';
263 if (nextChar == '=') {
269 if (nextChar == '=') {
291 SkASSERT(nextChar != '&');
295 SkASSERT(nextChar != '|');
680 char nextChar local
915 logicalOp(char ch, char nextChar) argument
[all...]
/external/skia/src/animator/
H A DSkScript.cpp201 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
224 if (nextChar == '>') {
229 if (nextChar == '=')
234 if (nextChar == '<') {
239 reverseOperands = nextChar == '=';
244 if (nextChar == '=') {
250 if (nextChar == '=') {
272 SkASSERT(nextChar != '&');
276 SkASSERT(nextChar != '|');
794 char nextChar local
1075 logicalOp(char ch, char nextChar) argument
[all...]
H A DSkScriptTokenizer.cpp220 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) { argument
243 if (nextChar == '>') {
248 if (nextChar == '=')
253 if (nextChar == '<') {
258 reverseOperands = nextChar == '=';
263 if (nextChar == '=') {
269 if (nextChar == '=') {
291 SkASSERT(nextChar != '&');
295 SkASSERT(nextChar != '|');
680 char nextChar local
915 logicalOp(char ch, char nextChar) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h397 UChar nextChar = nextText->characterAt(0); local
398 if (nextText->style()->isCollapsibleWhiteSpace(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/chromium_org/third_party/icu/source/test/intltest/
H A Drbbitst.cpp2710 virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar);
2897 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar) { argument
2912 *nextChar = fText->char32At(nPos);
2913 if (!fCM->contains(*nextChar)) {
2929 // Push the updated nextPos and nextChar back to our caller.
2933 *nextChar = fText->char32At(nPos);
/external/icu/icu4c/source/test/intltest/
H A Drbbitst.cpp2710 virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar);
2897 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar) { argument
2912 *nextChar = fText->char32At(nPos);
2913 if (!fCM->contains(*nextChar)) {
2929 // Push the updated nextPos and nextChar back to our caller.
2933 *nextChar = fText->char32At(nPos);
/external/robolectric/lib/main/
H A Djson-20080701.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ...
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 7723 milliseconds

12