/external/clang/lib/Lex/ |
LiteralSupport.cpp | 382 if ((*s == 'e' || *s == 'E')) { // exponent 383 const char *Exponent = s; 391 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-begin), 529 // A binary exponent can appear with or with a '.'. If dotted, the 530 // binary exponent is required. 532 const char *Exponent = s; 538 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin), 598 // If we have a hex digit other than 'e' (which denotes a FP exponent) then 613 if (*s == 'e' || *s == 'E') { // exponent 614 const char *Exponent = s [all...] |
/external/v8/src/ |
double.h | 62 return DiyFp(Significand(), Exponent()); 69 int e = Exponent(); 101 int Exponent() const { 154 return DiyFp(Significand() * 2 + 1, Exponent() - 1); 159 // exponent as m_plus. 173 // Note: denormals have the same exponent as the smallest normals. 210 int exponent = diy_fp.e(); local 213 exponent++; 215 if (exponent >= kMaxExponent) { 218 if (exponent < kDenormalExponent) [all...] |
/external/clang/lib/CodeGen/ |
CGBuiltin.cpp | 381 Value *Exponent = EmitScalarExpr(E->getArg(1)); 384 return RValue::get(Builder.CreateCall2(F, Base, Exponent, "tmp")); [all...] |
/external/doclava/src/com/google/doclava/parser/ |
JavaLexer.java | 46 public static final int Exponent=18; 471 // src/com/google/doclava/parser/Java.g:1322:5: ( ( '0' .. '9' )+ '.' ( '0' .. '9' )* ( Exponent )? | '.' ( '0' .. '9' )+ ( Exponent )? | ( '0' .. '9' )+ Exponent | ( '0' .. '9' )+ | HexPrefix ( HexDigit )* ( () | ( '.' ( HexDigit )* ) ) ( 'p' | 'P' ) ( '+' | '-' )? ( '0' .. '9' )+ ) 476 // src/com/google/doclava/parser/Java.g:1322:9: ( '0' .. '9' )+ '.' ( '0' .. '9' )* ( Exponent )? 534 // src/com/google/doclava/parser/Java.g:1322:41: ( Exponent )? 543 // src/com/google/doclava/parser/Java.g:1322:41: Exponent 556 // src/com/google/doclava/parser/Java.g:1323:9: '.' ( '0' .. '9' )+ ( Exponent )? 589 // src/com/google/doclava/parser/Java.g:1323:29: ( Exponent )? 598 // src/com/google/doclava/parser/Java.g:1323:29: Exponent [all...] |
JavaParser.java | 158 * Lexer -- removed "Exponent?" from FloatingPointLiteral choice 4, since it 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer" 191 public static final int Exponent=18; [all...] |
/prebuilt/common/jython/ |
jython.jar | |