/external/v8/include/ |
D | v8config.h | 338 #define V8_DEPRECATED(message, declarator) \ argument 339 declarator __attribute__((deprecated(message))) 341 #define V8_DEPRECATED(message, declarator) \ argument 342 declarator __attribute__((deprecated)) 344 #define V8_DEPRECATED(message, declarator) __declspec(deprecated) declarator argument 346 #define V8_DEPRECATED(message, declarator) declarator argument 353 #define V8_DEPRECATE_SOON(message, declarator) \ argument 354 declarator __attribute__((deprecated(message))) 356 #define V8_DEPRECATE_SOON(message, declarator) \ argument 357 declarator __attribute__((deprecated)) [all …]
|
/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/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/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/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/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/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/v8/src/base/ |
D | macros.h | 191 #define INLINE(declarator) V8_INLINE declarator argument 192 #define NO_INLINE(declarator) V8_NOINLINE declarator argument
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
D | simplec.g | 29 : type declarator ';' 32 declarator 45 : type declarator
|
D | SimpleCParser.m | 511 * SimpleC.g:28:1: variable : type declarator ';' ; 519 // SimpleC.g:29:5: ( type declarator ';' ) // ruleBlockSingleAlt 520 // SimpleC.g:29:9: type declarator ';' // alt 532 [self declarator]; 560 * $ANTLR start declarator 561 * SimpleC.g:32:1: declarator : ID ; 563 - (void) declarator 591 /* $ANTLR end declarator */ 710 * SimpleC.g:44:1: formalParameter : type declarator ; 718 // SimpleC.g:45:5: ( type declarator ) // ruleBlockSingleAlt [all …]
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 138 Declarator &declarator; member in __anon9acaebf90111::TypeProcessingState 159 TypeProcessingState(Sema &sema, Declarator &declarator) in TypeProcessingState() argument 160 : sema(sema), declarator(declarator), in TypeProcessingState() 161 chunkIndex(declarator.getNumTypeObjects()), in TypeProcessingState() 169 return declarator; in getDeclarator() 173 return chunkIndex == declarator.getNumTypeObjects(); in isProcessingDeclSpec() 181 assert(idx <= declarator.getNumTypeObjects()); in setCurrentChunkIndex() 188 return declarator.getTypeObject(chunkIndex).getAttrListRef(); in getCurrentAttrListRef() 225 return const_cast<DeclSpec&>(declarator.getDeclSpec()); in getMutableDeclSpec() 318 static DeclaratorChunk *maybeMovePastReturnType(Declarator &declarator, in maybeMovePastReturnType() argument [all …]
|
/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/bison/tests/ |
D | cxx-type.at | 78 %destructor { free_node ($$); } stmt expr decl declarator TYPENAME ID 108 decl : TYPENAME declarator ';' 110 | TYPENAME declarator '=' expr ';' 115 declarator : ID 116 | '(' declarator ')' { $$ = ]$[2; }
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
D | SimpleCTP.m | 427 …me/Framework/examples/simplecTreeParser/SimpleCTP.g:23:1: variable : ^( VAR_DEF type declarator ) ; 434 …amework/examples/simplecTreeParser/SimpleCTP.g:24:5: ( ^( VAR_DEF type declarator ) ) // ruleBlock… 435 …-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:24:9: ^( VAR_DEF type declarator ) // alt 446 [self declarator]; 467 * $ANTLR start declarator 468 …l/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:27:1: declarator : K_ID ; 470 - (void) declarator 492 /* $ANTLR end declarator */ 565 …ework/examples/simplecTreeParser/SimpleCTP.g:35:1: formalParameter : ^( ARG_DEF type declarator ) ; 572 …amework/examples/simplecTreeParser/SimpleCTP.g:36:5: ( ^( ARG_DEF type declarator ) ) // ruleBlock… [all …]
|