HomeSort by relevance Sort by last modified time
    Searched refs:isNilNode (Results 1 - 13 of 13) sorted by null

  /external/antlr/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/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);
322 tree->baseTree.isNilNode = isNilNode;
427 isNilNode (pANTLR3_BASE_TREE tree)
510 if (tree->isNilNode(tree) == ANTLR3_TRUE)
antlr3basetree.c 154 if (child->isNilNode(child) == ANTLR3_TRUE)
308 if (tree->isNilNode(tree) == ANTLR3_FALSE)
329 if (tree->isNilNode(tree) == ANTLR3_FALSE)
365 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 133 bitset->isNilNode = antlr3BitsetIsNil;
  /external/antlr/runtime/Cpp/include/
antlr3bitset.hpp 151 bool isNilNode() const;
antlr3commontree.hpp 123 bool isNilNode();
antlr3commontreeadaptor.hpp 63 bool isNilNode( TreeType* t);
  /external/antlr/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 843 milliseconds