Lines Matching refs:root
22 def deprecateRec(root,others,deprecated): argument
26 if root.kind == TestScripts.Parser.TreeElem.TEST:
27 if others[0].isdigit() and int(root.id) == int(others[0]):
28 root.data["deprecated"]=False
29 for c in root.children:
32 root.data["deprecated"]=True
33 for c in root.children:
36 if root.data["class"] == others[0]:
37 root.data["deprecated"]=False
38 for c in root.children:
41 root.data["deprecated"]=deprecated
42 for c in root.children:
45 def deprecate(root,others): argument
46 inheritDeprecation(root,False)
48 deprecateRec(root,deque(others),True)
49 correctDeprecation(root)