• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/

Lines Matching refs:pANTLR3_BASE_TREE

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);
50 static void setParent (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE parent);
51 static void setChildIndex (pANTLR3_BASE_TREE tree, ANTLR3_INT32 i);
52 static ANTLR3_INT32 getChildIndex (pANTLR3_BASE_TREE tree);
53 static void createChildrenList (pANTLR3_BASE_TREE tree);
54 static void reuse (pANTLR3_BASE_TREE tree);
59 static pANTLR3_BASE_TREE newPoolTree (pANTLR3_ARBORETUM factory);
60 static pANTLR3_BASE_TREE newFromTree (pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TREE tree);
61 static pANTLR3_BASE_TREE newFromToken (pANTLR3_ARBORETUM factory, pANTLR3_COMMON_TOKEN token);
153 static pANTLR3_BASE_TREE
170 return (pANTLR3_BASE_TREE)tree;
211 static pANTLR3_BASE_TREE
214 pANTLR3_BASE_TREE newTree;
231 static pANTLR3_BASE_TREE
234 pANTLR3_BASE_TREE newTree;
304 tree->baseTree.dupNode = (void *(*)(pANTLR3_BASE_TREE))(dupNode);
372 createChildrenList (pANTLR3_BASE_TREE tree)
379 getToken (pANTLR3_BASE_TREE tree)
390 static pANTLR3_BASE_TREE
391 dupNode (pANTLR3_BASE_TREE tree)
406 isNilNode (pANTLR3_BASE_TREE tree)
421 getType (pANTLR3_BASE_TREE tree)
438 getText (pANTLR3_BASE_TREE tree)
443 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree)
456 pANTLR3_BASE_TREE child;
458 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0);
466 static ANTLR3_UINT32 getCharPositionInLine (pANTLR3_BASE_TREE tree)
476 pANTLR3_BASE_TREE child;
478 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0);
487 static pANTLR3_STRING toString (pANTLR3_BASE_TREE tree)
501 static pANTLR3_BASE_TREE
502 getParent (pANTLR3_BASE_TREE tree)
508 setParent (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE parent)
514 setChildIndex (pANTLR3_BASE_TREE tree, ANTLR3_INT32 i)
519 getChildIndex (pANTLR3_BASE_TREE tree )
528 reuse (pANTLR3_BASE_TREE tree)