OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pANTLR3_BASE_TREE
(Results
1 - 16
of
16
) sorted by null
/external/antlr/antlr-3.4/runtime/C/include/
antlr3commontreenodestream.h
78
pANTLR3_BASE_TREE
(*_LT) (struct ANTLR3_TREE_NODE_STREAM_struct * tns, ANTLR3_INT32 k);
83
pANTLR3_BASE_TREE
(*getTreeSource) (struct ANTLR3_TREE_NODE_STREAM_struct * tns);
106
pANTLR3_STRING (*toStringSS) (struct ANTLR3_TREE_NODE_STREAM_struct * tns,
pANTLR3_BASE_TREE
start,
pANTLR3_BASE_TREE
stop);
115
void (*toStringWork) (struct ANTLR3_TREE_NODE_STREAM_struct * tns,
pANTLR3_BASE_TREE
start,
pANTLR3_BASE_TREE
stop, pANTLR3_STRING buf);
125
pANTLR3_BASE_TREE
(*get) (struct ANTLR3_TREE_NODE_STREAM_struct * tns, ANTLR3_INT32 i);
139
void (*replaceChildren) (struct ANTLR3_TREE_NODE_STREAM_struct * tns,
pANTLR3_BASE_TREE
parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex,
pANTLR3_BASE_TREE
t);
203
pANTLR3_BASE_TREE
root
[
all
...]
antlr3debugeventlistener.h
301
* is always fixed as
pANTLR3_BASE_TREE
because all such structures
308
void (*consumeNode) (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
314
void (*LTT) (pANTLR3_DEBUG_EVENT_LISTENER delboy, int i,
pANTLR3_BASE_TREE
t);
328
void (*nilNode) (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
334
void (*errorNode) (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
342
void (*createNode) (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
350
void (*createNodeTok) (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
node, pANTLR3_COMMON_TOKEN token);
368
void (*becomeRoot) (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
newRoot,
pANTLR3_BASE_TREE
oldRoot);
377
void (*addChild) (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
root, pANTLR3_BASE_TREE child)
[
all
...]
antlr3commontree.h
151
pANTLR3_BASE_TREE
(*newTree) (struct ANTLR3_ARBORETUM_struct * factory);
152
pANTLR3_BASE_TREE
(*newFromTree) (struct ANTLR3_ARBORETUM_struct * factory, pANTLR3_COMMON_TREE tree);
153
pANTLR3_BASE_TREE
(*newFromToken) (struct ANTLR3_ARBORETUM_struct * factory, pANTLR3_COMMON_TOKEN token);
antlr3parsetree.h
64
pANTLR3_BASE_TREE
(*dupNode) (struct ANTLR3_PARSE_TREE_struct * tree);
antlr3rewritestreams.h
46
/// the same type:
pANTLR3_BASE_TREE
. Anything that has subclassed from this
110
/// Add a new
pANTLR3_BASE_TREE
to this stream
118
pANTLR3_BASE_TREE
(*nextTree) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream);
131
pANTLR3_BASE_TREE
(*toTree) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream, void * el);
146
pANTLR3_BASE_TREE
(*nextNode) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream);
antlr3interfaces.h
165
typedef struct ANTLR3_BASE_TREE_struct *
pANTLR3_BASE_TREE
;
antlr3defs.h
587
ANTLR3_API
pANTLR3_BASE_TREE
antlr3BaseTreeNew (
pANTLR3_BASE_TREE
tree);
597
ANTLR3_API pANTLR3_COMMON_TREE_NODE_STREAM antlr3CommonTreeNodeStreamNewTree (
pANTLR3_BASE_TREE
tree, ANTLR3_UINT32 hint);
599
ANTLR3_API pANTLR3_COMMON_TREE_NODE_STREAM antlr3UnbufTreeNodeStreamNewTree (
pANTLR3_BASE_TREE
tree, ANTLR3_UINT32 hint);
/external/antlr/antlr-3.4/runtime/C/src/
antlr3basetreeadaptor.c
44
static
pANTLR3_BASE_TREE
nilNode (pANTLR3_BASE_TREE_ADAPTOR adaptor);
45
static
pANTLR3_BASE_TREE
dbgNil (pANTLR3_BASE_TREE_ADAPTOR adaptor);
46
static
pANTLR3_BASE_TREE
dupTree (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t);
47
static
pANTLR3_BASE_TREE
dbgDupTree (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t);
48
static
pANTLR3_BASE_TREE
dupTreeTT (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t,
pANTLR3_BASE_TREE
parent);
49
static void addChild (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t, pANTLR3_BASE_TREE child)
[
all
...]
antlr3commontreeadaptor.c
46
static
pANTLR3_BASE_TREE
dupNode (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
treeNode);
47
static
pANTLR3_BASE_TREE
create (pANTLR3_BASE_TREE_ADAPTOR adpator, pANTLR3_COMMON_TOKEN payload);
48
static
pANTLR3_BASE_TREE
dbgCreate (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_COMMON_TOKEN payload);
51
static pANTLR3_COMMON_TOKEN getToken (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t);
52
static pANTLR3_STRING getText (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t);
53
static ANTLR3_UINT32 getType (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t);
54
static
pANTLR3_BASE_TREE
getChild (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t, ANTLR3_UINT32 i);
55
static ANTLR3_UINT32 getChildCount (pANTLR3_BASE_TREE_ADAPTOR adaptor,
pANTLR3_BASE_TREE
t)
[
all
...]
antlr3basetree.c
36
static void * getChild (
pANTLR3_BASE_TREE
tree, ANTLR3_UINT32 i);
37
static ANTLR3_UINT32 getChildCount (
pANTLR3_BASE_TREE
tree);
39
(
pANTLR3_BASE_TREE
tree);
40
static ANTLR3_UINT32 getLine (
pANTLR3_BASE_TREE
tree);
41
static
pANTLR3_BASE_TREE
43
(
pANTLR3_BASE_TREE
tree, ANTLR3_UINT32 type);
44
static void addChild (
pANTLR3_BASE_TREE
tree,
pANTLR3_BASE_TREE
child);
45
static void addChildren (
pANTLR3_BASE_TREE
tree, pANTLR3_LIST kids);
46
static void replaceChildren (
pANTLR3_BASE_TREE
parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t)
[
all
...]
antlr3commontree.c
41
static pANTLR3_COMMON_TOKEN getToken (
pANTLR3_BASE_TREE
tree);
42
static
pANTLR3_BASE_TREE
dupNode (
pANTLR3_BASE_TREE
tree);
43
static ANTLR3_BOOLEAN isNilNode (
pANTLR3_BASE_TREE
tree);
44
static ANTLR3_UINT32 getType (
pANTLR3_BASE_TREE
tree);
45
static pANTLR3_STRING getText (
pANTLR3_BASE_TREE
tree);
46
static ANTLR3_UINT32 getLine (
pANTLR3_BASE_TREE
tree);
47
static ANTLR3_UINT32 getCharPositionInLine (
pANTLR3_BASE_TREE
tree);
48
static pANTLR3_STRING toString (
pANTLR3_BASE_TREE
tree);
49
static
pANTLR3_BASE_TREE
getParent (pANTLR3_BASE_TREE tree)
[
all
...]
antlr3rewritestreams.c
43
static
pANTLR3_BASE_TREE
nextTree (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
49
static
pANTLR3_BASE_TREE
toTree (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * element);
50
static
pANTLR3_BASE_TREE
toTreeNode (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * element);
52
static
pANTLR3_BASE_TREE
nextNode (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
53
static
pANTLR3_BASE_TREE
nextNodeNode (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
54
static
pANTLR3_BASE_TREE
nextNodeToken (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
110
pANTLR3_BASE_TREE
tree;
128
tree = (
pANTLR3_BASE_TREE
)(stream->elements->elements[i-1].element);
156
tree = (
pANTLR3_BASE_TREE
)(stream->singleElement);
516
// Add a new
pANTLR3_BASE_TREE
to this strea
[
all
...]
antlr3commontreenodestream.c
45
static
pANTLR3_BASE_TREE
newDownNode (pANTLR3_COMMON_TREE_NODE_STREAM ctns);
46
static
pANTLR3_BASE_TREE
newUpNode (pANTLR3_COMMON_TREE_NODE_STREAM ctns);
55
static
pANTLR3_BASE_TREE
getTreeSource (pANTLR3_TREE_NODE_STREAM tns);
56
static
pANTLR3_BASE_TREE
_LT (pANTLR3_TREE_NODE_STREAM tns, ANTLR3_INT32 k);
57
static
pANTLR3_BASE_TREE
get (pANTLR3_TREE_NODE_STREAM tns, ANTLR3_INT32 k);
60
static pANTLR3_STRING toStringSS (pANTLR3_TREE_NODE_STREAM tns,
pANTLR3_BASE_TREE
start,
pANTLR3_BASE_TREE
stop);
61
static void toStringWork (pANTLR3_TREE_NODE_STREAM tns,
pANTLR3_BASE_TREE
start,
pANTLR3_BASE_TREE
stop, pANTLR3_STRING buf);
62
static void replaceChildren (pANTLR3_TREE_NODE_STREAM tns,
pANTLR3_BASE_TREE
parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t)
[
all
...]
antlr3debughandlers.c
78
static void consumeNode (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
79
static void LTT (pANTLR3_DEBUG_EVENT_LISTENER delboy, int i,
pANTLR3_BASE_TREE
t);
80
static void nilNode (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
81
static void errorNode (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
82
static void createNode (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
t);
83
static void createNodeTok (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
node, pANTLR3_COMMON_TOKEN token);
84
static void becomeRoot (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
newRoot,
pANTLR3_BASE_TREE
oldRoot);
85
static void addChild (pANTLR3_DEBUG_EVENT_LISTENER delboy,
pANTLR3_BASE_TREE
root,
pANTLR3_BASE_TREE
child)
[
all
...]
antlr3treeparser.c
209
pANTLR3_BASE_TREE
node;
210
pANTLR3_BASE_TREE
current;
antlr3baserecognizer.c
365
ex->line = ((
pANTLR3_BASE_TREE
)(ex->token))->getLine (ex->token);
366
ex->charPositionInLine = ((
pANTLR3_BASE_TREE
)(ex->token))->getCharPositionInLine (ex->token);
374
tnode = ((pANTLR3_COMMON_TREE)(((
pANTLR3_BASE_TREE
)(ex->token))->super));
378
ex->streamName = ((
pANTLR3_BASE_TREE
)(ex->token))->strFactory->newStr(((
pANTLR3_BASE_TREE
)(ex->token))->strFactory, (pANTLR3_UINT8)"-unknown source-");
[
all
...]
Completed in 721 milliseconds