Home | History | Annotate | Download | only in Lex

Lines Matching defs:Exponent

551     if ((*s == 'e' || *s == 'E')) { // exponent
553 const char *Exponent = s;
562 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent - ThisTokBegin),
774 // A binary exponent can appear with or with a '.'. If dotted, the
775 // binary exponent is required.
778 const char *Exponent = s;
784 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
846 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
862 if (*s == 'e' || *s == 'E') { // exponent
864 const char *Exponent = s;
874 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),