Home | History | Annotate | Download | only in src

Lines Matching refs:baseTree

117     factory->unTruc.baseTree.strFactory	= strFactory;
167 // It is the basetree pointer that is placed on the stack of course
196 tree->baseTree.strFactory = factory->unTruc.baseTree.strFactory;
203 tree->baseTree.super = tree;
208 return &(tree->baseTree);
227 newTree->u = tree->baseTree.u; // Copy any user pointer
293 antlr3BaseTreeNew(&(tree->baseTree));
299 tree->baseTree.super = tree;
303 tree->baseTree.isNilNode = isNilNode;
304 tree->baseTree.toString = toString;
305 tree->baseTree.dupNode = (void *(*)(pANTLR3_BASE_TREE))(dupNode);
306 tree->baseTree.getLine = getLine;
307 tree->baseTree.getCharPositionInLine = getCharPositionInLine;
308 tree->baseTree.toString = toString;
309 tree->baseTree.getType = getType;
310 tree->baseTree.getText = getText;
311 tree->baseTree.getToken = getToken;
312 tree->baseTree.getParent = getParent;
313 tree->baseTree.setParent = setParent;
314 tree->baseTree.setChildIndex = setChildIndex;
315 tree->baseTree.getChildIndex = getChildIndex;
316 tree->baseTree.createChildrenList = createChildrenList;
317 tree->baseTree.reuse = reuse;
318 tree->baseTree.free = NULL; // Factory trees have no free function
319 tree->baseTree.u = NULL; // Initialize user pointer
321 tree->baseTree.children = NULL;
506 return & (((pANTLR3_COMMON_TREE)(tree->super))->parent->baseTree);
539 if (cTree->baseTree.children != NULL)
542 cTree->baseTree.children->clear(cTree->baseTree.children);