Lines Matching full:star
1334 case tok::star:
4204 if (Kind == tok::star || Kind == tok::caret)
4256 if (Tok.isNot(tok::star)) {
4300 if (Kind == tok::star || Kind == tok::caret) {
4310 if (Kind == tok::star)
5234 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
5235 // the token after the star is a ']'. Since stars in arrays are
5237 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {