Home
last modified time | relevance | path

Searched refs:walktree (Results 1 – 4 of 4) sorted by relevance

/external/selinux/python/sepolgen/src/sepolgen/
Drefpolicy.py87 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 …]
Doutput.py51 for node, depth in refpolicy.walktree(self.module, showdepth=True):
/external/python/cpython2/Doc/library/
Dstat.rst83 def walktree(top, callback):
92 walktree(pathname, callback)
104 walktree(sys.argv[1], visitfile)
/external/python/cpython2/Lib/
Dinspect.py704 def walktree(classes, children, parent): function
711 results.append(walktree(children[c], children, c))
738 return walktree(roots, children, None)