HomeSort by relevance Sort by last modified time
    Searched defs:Exponent (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/Lex/
LiteralSupport.cpp 493 if ((*s == 'e' || *s == 'E')) { // exponent
494 const char *Exponent = s;
502 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-begin),
658 // A binary exponent can appear with or with a '.'. If dotted, the
659 // binary exponent is required.
661 const char *Exponent = s;
667 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
722 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
737 if (*s == 'e' || *s == 'E') { // exponent
738 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 421 Value *Exponent = EmitScalarExpr(E->getArg(1));
424 return RValue::get(Builder.CreateCall2(F, Base, Exponent));
    [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...]
  /prebuilts/misc/common/jython/
jython.jar 

Completed in 344 milliseconds