Searched refs:super (Results 1 - 25 of 777) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMismatchedTreeNodeException.as8 super(input);
H A DMissingTokenException.as8 super(expecting, input);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleNodeStream.as10 super(adaptor, elementDescription, element);
/external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
H A DTestANTLRStringStream.as11 super();
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3baserecognizer.h69 /// Whatever super structure is providing this interface needs a pointer to itself
73 void * super; member in struct:ANTLR3_BASE_RECOGNIZER_struct
H A Dantlr3basetree.h56 void * super; member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3basetreeadaptor.h53 void * super; member in struct:ANTLR3_BASE_TREE_ADAPTOR_struct
H A Dantlr3commontree.h48 /// Not used by ANTLR, but if a super structure is created above
49 /// this structure, it can be used to point to the start of the super
52 void * super; member in struct:ANTLR3_COMMON_TREE_struct
H A Dantlr3commontreeadaptor.h52 void * super; member in struct:ANTLR3_COMMON_TREE_ADAPTOR_struct
H A Dantlr3commontreenodestream.h56 /// super structure containing this structure), may store the pointer
57 /// to itself here in the super pointer, which is not used by
147 /// super structure containing this structure), may store the pointer
148 /// to itself here in the super pointer, which is not used by
151 void * super; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
H A Dantlr3input.h63 /** Whatever super structure is providing the INPUT stream needs a pointer to itself
67 void * super; member in struct:ANTLR3_INPUT_STREAM_struct
H A Dantlr3intstream.h106 /** Pointer to the super structure that contains this interface. This
109 void * super; member in struct:ANTLR3_INT_STREAM_struct
H A Dantlr3lexer.h78 /** If there is a super structure that is implementing the
80 * implementing functions are overridden by this super structure.
82 void * super; member in struct:ANTLR3_LEXER_struct
H A Dantlr3parser.h50 * which they can reference using the super pointer here.
52 void * super; member in struct:ANTLR3_PARSER_struct
H A Dantlr3parsetree.h49 * super structure.
51 void * super; member in struct:ANTLR3_PARSE_TREE_struct
H A Dantlr3tokenstream.h85 void * super; member in struct:ANTLR3_TOKEN_SOURCE_struct
110 void * super; member in struct:ANTLR3_TOKEN_STREAM_struct
203 void * super; member in struct:ANTLR3_COMMON_TOKEN_STREAM_struct
H A Dantlr3treeparser.h48 /** Pointer to any super class
50 void * super; member in struct:ANTLR3_TREE_PARSER_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c293 lexer = (pANTLR3_LEXER) (recognizer->super);
301 parser = (pANTLR3_PARSER) (recognizer->super);
302 cts = (pANTLR3_COMMON_TOKEN_STREAM)(parser->tstream->super);
309 tparser = (pANTLR3_TREE_PARSER) (recognizer->super);
374 tnode = ((pANTLR3_COMMON_TREE)(((pANTLR3_BASE_TREE)(ex->token))->super));
427 parser = (pANTLR3_PARSER) (recognizer->super);
435 tparser = (pANTLR3_TREE_PARSER) (recognizer->super);
499 parser = (pANTLR3_PARSER) (recognizer->super);
507 tparser = (pANTLR3_TREE_PARSER) (recognizer->super);
657 parser = (pANTLR3_PARSER) (recognizer->super);
[all...]
H A Dantlr3commontree.c198 // The super points to the common tree so we must override the one used by
203 tree->baseTree.super = tree;
226 ((pANTLR3_COMMON_TREE)(newTree->super))->token = tree->token;
246 ((pANTLR3_COMMON_TREE)(newTree->super))->token = token;
299 tree->baseTree.super = tree;
376 tree->children = ((pANTLR3_COMMON_TREE)(tree->super))->factory->vFactory->newVector(((pANTLR3_COMMON_TREE)(tree->super))->factory->vFactory);
384 // so it is stored within ourselves, which is the super pointer.Note
387 // with its own super structure.
389 return ((pANTLR3_COMMON_TREE)(tree->super))
[all...]
H A Dantlr3commontreeadaptor.c147 // Install the super class pointer
149 cta->baseAdaptor.super = cta;
220 cta = (pANTLR3_COMMON_TREE_ADAPTOR)(adaptor->super);
224 cta->arboretum->close(((pANTLR3_COMMON_TREE_ADAPTOR)(adaptor->super))->arboretum);
230 /* Free the super pointer, as it is this that was allocated
233 ANTLR3_FREE(adaptor->super);
265 ct = ((pANTLR3_COMMON_TREE_ADAPTOR)(adaptor->super))->arboretum->newFromToken(((pANTLR3_COMMON_TREE_ADAPTOR)(adaptor->super))->arboretum, payload);
402 ct = (pANTLR3_COMMON_TREE)(t->super);
422 return ((pANTLR3_COMMON_TREE)(t->super))
[all...]
H A Dantlr3commontreenodestream.c219 stream->tnstream->istream->super = (stream->tnstream);
227 stream->super = NULL;
361 stream->tnstream->istream->super = (stream->tnstream);
369 stream->super = NULL;
620 tns = (pANTLR3_TREE_NODE_STREAM)(is->super);
636 tns = (pANTLR3_TREE_NODE_STREAM)(is->super);
661 tns = (pANTLR3_TREE_NODE_STREAM)(is->super);
708 tns = (pANTLR3_TREE_NODE_STREAM)(is->super);
720 tns = (pANTLR3_TREE_NODE_STREAM)(is->super);
736 tns = (pANTLR3_TREE_NODE_STREAM)(is->super);
[all...]
H A Dantlr3inputstream.c145 input->istream->super = input;
319 input = ((pANTLR3_INPUT_STREAM) (is->super));
354 input = ((pANTLR3_INPUT_STREAM) (is->super));
381 input = ((pANTLR3_INPUT_STREAM) (is->super));
420 input = ((pANTLR3_INPUT_STREAM) (is->super));
450 input = ((pANTLR3_INPUT_STREAM) (is->super));
516 input = ((pANTLR3_INPUT_STREAM) is->super);
554 input = ((pANTLR3_INPUT_STREAM) (is->super));
575 input = ANTLR3_FUNC_PTR(((pANTLR3_INPUT_STREAM) is->super));
784 input = ((pANTLR3_INPUT_STREAM) (is->super));
[all...]
H A Dantlr3lexer.c95 lexer->rec->super = lexer;
116 lexer->rec->state->tokSource->super = lexer;
179 lexer = rec->super;
205 /// addressed by the super structure pointer.
224 lexer = (pANTLR3_LEXER)(toksource->super);
316 * addressed by the super structure pointer.
355 lexer = (pANTLR3_LEXER)(toksource->super);
433 lexer = (pANTLR3_LEXER)(recognizer->super);
H A Dantlr3parser.c84 parser->rec->super = parser;
H A Dantlr3rewritestreams.c79 pANTLR3_VECTOR_FACTORY factory = ((pANTLR3_COMMON_TREE_ADAPTOR)(stream->adaptor->super))->arboretum->vFactory;
141 pANTLR3_VECTOR_FACTORY factory = ((pANTLR3_COMMON_TREE_ADAPTOR)(stream->adaptor->super))->arboretum->vFactory;
548 pANTLR3_VECTOR_FACTORY factory = ((pANTLR3_COMMON_TREE_ADAPTOR)(stream->adaptor->super))->arboretum->vFactory;

Completed in 2092 milliseconds

1234567891011>>