• Home
  • Raw
  • Download

Lines Matching refs:ExpressionList

167 ExpressionList Expression::getClosure(bool bypass)  in getClosure()
169 ExpressionList closure; in getClosure()
176 ExpressionList::const_iterator iter = mNextWords.begin(); in getClosure()
177 ExpressionList::const_iterator end = mNextWords.end(); in getClosure()
180 ExpressionList childClosure = (*iter)->getClosure(bypassChildren); in getClosure()
191 ExpressionList restClosure = getClosure(true); in getClosure()
199 ExpressionList Expression::getNextExpressionClosure(string text) in getNextExpressionClosure()
201 ExpressionList nextClosure; in getNextExpressionClosure()
203 ExpressionList::const_iterator iter = mNextWords.begin(); in getNextExpressionClosure()
204 ExpressionList::const_iterator end = mNextWords.end(); in getNextExpressionClosure()
208 ExpressionList childClosure = childExpr->getClosure(false); in getNextExpressionClosure()
210 ExpressionList::const_iterator iter = childClosure.begin(); in getNextExpressionClosure()
211 ExpressionList::const_iterator end = childClosure.end(); in getNextExpressionClosure()
273 ExpressionList Expression::getNextExpressions() in getNextExpressions()
283 ExpressionList::const_iterator iter = mNextWords.begin(); in getNextExpression()
284 ExpressionList::const_iterator end = mNextWords.end(); in getNextExpression()
305 ExpressionList Expression::getClosureExecutables(bool canBypass) in getClosureExecutables()
307 ExpressionList candidateExecutables; in getClosureExecutables()
315 ExpressionList childExecutables = getClosureExecutables(false); in getClosureExecutables()
320 ExpressionList::const_iterator iter = mNextWords.begin(); in getClosureExecutables()
321 ExpressionList::const_iterator end = mNextWords.end(); in getClosureExecutables()
326 ExpressionList childClosure = (*iter)->getClosureExecutables(true); in getClosureExecutables()
337 ExpressionList::const_iterator iter = mNextWords.begin(); in getClosureExecutables()
338 ExpressionList::const_iterator end = mNextWords.end(); in getClosureExecutables()
345 ExpressionList childClosure = (*iter)->getClosureExecutables(true); in getClosureExecutables()
352 ExpressionList executables; in getClosureExecutables()
354 ExpressionList::const_iterator iter = candidateExecutables.begin(); in getClosureExecutables()
355 ExpressionList::const_iterator end = candidateExecutables.end(); in getClosureExecutables()
389 ExpressionList::const_iterator iter = mNextWords.begin(); in printTree()
390 ExpressionList::const_iterator end = mNextWords.end(); in printTree()
409 ExpressionList::const_iterator iter = mNextWords.begin(); in printList()
410 ExpressionList::const_iterator end = mNextWords.end(); in printList()