/external/antlr/antlr-3.4/runtime/C/include/ |
H A D | antlr3input.h | 89 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 D | rle.c | 298 UBool nextChar = TRUE; local 328 * current character in 'c' and uses the boolean 'nextChar' 332 if (nextChar) { 335 nextChar = FALSE; 339 nextChar = TRUE;
|
/external/icu4c/tools/genrb/ |
H A D | rle.c | 298 UBool nextChar = TRUE; local 328 * current character in 'c' and uses the boolean 'nextChar' 332 if (nextChar) { 335 nextChar = FALSE; 339 nextChar = TRUE;
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
H A D | BitmapFont.java | 137 public float getCharacterAdvance(char curChar, char nextChar, float size){
argument 143 advance += c.getKerning(nextChar) * size;
147 private int findKerningAmount(int newLineLastChar, int nextChar) {
argument 151 return c.getKerning(nextChar);
190 // kerningAmount(nextChar)
|
/external/chromium_org/third_party/icu/source/i18n/ |
H A D | csrmbcs.cpp | 155 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 D | ucol.cpp | 3263 UChar nextChar; local 3265 if(U_IS_TRAIL(nextChar = (UChar)source->iterator->current(source->iterator))) { 3266 cp = U16_GET_SUPPLEMENTARY(ch, nextChar); 3271 U_IS_TRAIL((nextChar=*source->pos))) { 3272 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
|
/external/icu4c/i18n/ |
H A D | csrmbcs.cpp | 156 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 D | ucol.cpp | 3338 UChar nextChar; local 3340 if(U_IS_TRAIL(nextChar = (UChar)source->iterator->current(source->iterator))) { 3341 cp = U16_GET_SUPPLEMENTARY(ch, nextChar); 3346 U_IS_TRAIL((nextChar=*source->pos))) { 3347 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
|
/external/antlr/antlr-3.4/runtime/C/src/ |
H A D | 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 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 D | AsYouTypeFormatter.java | 288 * @param nextChar the most recently entered digit of a phone number. Formatting characters are 294 public String inputDigit(char nextChar) { argument 295 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, false); 300 * Same as {@link #inputDigit}, but remembers the position where {@code nextChar} is inserted, so 303 * inserted/removed in front of {@code nextChar}. 305 public String inputDigitAndRememberPosition(char nextChar) { argument 306 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true); 311 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) { argument 312 accruedInput.append(nextChar); 318 if (!isDigitOrLeadingPlusSign(nextChar)) { 408 isDigitOrLeadingPlusSign(char nextChar) argument 603 normalizeAndAccrueDigitsAndPlusSign(char nextChar, boolean rememberPosition) argument 620 inputDigitHelper(char nextChar) argument [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
H A D | SkScript.cpp | 201 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 D | SkScriptTokenizer.cpp | 220 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 D | SkScript.cpp | 201 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 D | SkScriptTokenizer.cpp | 220 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/harfbuzz/src/ |
H A D | harfbuzz-arabic.c | 871 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/harfbuzz_ng/src/hb-old/ |
H A D | harfbuzz-arabic.c | 871 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/emma/core/java12/com/vladium/util/args/ |
H A D | OptsParser.java | 1047 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 D | rbbitst.cpp | 3660 virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar); 3841 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar) { argument 3856 *nextChar = fText->char32At(nPos); 3857 if (!fCM->contains(*nextChar)) { 3873 // Push the updated nextPos and nextChar back to our caller. 3877 *nextChar = fText->char32At(nPos);
|
/external/icu4c/test/intltest/ |
H A D | rbbitst.cpp | 2680 virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar); 2871 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar) { argument 2886 *nextChar = fText->char32At(nPos); 2887 if (!fCM->contains(*nextChar)) { 2903 // Push the updated nextPos and nextChar back to our caller. 2907 *nextChar = fText->char32At(nPos);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
H A D | RenderBlockLineLayout.cpp | 2537 UChar nextChar = nextText->characterAt(0); local 2538 if (nextText->style()->isCollapsibleWhiteSpace(nextChar)) {
|
/external/robolectric/lib/main/ |
H A D | json-20080701.jar | META-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ... |
H A D | commons-codec-1.6.jar | META-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 D | org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/guava/guava/lib/ |
H A D | jdiff.jar | META-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ... |