HomeSort by relevance Sort by last modified time
    Searched defs:findall (Results 1 - 9 of 9) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementPath.py 13 # 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
ElementTree.py 105 # 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)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementPath.py 13 # 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
ElementTree.py 105 # 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)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
filelist.py 39 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/distutils/
filelist.py 39 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/
re.py 83 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)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 83 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)
  /external/chromium_org/third_party/gtk+/gtk/
compose-parse.py 13 from re import findall, match, split, sub namespace
422 if findall('^combining_', ks):
515 raw_sequence = findall('\w+', seq)
736 if findall('Multi_key', "".join(item[:-1])) != []:
    [all...]

Completed in 115 milliseconds