Searched refs:walktree (Results 1 – 4 of 4) sorted by relevance
/external/selinux/python/sepolgen/src/sepolgen/ |
D | refpolicy.py | 87 return filter(lambda x: isinstance(x, Node), walktree(self)) 90 return filter(lambda x: isinstance(x, Module), walktree(self)) 93 return filter(lambda x: isinstance(x, Interface), walktree(self)) 96 return filter(lambda x: isinstance(x, Template), walktree(self)) 99 return filter(lambda x: isinstance(x, SupportMacros), walktree(self)) 104 return filter(lambda x: isinstance(x, ModuleDeclaration), walktree(self)) 107 return filter(lambda x: isinstance(x, InterfaceCall), walktree(self)) 110 return filter(lambda x: isinstance(x, AVRule), walktree(self)) 113 return filter(lambda x: isinstance(x, TypeRule), walktree(self)) 116 return filter(lambda x: isinstance(x, TypeBound), walktree(self)) [all …]
|
D | output.py | 51 for node, depth in refpolicy.walktree(self.module, showdepth=True):
|
/external/python/cpython2/Doc/library/ |
D | stat.rst | 83 def walktree(top, callback): 92 walktree(pathname, callback) 104 walktree(sys.argv[1], visitfile)
|
/external/python/cpython2/Lib/ |
D | inspect.py | 704 def walktree(classes, children, parent): function 711 results.append(walktree(children[c], children, c)) 738 return walktree(roots, children, None)
|