HomeSort by relevance Sort by last modified time
    Searched refs:declarator (Results 1 - 25 of 34) sorted by null

1 2

  /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();
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
ll-star.rb 41 : type declarator ';'
44 declarator
54 : type declarator
basic.rb 184 : type declarator ';'
187 declarator
196 : type declarator
backtracking.rb 45 * recursion in the declarator rules. I'm putting in a
59 : ( declaration_specifiers? declarator declaration* '{' )=> function_definition
68 : declaration_specifiers? declarator
95 : declarator //('=' initializer)?
127 declarator
139 | '(' declarator ')'
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.h 85 - (LangDumpDecl_declarator_return *)declarator;
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/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
basic.rb 492 : type declarator ';' -> ^(VAR_DEF type declarator)
495 declarator
505 : type declarator -> ^(ARG_DEF type declarator)
613 : ^(VAR_DEF type declarator)
615 $res = $declarator.text;
619 declarator
628 : ^(ARG_DEF type declarator)
707 <type >declarator <declarator <variable
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
profile-mode.rb 34 : type declarator ';'
37 declarator
46 : type declarator
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.h 94 - (void)declarator;
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 ) // ruleBlockSingleAl
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.h 128 - (void)declarator;
SimpleCTP.java 204 // SimpleCTP.g:18:1: variable : ^( VAR_DEF type declarator ) ;
207 // SimpleCTP.g:19:5: ( ^( VAR_DEF type declarator ) )
208 // SimpleCTP.g:19:9: ^( VAR_DEF type declarator )
219 declarator(); method
240 // $ANTLR start "declarator"
241 // SimpleCTP.g:22:1: declarator : ID ;
242 public final void declarator() throws RecognitionException { method in class:SimpleCTP
260 // $ANTLR end "declarator"
331 // SimpleCTP.g:30:1: formalParameter : ^( ARG_DEF type declarator ) ;
334 // SimpleCTP.g:31:5: ( ^( ARG_DEF type declarator ) )
346 declarator(); method
    [all...]
SimpleCParser.h 400 - (SimpleCParser_declarator_return *)declarator;
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 ) ) // ruleBlockSingleAl
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.h 91 - (void)declarator;
SimpleCTP.java 204 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:18:1: variable : ^( VAR_DEF type declarator ) ;
207 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:19:5: ( ^( VAR_DEF type declarator ) )
208 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:19:9: ^( VAR_DEF type declarator )
219 declarator(); method
240 // $ANTLR start "declarator"
241 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:22:1: declarator : ID ;
242 public final void declarator() throws RecognitionException { method in class:SimpleCTP
260 // $ANTLR end "declarator"
331 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:30:1: formalParameter : ^( ARG_DEF type declarator ) ;
334 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:31:5: ( ^( ARG_DEF type declarator ) )
346 declarator(); method
    [all...]
SimpleCParser.h 286 - (SimpleCParser_declarator_return *)declarator;
SimpleCTP.m 427 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:23:1: variable : ^( VAR_DEF type declarator ) ;
434 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:24:5: ( ^( VAR_DEF type declarator ) ) // ruleBlockSingleAlt
435 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:24:9: ^( VAR_DEF type declarator ) // alt
446 [self declarator];
467 * $ANTLR start declarator
468 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:27:1: declarator : K_ID ;
470 - (void) declarator
492 /* $ANTLR end declarator */
565 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:35:1: formalParameter : ^( ARG_DEF type declarator ) ;
572 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:36:5: ( ^( ARG_DEF type declarator ) ) // ruleBlockSingleAl
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp 37 /// isOmittedBlockReturnType - Return true if this declarator is missing a
39 static bool isOmittedBlockReturnType(const Declarator &D) {
40 if (D.getContext() != Declarator::BlockLiteralContext ||
116 /// The declarator being processed.
117 Declarator &declarator; member in class:__anon4909::TypeProcessingState
119 /// The index of the declarator chunk we're currently processing.
138 TypeProcessingState(Sema &sema, Declarator &declarator)
139 : sema(sema), declarator(declarator)
301 Declarator &declarator = state.getDeclarator(); local
333 Declarator &declarator = state.getDeclarator(); local
394 Declarator &declarator = state.getDeclarator(); local
427 Declarator &declarator = state.getDeclarator(); local
471 Declarator &declarator = state.getDeclarator(); local
527 Declarator &declarator = state.getDeclarator(); local
584 Declarator &declarator = state.getDeclarator(); local
1633 Declarator &declarator = state.getDeclarator(); local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
c-pretty-print.h 67 c_pretty_print_fn declarator; member in struct:c_pretty_print_info
111 pp_c_base (PPI)->declarator (pp_c_base (PPI), D)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 68 c_pretty_print_fn declarator; member in struct:c_pretty_print_info
112 pp_c_base (PPI)->declarator (pp_c_base (PPI), D)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 68 c_pretty_print_fn declarator; member in struct:c_pretty_print_info
112 pp_c_base (PPI)->declarator (pp_c_base (PPI), D)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 68 c_pretty_print_fn declarator; member in struct:c_pretty_print_info
112 pp_c_base (PPI)->declarator (pp_c_base (PPI), D)
  /external/mesa3d/src/glsl/
ast.h 595 ast_declarator_list *declarator; member in union:ast_declaration_statement::__anon9699
  /external/clang/lib/Parse/
ParseObjc.cpp 323 // Install the property declarator into interfaceDecl.
795 Declarator::TheContext Context) {
796 assert(Context == Declarator::ObjCParameterContext ||
797 Context == Declarator::ObjCResultContext);
802 Context == Declarator::ObjCParameterContext);
845 // destroying the internal invariants of the declarator here,
854 /// declarator and add them to the given list.
856 Declarator &D) {
874 Declarator::TheContext context,
876 assert(context == Declarator::ObjCParameterContext |
    [all...]

Completed in 569 milliseconds

1 2