/external/javassist/src/main/javassist/compiler/ast/ |
D | Variable.java | 24 protected Declarator declarator; field in Variable 28 declarator = d; in Variable() 31 public Declarator getDeclarator() { return declarator; } in getDeclarator() 34 return identifier + ":" + declarator.getType(); in toString()
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t047treeparser.g | 27 : type declarator ';' -> ^(VAR_DEF type declarator) 30 declarator 40 : type declarator -> ^(ARG_DEF type declarator)
|
D | t047treeparserWalker.g | 19 : ^(VAR_DEF type declarator) 21 $res = $declarator.text; 25 declarator 34 : ^(ARG_DEF type declarator)
|
D | t017parser.g | 18 : type declarator ';' 21 declarator 30 : type declarator
|
D | t033backtracking.g | 52 * recursion in the declarator rules. I'm putting in a 66 : ( declaration_specifiers? declarator declaration* '{' )=> function_definition 75 : declaration_specifiers? declarator 105 : declarator //('=' initializer)? 167 // : declarator (':' constant_expression)? 191 declarator 203 | '(' declarator ')' 231 // : declaration_specifiers (declarator|abstract_declarator)*
|
D | t018llstar.g | 37 : type declarator ';' 40 declarator 50 : type declarator
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t047treeparser.g | 27 : type declarator ';' -> ^(VAR_DEF type declarator) 30 declarator 40 : type declarator -> ^(ARG_DEF type declarator)
|
D | t047treeparserWalker.g | 20 : ^(VAR_DEF type declarator) 22 $res = $declarator.text; 26 declarator 35 : ^(ARG_DEF type declarator)
|
D | t017parser.g | 18 : type declarator ';' 21 declarator 30 : type declarator
|
D | t033backtracking.g | 36 * recursion in the declarator rules. I'm putting in a 50 : ( declaration_specifiers? declarator declaration* '{' )=> function_definition 59 : declaration_specifiers? declarator 89 : declarator //('=' initializer)? 151 // : declarator (':' constant_expression)? 175 declarator 188 | '(' declarator ')' 216 // : declaration_specifiers (declarator|abstract_declarator)*
|
D | t018llstar.g | 36 : type declarator ';' 39 declarator 49 : type declarator
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
D | SimpleC.g | 27 : type declarator K_SEMICOLON -> ^(VAR_DEF type declarator) 30 declarator 40 : type declarator -> ^(ARG_DEF type declarator)
|
D | SimpleCTP.g | 24 : ^(VAR_DEF type declarator) 27 declarator 36 : ^(ARG_DEF type declarator)
|
D | SimpleCTP.m | 459 * SimpleCTP.g:23:1: variable : ^( VAR_DEF type declarator ) ; 467 // SimpleCTP.g:24:5: ( ^( VAR_DEF type declarator ) ) // ruleBlockSingleAlt 468 // SimpleCTP.g:24:9: ^( VAR_DEF type declarator ) // alt 483 [self declarator]; 511 * $ANTLR start declarator 512 * SimpleCTP.g:27:1: declarator : K_ID ; 514 - (void) declarator 541 /* $ANTLR end declarator */ 629 * SimpleCTP.g:35:1: formalParameter : ^( ARG_DEF type declarator ) ; 637 // SimpleCTP.g:36:5: ( ^( ARG_DEF type declarator ) ) // ruleBlockSingleAlt [all …]
|
/external/chromium_org/v8/include/ |
D | v8config.h | 328 # define V8_DEPRECATED(message, declarator) \ argument 329 declarator __attribute__((deprecated(message))) 331 # define V8_DEPRECATED(message, declarator) \ argument 332 declarator __attribute__((deprecated)) 334 # define V8_DEPRECATED(message, declarator) __declspec(deprecated) declarator argument 336 # define V8_DEPRECATED(message, declarator) declarator argument
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
D | LangDumpDecl.g | 8 decl : ^(DECL type declarator) 10 { NSLog(@"int \%@", $declarator.text);} 15 declarator
|
D | LangDumpDecl.m | 130 * LangDumpDecl.g:8:1: decl : ^( DECL type declarator ) ; 141 // LangDumpDecl.g:8:6: ( ^( DECL type declarator ) ) // ruleBlockSingleAlt 142 // LangDumpDecl.g:8:8: ^( DECL type declarator ) // alt 157 declarator1 = [self declarator]; 221 * $ANTLR start declarator 222 * LangDumpDecl.g:15:1: declarator : ID ; 224 - (LangDumpDecl_declarator_return *) declarator 255 /* $ANTLR end declarator */
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
D | ir.py | 801 for declarator in self: 802 assert isinstance(declarator,Declarator) 806 declarator.append(spec) 984 declarator=self[i] 986 assert isinstance(declarator,Declarator) 990 declarator.transform() 992 if verbose: print declarator.deepstr(),'\n' 996 self[i] = declarator = self.visit_declarator(declarator) 999 if declarator.name: 1000 if isinstance(declarator, Typedef): [all …]
|
/external/clang/test/SemaObjC/ |
D | 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}}
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
D | simplec.g | 29 : type declarator ';' 32 declarator 45 : type declarator
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 129 Declarator &declarator; member in __anon206126430111::TypeProcessingState 150 TypeProcessingState(Sema &sema, Declarator &declarator) in TypeProcessingState() argument 151 : sema(sema), declarator(declarator), in TypeProcessingState() 152 chunkIndex(declarator.getNumTypeObjects()), in TypeProcessingState() 160 return declarator; in getDeclarator() 164 return chunkIndex == declarator.getNumTypeObjects(); in isProcessingDeclSpec() 172 assert(idx <= declarator.getNumTypeObjects()); in setCurrentChunkIndex() 179 return declarator.getTypeObject(chunkIndex).getAttrListRef(); in getCurrentAttrListRef() 218 return const_cast<DeclSpec&>(declarator.getDeclSpec()); in getMutableDeclSpec() 328 static DeclaratorChunk *maybeMovePastReturnType(Declarator &declarator, in maybeMovePastReturnType() argument [all …]
|
/external/clang/test/SemaObjCXX/ |
D | crash.mm | 19 …typedef std::pair<int, int> IntegerPair; // expected-error{{typedef declarator cannot be qualified… 21 // expected-error{{expected ';' after top level declarator}}
|
/external/chromium_org/v8/src/ |
D | globals.h | 359 #define INLINE(declarator) V8_INLINE declarator argument 360 #define NO_INLINE(declarator) V8_NOINLINE declarator argument
|
/external/clang/test/Modules/ |
D | build-fail-notes.m | 8 // CHECK: error: expected ';' after top level declarator 24 // CHECK-SDIAG: Module.h:9:13: error: expected ';' after top level declarator
|
/external/chromium_org/tools/gyp/tools/Xcode/Specifications/ |
D | gyp.xclangspec | 36 Identifier = "xcode.lang.gyp.target.declarator"; 88 'xcode.lang.gyp.targetname.declarator', 123 "xcode.lang.gyp.target.declarator",
|