Searched refs:TOK (Results 1 – 10 of 10) sorted by relevance
/external/clang/test/Index/ |
D | IBOutletCollection.m | 11 // RUN: c-index-test -test-annotate-tokens=%s:4:1:5:1 %s | FileCheck -check-prefix=CHECK-TOK %s 12 // CHECK-TOK: Identifier: "IBOutletCollection" [4:3 - 4:21] macro expansion=IBOutletCollection:1:9 14 // CHECK-TOK: Punctuation: "(" [4:21 - 4:22] attribute(iboutletcollection)= [IBOutletCollection=Obj… 15 // CHECK-TOK: Identifier: "Test" [4:22 - 4:26] ObjCClassRef=Test:3:12 17 // CHECK-TOK: Punctuation: ")" [4:26 - 4:27] 18 // CHECK-TOK: Identifier: "Test" [4:28 - 4:32] ObjCClassRef=Test:3:12 19 // CHECK-TOK: Punctuation: "*" [4:33 - 4:34] ObjCIvarDecl=anOutletCollection:4:34 (Definition) 20 // CHECK-TOK: Identifier: "anOutletCollection" [4:34 - 4:52] ObjCIvarDecl=anOutletCollection:4:34 (…
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/ |
D | nasm-token.re | 47 #define TOK ((char *)s->tok) 163 lvalp->intn = yasm_intnum_create_dec(TOK); 171 lvalp->intn = yasm_intnum_create_bin(TOK); 178 lvalp->intn = yasm_intnum_create_oct(TOK); 185 lvalp->intn = yasm_intnum_create_hex(TOK); 195 lvalp->intn = yasm_intnum_create_hex(TOK+2); 198 lvalp->intn = yasm_intnum_create_hex(TOK+1); 207 lvalp->flt = yasm_floatnum_create(TOK); 376 RETURN(handle_dot_label(lvalp, TOK, TOKLEN, 0, parser_nasm)); 381 if (TOK[1] == '.' || [all …]
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 12 // languages. Users of this file must optionally #define the TOK, KEYWORD, 17 #ifndef TOK 18 #define TOK(X) 21 #define PUNCTUATOR(X,Y) TOK(X) 24 #define KEYWORD(X,Y) TOK(kw_ ## X) 57 #define ANNOTATION(X) TOK(annot_ ## X) 114 TOK(unknown) // Not a token. 115 TOK(eof) // End of file. 116 TOK(eod) // End of preprocessing directive (end of line inside a 118 TOK(code_completion) // Code completion marker [all …]
|
D | TokenKinds.h | 26 #define TOK(X) X, macro
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/ |
D | gas-token.re | 49 #define TOK ((char *)s->tok) 232 lvalp->intn = yasm_intnum_create_dec(TOK); 241 lvalp->intn = yasm_intnum_create_bin(TOK+2); 250 lvalp->intn = yasm_intnum_create_oct(TOK); 260 lvalp->intn = yasm_intnum_create_hex(TOK+2); 269 lvalp->flt = yasm_floatnum_create(TOK); 276 lvalp->flt = yasm_floatnum_create(TOK); 283 lvalp->flt = yasm_floatnum_create(TOK+2); 311 lvalp->str.contents = yasm__xstrndup(TOK, TOKLEN); 320 cursor = (unsigned char *)strchr(TOK, '@'); [all …]
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-block-line.m | 44 TOK = 100, enum 80 [connection sendResponseCode:TOK dataFollows:YES
|
/external/clang/lib/Basic/ |
D | TokenKinds.cpp | 19 #define TOK(X) #X, macro
|
D | IdentifierTable.cpp | 182 #define ALIAS(NAME, TOK, FLAGS) \ in AddKeywords() argument 183 AddKeyword(StringRef(NAME), tok::kw_ ## TOK, \ in AddKeywords()
|
/external/bison/tests/ |
D | input.at | 1536 # Give %printer and %destructor "<*> exp TOK" instead of "<*>" to 1540 [[%token TOK 1541 %destructor { $%; @%; } <*> exp TOK; 1543 %printer { $%; @%; } <*> exp TOK; 1545 exp: TOK { $%; @%; $$ = $1; };
|
/external/bison/doc/ |
D | bison.texi | 12334 @c LocalWords: lvalue nonnegative XNUM CHR chr TAGLESS tagless stdout api TOK
|