HomeSort by relevance Sort by last modified time
    Searched defs:declarator (Results 1 - 15 of 15) sorted by null

  /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();
  /prebuilts/gcc/darwin-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/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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
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.java 304 // SimpleC.g:26:1: variable : type declarator ';' -> ^( VAR_DEF type declarator ) ;
319 RewriteRuleSubtreeStream stream_declarator=new RewriteRuleSubtreeStream(adaptor,"rule declarator");
322 // SimpleC.g:27:5: ( type declarator ';' -> ^( VAR_DEF type declarator ) )
323 // SimpleC.g:27:9: type declarator ';'
332 declarator8=declarator();
343 // elements: declarator, type
353 // 27:29: -> ^( VAR_DEF type declarator )
355 // SimpleC.g:27:32: ^( VAR_DEF type declarator )
396 public final SimpleCParser.declarator_return declarator() throws RecognitionException { method in class:SimpleCParser
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
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.java 304 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:26:1: variable : type declarator ';' -> ^( VAR_DEF type declarator ) ;
319 RewriteRuleSubtreeStream stream_declarator=new RewriteRuleSubtreeStream(adaptor,"rule declarator");
322 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:27:5: ( type declarator ';' -> ^( VAR_DEF type declarator ) )
323 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:27:9: type declarator ';'
332 declarator8=declarator();
343 // elements: type, declarator
353 // 27:29: -> ^( VAR_DEF type declarator )
355 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:27:32: ^( VAR_DEF type declarator )
396 public final SimpleCParser.declarator_return declarator() throws RecognitionException { method in class:SimpleCParser
    [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 ||
118 /// The declarator being processed.
119 Declarator &declarator; member in class:__anon5914::TypeProcessingState
121 /// The index of the declarator chunk we're currently processing.
140 TypeProcessingState(Sema &sema, Declarator &declarator)
141 : sema(sema), declarator(declarator)
376 Declarator &declarator = state.getDeclarator(); local
430 Declarator &declarator = state.getDeclarator(); local
491 Declarator &declarator = state.getDeclarator(); local
524 Declarator &declarator = state.getDeclarator(); local
577 Declarator &declarator = state.getDeclarator(); local
638 Declarator &declarator = state.getDeclarator(); local
706 Declarator &declarator = state.getDeclarator(); local
1782 Declarator &declarator = state.getDeclarator(); local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
cp-tree.h 4521 cp_declarator *declarator; member in struct:cp_parameter_declarator
4541 cp_declarator *declarator; member in struct:cp_declarator
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.h 4521 cp_declarator *declarator; member in struct:cp_parameter_declarator
4541 cp_declarator *declarator; member in struct:cp_declarator
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
cp-tree.h 4521 cp_declarator *declarator; member in struct:cp_parameter_declarator
4541 cp_declarator *declarator; member in struct:cp_declarator
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.h 4521 cp_declarator *declarator; member in struct:cp_parameter_declarator
4541 cp_declarator *declarator; member in struct:cp_declarator
    [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 658 milliseconds