Home
last modified time | relevance | path

Searched refs:walktree (Results 1 – 6 of 6) 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, AVExtRule), walktree(self))
116 return filter(lambda x: isinstance(x, TypeRule), 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/cpython3/Doc/library/
Dstat.rst106 def walktree(top, callback):
115 walktree(pathname, callback)
127 walktree(sys.argv[1], visitfile)
/external/python/cpython2/Lib/
Dinspect.py711 def walktree(classes, children, parent): function
718 results.append(walktree(children[c], children, c))
745 return walktree(roots, children, None)
/external/python/cpython3/Lib/
Dinspect.py1028 def walktree(classes, children, parent): function
1035 results.append(walktree(children[c], children, c))
1062 return walktree(roots, children, None)