HomeSort by relevance Sort by last modified time
    Searched refs:declarator (Results 1 - 25 of 31) 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/v8/include/
v8config.h 325 # define V8_DEPRECATED(message, declarator) \
326 declarator __attribute__((deprecated(message)))
328 # define V8_DEPRECATED(message, declarator) \
329 declarator __attribute__((deprecated))
331 # define V8_DEPRECATED(message, declarator) __declspec(deprecated) declarator
333 # define V8_DEPRECATED(message, declarator) declarator
  /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/v8/src/base/
macros.h 261 #define INLINE(declarator) V8_INLINE declarator
262 #define NO_INLINE(declarator) V8_NOINLINE 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...]
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.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 45 /// isOmittedBlockReturnType - Return true if this declarator is missing a
47 static bool isOmittedBlockReturnType(const Declarator &D) {
48 if (D.getContext() != Declarator::BlockLiteralContext ||
130 /// The declarator being processed.
131 Declarator &declarator; member in class:__anon5576::TypeProcessingState
133 /// The index of the declarator chunk we're currently processing.
152 TypeProcessingState(Sema &sema, Declarator &declarator)
153 : sema(sema), declarator(declarator)
372 Declarator &declarator = state.getDeclarator(); local
426 Declarator &declarator = state.getDeclarator(); local
487 Declarator &declarator = state.getDeclarator(); local
520 Declarator &declarator = state.getDeclarator(); local
568 Declarator &declarator = state.getDeclarator(); local
633 Declarator &declarator = state.getDeclarator(); local
702 Declarator &declarator = state.getDeclarator(); local
1920 Declarator &declarator = state.getDeclarator(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/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/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
c-tree.h 220 /* This enum lists all the possible declarator specifiers, storage
222 enumerator per possible declarator specifier in the struct
350 /* Parenthesized declarator with nested attributes. */
362 /* Information about the parameters in a function declarator. */
383 /* A declarator. */
385 /* The kind of declarator. */
388 /* Except for cdk_id, the contained declarator. For cdk_id, NULL. */
389 struct c_declarator *declarator; member in struct:c_declarator
392 declarator. */
420 /* The declarator. *
421 struct c_declarator *declarator; member in struct:c_type_name
431 struct c_declarator *declarator; member in struct:c_parm
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp 460 // Install the property declarator into interfaceDecl.
783 Declarator::TheContext Context) {
784 assert(Context == Declarator::ObjCParameterContext ||
785 Context == Declarator::ObjCResultContext);
790 Context == Declarator::ObjCParameterContext);
833 // destroying the internal invariants of the declarator here,
842 /// declarator and add them to the given list.
844 Declarator &D) {
862 Declarator::TheContext context,
864 assert(context == Declarator::ObjCParameterContext |
    [all...]

Completed in 607 milliseconds

1 2