Lines Matching refs:tok
3429 for tok in tokens:
3434 if Search(r'sizeof\(.+\)', tok): continue
3435 if Search(r'arraysize\(\w+\)', tok): continue
3437 tok = tok.lstrip('(')
3438 tok = tok.rstrip(')')
3439 if not tok: continue
3440 if Match(r'\d+', tok): continue
3441 if Match(r'0[xX][0-9a-fA-F]+', tok): continue
3442 if Match(r'k[A-Z0-9]\w*', tok): continue
3443 if Match(r'(.+::)?k[A-Z0-9]\w*', tok): continue
3444 if Match(r'(.+::)?[A-Z][A-Z0-9_]*', tok): continue
3448 if tok.startswith('sizeof'):