/external/v8/include/ |
D | v8config.h | 325 #define V8_DEPRECATED(message, declarator) \ argument 326 declarator __attribute__((deprecated(message))) 328 #define V8_DEPRECATED(message, declarator) \ argument 329 declarator __attribute__((deprecated)) 331 #define V8_DEPRECATED(message, declarator) __declspec(deprecated) declarator argument 333 #define V8_DEPRECATED(message, declarator) declarator argument 340 #define V8_DEPRECATE_SOON(message, declarator) \ argument 341 declarator __attribute__((deprecated(message))) 343 #define V8_DEPRECATE_SOON(message, declarator) \ argument 344 declarator __attribute__((deprecated)) [all …]
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/removenode/ |
D | ModifierVisitorTest.java | 49 public Node visit(VariableDeclarator declarator, Void args) { in visit() argument 50 if (declarator.getNameAsString().equals("a") in visit() 52 && declarator.getInitializer().isPresent()) { in visit() 53 Expression expression = declarator.getInitializer().get(); in visit() 63 return declarator; in visit()
|
/external/antlr/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 | 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 | t017parser.g | 18 : type declarator ';' 21 declarator 30 : type declarator
|
/external/antlr/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 | 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 | t017parser.g | 18 : type declarator ';' 21 declarator 30 : type declarator
|
/external/antlr/runtime/Python3/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 | t033backtracking.g | 33 * recursion in the declarator rules. I'm putting in a 47 : ( declaration_specifiers? declarator declaration* '{' )=> function_definition 56 : declaration_specifiers? declarator 86 : declarator //('=' initializer)? 148 // : declarator (':' constant_expression)? 172 declarator 184 | '(' declarator ')' 212 // : declaration_specifiers (declarator|abstract_declarator)*
|
D | t017parser.g | 18 : type declarator ';' 21 declarator 30 : type declarator
|
/external/antlr/runtime/Cpp/tests/ |
D | t047treeparser.g | 40 : type declarator ';' -> ^(VAR_DEF type declarator) 43 declarator 53 : type declarator -> ^(ARG_DEF type declarator)
|
D | t047treeparserWalker.g | 25 : ^(VAR_DEF type declarator) 27 $res = $declarator.text; 31 declarator 40 : ^(ARG_DEF type declarator)
|
D | t033backtracking.g | 46 * recursion in the declarator rules. I'm putting in a 60 : ( declaration_specifiers? declarator declaration* '{' )=> function_definition 69 : declaration_specifiers? declarator 99 : declarator //('=' initializer)? 161 // : declarator (':' constant_expression)? 185 declarator 197 | '(' declarator ')' 225 // : declaration_specifiers (declarator|abstract_declarator)*
|
D | t017parser.g | 31 : type declarator ';' 34 declarator 43 : type declarator
|
/external/antlr/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 | SimpleCWalker.g | 24 : ^(VAR_DEF type declarator) 27 declarator 36 : ^(ARG_DEF type declarator)
|
D | SimpleCTP.g | 24 : ^(VAR_DEF type declarator) 27 declarator 36 : ^(ARG_DEF type declarator)
|
/external/antlr/runtime/ObjC/Framework/examples/treeparser/ |
D | LangDumpDecl.g | 8 decl : ^(DECL type declarator) 10 { NSLog(@"int \%@", $declarator.text);} 15 declarator
|
D | LangDumpDecl.m | 118 …3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:8:1: decl : ^( DECL type declarator ) ; 131 …/ObjC/Framework/examples/treeparser/LangDumpDecl.g:8:6: ( ^( DECL type declarator ) ) // ruleBlock… 132 …lr3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:8:8: ^( DECL type declarator ) // alt 150 declarator1 = [self declarator]; 220 * $ANTLR start declarator 221 …antlr/code/antlr3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:15:1: declarator : ID ; 223 - (LangDumpDecl_declarator_return *) declarator 258 /* $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/deqp-deps/glslang/hlsl/ |
D | hlslGrammar.cpp | 358 TFunctionDeclarator declarator; in acceptDeclaration() local 359 acceptAttributes(declarator.attributes); in acceptDeclaration() 377 … if (! acceptFullySpecifiedType(declaredType, nodeList, declarator.attributes, forbidDeclarators)) in acceptDeclaration() 398 … parseContext.transferTypeAttributes(token.loc, declarator.attributes, declaredType, true); in acceptDeclaration() 404 declarator.function = new TFunction(fullName, declaredType); in acceptDeclaration() 405 if (!acceptFunctionParameters(*declarator.function)) { in acceptDeclaration() 411 acceptPostDecls(declarator.function->getWritableType().getQualifier()); in acceptDeclaration() 414 declarator.loc = token.loc; in acceptDeclaration() 420 return acceptFunctionDefinition(declarator, nodeList, nullptr); in acceptDeclaration() 424 parseContext.handleFunctionDeclarator(declarator.loc, *declarator.function, true); in acceptDeclaration() [all …]
|