Searched refs:tokIdent (Results 1 – 3 of 3) sorted by relevance
/external/syzkaller/pkg/ast/ |
D | parser.go | 129 case tokIdent: 148 p.expect(tokComment, tokDefine, tokInclude, tokResource, tokIdent) 197 p.expect(tokInt, tokIdent, tokCExpr) 257 p.expect(tokLBrack, tokIdent) 315 case tokInt, tokIdent: 320 p.expect(tokInt, tokIdent, tokString) 417 case tokIdent: 424 p.expect(tokInt, tokIdent, tokString) 433 case tokIdent: 436 p.expect(tokInt, tokIdent) [all …]
|
D | scanner.go | 17 tokIdent const 56 tokIdent: "identifier", 138 case s.prev2 == tokDefine && s.prev1 == tokIdent: 248 tok = tokIdent
|
D | ast.go | 160 return n.Pos, tok2str[tokIdent], n.Name
|