Home | History | Annotate | Download | only in Parse

Lines Matching full:star

1448   case tok::star:
4412 if (Kind == tok::star || Kind == tok::caret)
4464 if (Tok.isNot(tok::star)) {
4508 if (Kind == tok::star || Kind == tok::caret) {
4518 if (Kind == tok::star)
5455 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
5456 // the token after the star is a ']'. Since stars in arrays are
5458 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {