OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isNilNode
(Results
1 - 10
of
10
) sorted by null
/external/antlr/antlr-3.4/runtime/C/include/
antlr3bitset.h
103
ANTLR3_BOOLEAN (*
isNilNode
) (struct ANTLR3_BITSET_struct * bitset);
antlr3basetree.h
119
ANTLR3_BOOLEAN (*
isNilNode
) (struct ANTLR3_BASE_TREE_struct * tree);
antlr3basetreeadaptor.h
85
ANTLR3_BOOLEAN (*
isNilNode
) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * t);
/external/antlr/antlr-3.4/runtime/C/src/
antlr3basetreeadaptor.c
72
static ANTLR3_BOOLEAN
isNilNode
(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t);
148
adaptor->
isNilNode
= (ANTLR3_BOOLEAN (*)(pANTLR3_BASE_TREE_ADAPTOR, void *))
149
isNilNode
;
540
* and child
isNilNode
then it is ok to move children to t via
603
* If oldRoot was null, it's ok, just return newRoot (even if
isNilNode
).
643
if (newRootTree->
isNilNode
(newRootTree))
674
if (oldRootTree->
isNilNode
(oldRootTree))
713
if (root != NULL && root->
isNilNode
(root))
906
isNilNode
(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t)
908
return t->
isNilNode
(t)
[
all
...]
antlr3commontree.c
43
static ANTLR3_BOOLEAN
isNilNode
(pANTLR3_BASE_TREE tree);
303
tree->baseTree.
isNilNode
=
isNilNode
;
408
isNilNode
(pANTLR3_BASE_TREE tree)
491
if (tree->
isNilNode
(tree) == ANTLR3_TRUE)
antlr3basetree.c
154
if (child->
isNilNode
(child) == ANTLR3_TRUE)
304
if (tree->
isNilNode
(tree) == ANTLR3_FALSE)
325
if (tree->
isNilNode
(tree) == ANTLR3_FALSE)
361
if (newTree->
isNilNode
(newTree))
antlr3commontreenodestream.c
470
/// Don't add in DOWN, UP nodes if the supplied tree is a list (t is
isNilNode
)
480
nilNode = ctns->adaptor->
isNilNode
(ctns->adaptor, t);
836
if (!p->
isNilNode
(p) )
860
if (n > 0 && ! p->
isNilNode
(p) )
874
if (n > 0 && ! p->
isNilNode
(p) )
antlr3rewritestreams.c
129
if (tree != NULL && tree->
isNilNode
(tree))
157
if (tree->
isNilNode
(tree))
antlr3bitset.c
134
bitset->
isNilNode
= antlr3BitsetIsNil;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
ASTTreeParser.stg
64
if ( ADAPTOR->getParent(ADAPTOR, retval.tree) != NULL && ADAPTOR->
isNilNode
(ADAPTOR, ADAPTOR->getParent(ADAPTOR, retval.tree) ) )
Completed in 135 milliseconds