Home
last modified time | relevance | path

Searched refs:find_all (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
Dfinder_unittest.py82 def check_names(self, names, expected_names, find_all=True): argument
83 self.assertEqual(self.finder.find_names(names, find_all), expected_names)
86 self.check_names([], ['bar.baz_unittest', 'bar2.baz2_integrationtest'], find_all=True)
87 self.check_names([], ['bar.baz_unittest', 'bar2.baz2_integrationtest'], find_all=False)
90 self.check_names(['foobar'], ['foobar'], find_all=False)
Dfinder.py107 def find_names(self, args, find_all): argument
115 return self._default_names(suffixes, find_all)
148 def _default_names(self, suffixes, find_all): argument
157 if not find_all:
/external/marisa-trie/v0_1_5/tools/
Dmarisa_alpha-find.cc39 void find_all(const marisa_alpha::Trie &trie, const std::string &str) { in find_all() function
113 find_all(trie, str); in find()
/external/marisa-trie/tools/
Dmarisa-find.cc39 void find_all(const marisa::Trie &trie, const std::string &str) { in find_all() function
113 find_all(trie, str); in find()
/external/chromium_org/third_party/jinja2/
Dmeta.py72 for node in ast.find_all((nodes.Extends, nodes.FromImport, nodes.Import,
Dnodes.py181 for result in self.find_all(node_type):
184 def find_all(self, node_type): member in Node
191 for result in child.find_all(node_type):
Dcompiler.py776 for block in node.find_all(nodes.Block):
782 for import_ in node.find_all(nodes.ImportedName):
1072 for name in node.find_all(nodes.Name):
Dext.py484 for node in node.find_all(nodes.Call):