/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
LangDumpDecl.g | 8 decl : ^(DECL type declarator) 10 { NSLog(@"int \%@", $declarator.text);} 15 declarator
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t047treeparserWalker.g | 19 : ^(VAR_DEF type declarator) 21 $res = $declarator.text; 25 declarator 34 : ^(ARG_DEF type declarator)
|
t047treeparser.g | 27 : type declarator ';' -> ^(VAR_DEF type declarator) 30 declarator 40 : type declarator -> ^(ARG_DEF type declarator)
|
t017parser.g | 18 : type declarator ';' 21 declarator 30 : type declarator
|
t047treeparser.py | 75 '>declarator', '<declarator', '<variable', '<declaration', 76 '>declaration', '>variable', '>type', '<type', '>declarator', 77 '<declarator', '<variable', '<declaration', '>declaration', 79 '>type', '<type', '>declarator', '<declarator', 82 '>formalParameter', '>type', '<type', '>declarator', 83 '<declarator', '<formalParameter', '>formalParameter', '>type', 84 '<type', '>declarator', '<declarator', '<formalParameter' [all...] |
t018llstar.g | 37 : type declarator ';' 40 declarator 50 : type declarator
|
/external/clang/test/Parser/ |
cxx-in-c.c | 4 void f0(int x) : {}; // expected-error{{expected function body after function declarator}} 5 void f1(int x) try {}; // expected-error{{expected function body after function declarator}}
|
diag-crash.c | 5 int foo: // expected-error {{expected ';' after top level declarator}}
|
MicrosoftExtensions.c | 89 // Ignored type qualifiers after comma in declarator lists 90 typedef int ignored_quals_dummy1, const volatile __ptr32 __ptr64 __w64 __unaligned __sptr __uptr ignored_quals1; // expected-warning {{qualifiers after comma in declarator list are ignored}} 91 typedef void(*ignored_quals_dummy2)(), __fastcall ignored_quals2; // expected-warning {{qualifiers after comma in declarator list are ignored}} 92 typedef void(*ignored_quals_dummy3)(), __stdcall ignored_quals3; // expected-warning {{qualifiers after comma in declarator list are ignored}} 93 typedef void(*ignored_quals_dummy4)(), __thiscall ignored_quals4; // expected-warning {{qualifiers after comma in declarator list are ignored}} 94 typedef void(*ignored_quals_dummy5)(), __cdecl ignored_quals5; // expected-warning {{qualifiers after comma in declarator list are ignored}} 95 typedef void(*ignored_quals_dummy6)(), __vectorcall ignored_quals6; // expected-warning {{qualifiers after comma in declarator list are ignored}}
|
/external/javassist/src/main/javassist/compiler/ast/ |
Variable.java | 24 protected Declarator declarator; field in class:Variable 26 public Variable(String sym, Declarator d) { 28 declarator = d; 31 public Declarator getDeclarator() { return declarator; } 34 return identifier + ":" + declarator.getType();
|
Declarator.java | 22 * Variable declarator. 24 public class Declarator extends ASTList implements TokenId { 30 public Declarator(int type, int dim) { 38 public Declarator(ASTList className, int dim) { 48 public Declarator(int type, String jvmClassName, int dim, 59 public Declarator make(Symbol sym, int dim, ASTree init) { 60 Declarator d = new Declarator(this.varType, this.arrayDim + dim);
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t047treeparserWalker.g | 20 : ^(VAR_DEF type declarator) 22 $res = $declarator.text; 26 declarator 35 : ^(ARG_DEF type declarator)
|
t047treeparser.g | 27 : type declarator ';' -> ^(VAR_DEF type declarator) 30 declarator 40 : type declarator -> ^(ARG_DEF type declarator)
|
t017parser.g | 18 : type declarator ';' 21 declarator 30 : type declarator
|
t047treeparser.html | 70 '>declarator', '<declarator', '<variable', '<declaration', 71 '>declaration', '>variable', '>type', '<type', '>declarator', 72 '<declarator', '<variable', '<declaration', '>declaration', 74 '>type', '<type', '>declarator', '<declarator', 77 '>formalParameter', '>type', '<type', '>declarator', 78 '<declarator', '<formalParameter', '>formalParameter', '>type', 79 '<type', '>declarator', '<declarator', '<formalParameter' [all...] |
t018llstar.g | 36 : type declarator ';' 39 declarator 49 : type declarator
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleC.g | 27 : type declarator K_SEMICOLON -> ^(VAR_DEF type declarator) 30 declarator 40 : type declarator -> ^(ARG_DEF type declarator)
|
SimpleCTP.g | 24 : ^(VAR_DEF type declarator) 27 declarator 36 : ^(ARG_DEF type declarator)
|
/external/javassist/src/main/javassist/compiler/ |
SymbolTable.java | 19 import javassist.compiler.ast.Declarator; 33 public Declarator lookup(String name) { 34 Declarator found = (Declarator)get(name); 41 public void append(String name, Declarator value) {
|
/external/clang/test/SemaObjC/ |
severe-syntax-error.m | 13 // expected-error {{expected ';' after top level declarator}} 17 // expected-error {{expected ';' after top level declarator}} 21 // expected-error {{expected ';' after top level declarator}}
|
crash-on-objc-bool-literal.m | 7 EXPORT BOOL FUNC(BOOL enabled); // expected-error {{unknown type name 'EXPORT'}} // expected-error {{expected ';' after top level declarator}}
|
/external/clang/include/clang/Basic/ |
DeclNodes.td | 37 def Declarator : DDecl<Value, 1>; 38 def Field : DDecl<Declarator>; 41 def MSProperty : DDecl<Declarator>; 42 def Function : DDecl<Declarator>, DeclContext; 47 def Var : DDecl<Declarator>; 53 def NonTypeTemplateParm : DDecl<Declarator>;
|
/external/clang/test/Sema/ |
static-array.c | 25 typedef int td[static 3]; // expected-error {{'static' used in array declarator outside of function prototype}} 29 int a[static 42]; // expected-error {{'static' used in array declarator outside of function prototype}} 31 int b[const 10]; // expected-error {{type qualifier used in array declarator outside of function prototype}} 32 int c[volatile 10]; // expected-error {{type qualifier used in array declarator outside of function prototype}} 33 int d[restrict 10]; // expected-error {{type qualifier used in array declarator outside of function prototype}} 35 int e[static restrict 1]; // expected-error {{'static' used in array declarator outside of function prototype}}
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
simplec.g | 29 : type declarator ';' 32 declarator 45 : type declarator
|
/external/clang/test/Modules/ |
epic-fail.m | 8 // CHECK: error: expected ';' after top level declarator
|