Home | History | Annotate | Download | only in common

Lines Matching full:val

84     varRefNode = el->val;
173 retNode = el->val;
185 void RBBISymbolTable::addEntry (const UnicodeString &key, RBBINode *val, UErrorCode &err) {
203 e->val = val;
208 RBBISymbolTableEntry::RBBISymbolTableEntry() : UMemory(), key(), val(NULL) {}
211 // The "val" of a symbol table entry is a variable reference node.
212 // The l. child of the val is the rhs expression from the assignment.
215 delete val->fLeftChild;
216 val->fLeftChild = NULL;
218 delete val;
230 "Name Node Val String Val\n"
243 RBBIDebugPrintf(" %8p ", (void *)s->val);
244 RBBI_DEBUG_printUnicodeString(s->val->fLeftChild->fText);
257 s->val->fLeftChild->printTree(TRUE);