OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isNilNode
(Results
1 - 5
of
5
) 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/
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)
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
...]
Completed in 184 milliseconds