Home | History | Annotate | Download | only in scripts

Lines Matching refs:curNode

235 	curNode		= root
239 nextNode = findChild(curNode, component)
242 curNode.children.append(nextNode)
243 curNode = nextNode
245 if not findChild(curNode, components[-1]):
246 curNode.children.append(TestCase(components[-1]))
257 def recursiveBuild (curNode, prefix):
258 curPath = prefix + curNode.name
259 if isinstance(curNode, TestCase):
260 caseMap[curPath] = curNode
262 for child in curNode.children: