Home
last modified time | relevance | path

Searched refs:declarator (Results 1 – 25 of 60) sorted by relevance

123

/external/javassist/src/main/javassist/compiler/ast/
DVariable.java24 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/
Dt047treeparser.g27 : type declarator ';' -> ^(VAR_DEF type declarator)
30 declarator
40 : type declarator -> ^(ARG_DEF type declarator)
Dt047treeparserWalker.g19 : ^(VAR_DEF type declarator)
21 $res = $declarator.text;
25 declarator
34 : ^(ARG_DEF type declarator)
Dt017parser.g18 : type declarator ';'
21 declarator
30 : type declarator
Dt033backtracking.g52 * 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)*
Dt018llstar.g37 : type declarator ';'
40 declarator
50 : type declarator
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt047treeparser.g27 : type declarator ';' -> ^(VAR_DEF type declarator)
30 declarator
40 : type declarator -> ^(ARG_DEF type declarator)
Dt047treeparserWalker.g20 : ^(VAR_DEF type declarator)
22 $res = $declarator.text;
26 declarator
35 : ^(ARG_DEF type declarator)
Dt017parser.g18 : type declarator ';'
21 declarator
30 : type declarator
Dt033backtracking.g36 * 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)*
Dt018llstar.g36 : type declarator ';'
39 declarator
49 : type declarator
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleC.g27 : type declarator K_SEMICOLON -> ^(VAR_DEF type declarator)
30 declarator
40 : type declarator -> ^(ARG_DEF type declarator)
DSimpleCTP.g24 : ^(VAR_DEF type declarator)
27 declarator
36 : ^(ARG_DEF type declarator)
DSimpleCTP.m459 * 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/
Dv8config.h328 # 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/
DLangDumpDecl.g8 decl : ^(DECL type declarator)
10 { NSLog(@"int \%@", $declarator.text);}
15 declarator
DLangDumpDecl.m130 * 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/
Dir.py801 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/
Dsevere-syntax-error.m13 // 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/
Dsimplec.g29 : type declarator ';'
32 declarator
45 : type declarator
/external/clang/lib/Sema/
DSemaType.cpp129 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/
Dcrash.mm19 …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/
Dglobals.h359 #define INLINE(declarator) V8_INLINE declarator argument
360 #define NO_INLINE(declarator) V8_NOINLINE declarator argument
/external/clang/test/Modules/
Dbuild-fail-notes.m8 // 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/
Dgyp.xclangspec36 Identifier = "xcode.lang.gyp.target.declarator";
88 'xcode.lang.gyp.targetname.declarator',
123 "xcode.lang.gyp.target.declarator",

123