/external/selinux/sepolgen/src/sepolgen/ |
refpolicy.py | 88 return itertools.ifilter(lambda x: isinstance(x, Node), walktree(self)) 91 return itertools.ifilter(lambda x: isinstance(x, Module), walktree(self)) 94 return itertools.ifilter(lambda x: isinstance(x, Interface), walktree(self)) 97 return itertools.ifilter(lambda x: isinstance(x, Template), walktree(self)) 100 return itertools.ifilter(lambda x: isinstance(x, SupportMacros), walktree(self)) 105 return itertools.ifilter(lambda x: isinstance(x, ModuleDeclaration), walktree(self)) 108 return itertools.ifilter(lambda x: isinstance(x, InterfaceCall), walktree(self)) 111 return itertools.ifilter(lambda x: isinstance(x, AVRule), walktree(self)) 114 return itertools.ifilter(lambda x: isinstance(x, TypeRule), walktree(self)) 118 return itertools.ifilter(lambda x: isinstance(x, TypeAttribute), walktree(self) 169 def walktree(node, depthfirst=True, showdepth=False, type=None): function [all...] |
output.py | 47 for node, depth in refpolicy.walktree(self.module, showdepth=True):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
refpolicy.py | 88 return itertools.ifilter(lambda x: isinstance(x, Node), walktree(self)) 91 return itertools.ifilter(lambda x: isinstance(x, Module), walktree(self)) 94 return itertools.ifilter(lambda x: isinstance(x, Interface), walktree(self)) 97 return itertools.ifilter(lambda x: isinstance(x, Template), walktree(self)) 100 return itertools.ifilter(lambda x: isinstance(x, SupportMacros), walktree(self)) 105 return itertools.ifilter(lambda x: isinstance(x, ModuleDeclaration), walktree(self)) 108 return itertools.ifilter(lambda x: isinstance(x, InterfaceCall), walktree(self)) 111 return itertools.ifilter(lambda x: isinstance(x, AVRule), walktree(self)) 114 return itertools.ifilter(lambda x: isinstance(x, TypeRule), walktree(self)) 118 return itertools.ifilter(lambda x: isinstance(x, TypeAttribute), walktree(self) 169 def walktree(node, depthfirst=True, showdepth=False, type=None): function [all...] |
output.py | 47 for node, depth in refpolicy.walktree(self.module, showdepth=True):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/ |
refpolicy.py | 88 return itertools.ifilter(lambda x: isinstance(x, Node), walktree(self)) 91 return itertools.ifilter(lambda x: isinstance(x, Module), walktree(self)) 94 return itertools.ifilter(lambda x: isinstance(x, Interface), walktree(self)) 97 return itertools.ifilter(lambda x: isinstance(x, Template), walktree(self)) 100 return itertools.ifilter(lambda x: isinstance(x, SupportMacros), walktree(self)) 105 return itertools.ifilter(lambda x: isinstance(x, ModuleDeclaration), walktree(self)) 108 return itertools.ifilter(lambda x: isinstance(x, InterfaceCall), walktree(self)) 111 return itertools.ifilter(lambda x: isinstance(x, AVRule), walktree(self)) 114 return itertools.ifilter(lambda x: isinstance(x, TypeRule), walktree(self)) 118 return itertools.ifilter(lambda x: isinstance(x, TypeAttribute), walktree(self) 169 def walktree(node, depthfirst=True, showdepth=False, type=None): function [all...] |
output.py | 47 for node, depth in refpolicy.walktree(self.module, showdepth=True):
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/ |
parser_test.js | 19 function walkTree(document, handler) { 68 walkTree(document, function (node) { 120 walkTree(document, function (node) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
inspect.py | 705 def walktree(classes, children, parent): function 712 results.append(walktree(children[c], children, c)) 738 return walktree(roots, children, None) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
inspect.py | 705 def walktree(classes, children, parent): function 712 results.append(walktree(children[c], children, c)) 738 return walktree(roots, children, None) [all...] |
/frameworks/base/tools/aapt2/ |
Main.cpp | 78 bool walkTree(const Source& root, const FileFilter& filter, [all...] |