Home | History | Annotate | Download | only in Lex

Lines Matching defs:Exponent

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;
623 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),