Searched refs:findall (Results 1 - 25 of 46) sorted by relevance

12

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dreperf.py9 timefunc(10, p.findall, s)
H A Dtest_re.py26 self.assertEqual(x.findall('QabbbcR'), y.findall('QabbbcR'))
118 self.assertRaises(ValueError, re.findall, pattern, 'A', re.I)
243 self.assertEqual(re.findall(":+", "abc"), [])
244 self.assertEqual(re.findall(":+", "a:b::c:::d"), [":", "::", ":::"])
245 self.assertEqual(re.findall("(:+)", "a:b::c:::d"), [":", "::", ":::"])
246 self.assertEqual(re.findall("(:)(:*)", "a:b::c:::d"), [(":", ""),
251 self.assertEqual(re.findall(r"(a|(b))", "aba"),
417 self.assertEqual(len(re.findall(r"\b", "a")), 2)
418 self.assertEqual(len(re.findall(
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dreperf.py9 timefunc(10, p.findall, s)
H A Dtest_re.py26 self.assertEqual(x.findall('QabbbcR'), y.findall('QabbbcR'))
118 self.assertRaises(ValueError, re.findall, pattern, 'A', re.I)
243 self.assertEqual(re.findall(":+", "abc"), [])
244 self.assertEqual(re.findall(":+", "a:b::c:::d"), [":", "::", ":::"])
245 self.assertEqual(re.findall("(:+)", "a:b::c:::d"), [":", "::", ":::"])
246 self.assertEqual(re.findall("(:)(:*)", "a:b::c:::d"), [(":", ""),
251 self.assertEqual(re.findall(r"(a|(b))", "aba"),
417 self.assertEqual(len(re.findall(r"\b", "a")), 2)
418 self.assertEqual(len(re.findall(
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
H A DAutoExpand.py53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
56 wafter = re.findall(r"\b" + word + r"\w+\b", after)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
H A DAutoExpand.py53 wbefore = re.findall(r"\b" + word + r"\w+\b", before)
56 wafter = re.findall(r"\b" + word + r"\w+\b", after)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
H A Dfilelist.py39 def findall(self, dir=os.curdir): member in class:FileList
40 self.allfiles = findall(dir)
221 self.findall()
256 def findall(dir = os.curdir): function
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
H A DElementPath.py13 # 2007-09-13 fl added iterfind; changed findall to return a list
74 for token in xpath_tokenizer_re.findall(pattern):
193 for e in elem.findall(tag):
218 elems = list(parent.findall(elem.tag))
292 def findall(elem, path, namespaces=None): function
H A DElementTree.py105 # emulate pre-1.2 find/findtext/findall behaviour
123 def findall(self, element, tag, namespaces=None): member in class:_SimpleElementPath
389 def findall(self, path, namespaces=None): member in class:Element
390 return ElementPath.findall(self, path, namespaces)
731 # Same as getroot().findall(path), starting at the root of the tree.
739 def findall(self, path, namespaces=None): member in class:ElementTree
749 return self._root.findall(path, namespaces)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
H A Dfilelist.py39 def findall(self, dir=os.curdir): member in class:FileList
40 self.allfiles = findall(dir)
221 self.findall()
256 def findall(dir = os.curdir): function
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
H A DElementPath.py13 # 2007-09-13 fl added iterfind; changed findall to return a list
74 for token in xpath_tokenizer_re.findall(pattern):
193 for e in elem.findall(tag):
218 elems = list(parent.findall(elem.tag))
292 def findall(elem, path, namespaces=None): function
H A DElementTree.py105 # emulate pre-1.2 find/findtext/findall behaviour
123 def findall(self, element, tag, namespaces=None): member in class:_SimpleElementPath
389 def findall(self, path, namespaces=None): member in class:Element
390 return ElementPath.findall(self, path, namespaces)
731 # Same as getroot().findall(path), starting at the root of the tree.
739 def findall(self, path, namespaces=None): member in class:ElementTree
749 return self._root.findall(path, namespaces)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/
H A Dgraphml.py403 for g in self.xml.findall("{%s}graph" % self.NS_GRAPHML):
429 for node_xml in graph_xml.findall("{%s}node" % self.NS_GRAPHML):
432 for edge_xml in graph_xml.findall("{%s}edge" % self.NS_GRAPHML):
497 for data_element in obj_xml.findall("{%s}data" % self.NS_GRAPHML):
542 for k in graph_element.findall("{%s}key" % self.NS_GRAPHML):
H A Dgexf.py421 for a in self.graph_element.findall("attributes"):
598 attributes_elements=graph_xml.findall("{%s}attributes"%self.NS_GEXF)
630 for node_xml in nodes_element.findall("{%s}node" % self.NS_GEXF):
636 for edge_xml in edges_element.findall("{%s}edge" % self.NS_GEXF):
677 for node_xml in subnodes.findall("{%s}node" % self.NS_GEXF):
737 for p in parents_element.findall("{%s}parent"%self.NS_GEXF):
746 for s in slices_element.findall("{%s}slice"%self.NS_GEXF):
756 for s in spells_element.findall("{%s}spell"%self.NS_GEXF):
821 for a in attr_element.findall("{%s}attvalue" % self.NS_GEXF):
852 for k in attributes_element.findall("{
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dre.py83 findall Find all occurrences of a pattern in a string.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
169 def findall(pattern, string, flags=0): function
177 return _compile(pattern, flags).findall(string)
H A D_osx_support.py454 archs = re.findall('-arch\s+(\S+)', cflags)
H A Dtextwrap.py391 indents = _leading_whitespace_re.findall(text)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dre.py83 findall Find all occurrences of a pattern in a string.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
169 def findall(pattern, string, flags=0): function
177 return _compile(pattern, flags).findall(string)
H A D_osx_support.py454 archs = re.findall('-arch\s+(\S+)', cflags)
H A Dtextwrap.py391 indents = _leading_whitespace_re.findall(text)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
H A Dmodule.py40 m = re.findall("[^a-zA-Z0-9_\-\.]", modname)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
H A Dmodule.py40 m = re.findall("[^a-zA-Z0-9_\-\.]", modname)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
H A Dutil.py191 res = re.findall(expr, data)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
H A Dutil.py191 res = re.findall(expr, data)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
H A Dsdist.py203 self.filelist.findall()

Completed in 1348 milliseconds

12