Lines Matching full:star
1556 case tok::star:
2529 if (Next.isOneOf(tok::star, tok::amp, tok::ampamp, tok::identifier,
4847 if (Kind == tok::star || Kind == tok::caret)
4912 if (Tok.isNot(tok::star)) {
4956 if (Kind == tok::star || Kind == tok::caret) {
4971 if (Kind == tok::star)
6002 // star could be the start of an expression, for example 'X[*p + 4]'. Verify
6003 // the token after the star is a ']'. Since stars in arrays are
6005 if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {