/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParserTokenManager.java | 52 try { curChar = input_stream.readChar(); } 58 switch(curChar) 130 if (curChar < 64) 132 long l = 1L << curChar; 168 else if (curChar < 128) 170 long l = 1L << (curChar & 077); 189 int i2 = (curChar & 0xff) >> 6; 190 long l2 = 1L << (curChar & 077); 208 try { curChar = input_stream.readChar(); } 228 try { curChar = input_stream.readChar(); [all...] |
TokenMgrError.java | 109 * curchar : the offending character 112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { 116 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") + 145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { 146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/ |
ContentTypeParserTokenManager.java | 53 try { curChar = input_stream.readChar(); } 59 switch(curChar) 124 if (curChar < 64) 126 long l = 1L << curChar; 175 else if (curChar < 128) 177 long l = 1L << (curChar & 077); 195 int i2 = (curChar & 0xff) >> 6; 196 long l2 = 1L << (curChar & 077); 222 try { curChar = input_stream.readChar(); } 242 try { curChar = input_stream.readChar(); [all...] |
TokenMgrError.java | 109 * curchar : the offending character 112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { 116 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") + 145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { 146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/ |
TokenMgrError.java | 109 * curchar : the offending character 112 protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) { 116 (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") + 145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) { 146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
|
DateTimeParserTokenManager.java | 72 try { curChar = input_stream.readChar(); } 78 switch(curChar) 126 try { curChar = input_stream.readChar(); } 131 switch(curChar) 168 try { curChar = input_stream.readChar(); } 173 switch(curChar) 308 if (curChar < 64) 310 long l = 1L << curChar; 350 else if (curChar < 128) 352 long l = 1L << (curChar & 077) [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGGlyphMap.h | 55 UChar curChar = string[i]; 56 node = currentLayer->get(curChar); 59 currentLayer->set(curChar, node); 82 UChar curChar = string[i]; 83 RefPtr<GlyphMapNode> node = currentLayer->get(curChar);
|
SVGFont.cpp | 84 static inline SVGGlyphIdentifier::ArabicForm processArabicFormDetection(const UChar& curChar, bool& lastCharShapesRight, SVGGlyphIdentifier::ArabicForm* prevForm) 89 if (curChar >= 0x0622 && curChar <= 0x06FF) 90 shapingMode = s_arabicCharShapingMode[curChar - 0x0622];
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
GraphicsContextWinCE.cpp | [all...] |
/external/v8/benchmarks/ |
earley-boyer.js | [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-earley-boyer.js | [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-earley-boyer.js | [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-earley-boyer.js | [all...] |