Searched defs:find (Results 1 - 19 of 19) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
H A DElementPath.py184 if elem.find(tag) is not None:
283 def find(elem, path, namespaces=None): function
H A DElementTree.py105 # emulate pre-1.2 find/findtext/findall behaviour
106 def find(self, element, tag, namespaces=None): member in class:_SimpleElementPath
112 elem = self.find(element, tag)
325 # Removes a matching subelement. Unlike the <b>find</b> methods,
362 def find(self, path, namespaces=None): member in class:Element
363 return ElementPath.find(self, path, namespaces)
686 # Same as getroot().find(path), starting at the root of the
694 def find(self, path, namespaces=None): member in class:ElementTree
704 return self._root.find(path, namespaces)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
H A DElementPath.py184 if elem.find(tag) is not None:
283 def find(elem, path, namespaces=None): function
H A DElementTree.py105 # emulate pre-1.2 find/findtext/findall behaviour
106 def find(self, element, tag, namespaces=None): member in class:_SimpleElementPath
112 elem = self.find(element, tag)
325 # Removes a matching subelement. Unlike the <b>find</b> methods,
362 def find(self, path, namespaces=None): member in class:Element
363 return ElementPath.find(self, path, namespaces)
681 # Same as getroot().find(path).
688 def find(self, path, namespaces=None): member in class:ElementTree
698 return self._root.find(path, namespaces)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dgettext.py46 # find this format documented anywhere.
54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
140 pos = locale.find('@')
147 pos = locale.find('.')
154 pos = locale.find('_')
424 def find(domain, localedir=None, languages=None, all=0): function
468 mofiles = find(domain, localedir, languages, all=1)
H A Dstring.py327 Like find but raises ValueError when the substring is not found.
353 def find(s, *args): function
354 """find(s, sub [,start [,end]]) -> in
363 return s.find(*args)
580 # this is some markup, find the object and do
583 # given the field_name, find the object it references
638 # given a field_name, find the object it references.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dgettext.py46 # find this format documented anywhere.
54 'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
138 pos = locale.find('@')
145 pos = locale.find('.')
152 pos = locale.find('_')
421 def find(domain, localedir=None, languages=None, all=0): function
465 mofiles = find(domain, localedir, languages, all=1)
H A Dstringold.py139 Like find but raises ValueError when the substring is not found.
165 def find(s, *args): function
166 """find(s, sub [,start [,end]]) -> in
175 return _apply(s.find, args)
H A DUserString.py87 def find(self, sub, start=0, end=sys.maxint): member in class:UserString
88 return self.data.find(sub, start, end)
H A Dstring.py325 Like find but raises ValueError when the substring is not found.
351 def find(s, *args): function
352 """find(s, sub [,start [,end]]) -> in
361 return s.find(*args)
566 # this is some markup, find the object and do
569 # given the field_name, find the object it references
624 # given a field_name, find the object it references.
H A Ddoctest.py307 # For the rest, we only need to find the leftmost non-overlapping
314 startpos = got.find(w, startpos, endpos)
518 # This regular expression is used to find doctest examples in a
769 If the optional argument `recurse` is false, then `find` will
772 If the optional argument `exclude_empty` is false, then `find`
780 def find(self, obj, name=None, module=None, globs=None, extraglobs=None): member in class:DocTestFinder
794 - To find the name of the file containing the object.
795 - To help find the line number of the object within its
800 If `module` is False, no attempt to find the module will be made.
819 raise ValueError("DocTestFinder.find
[all...]
H A Dpydoc.py57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip namespace
1883 if find(modname, '.') < 0:
1935 if find(lower(modname + ' - ' + desc), key) >= 0:
1958 if find(lower(modname + ' - ' + desc), key) >= 0:
2252 return isinstance(x, str) and find(x, os.sep) >= 0
H A Dtarfile.py177 p = s.find("\0")
761 section = self.sparse.find(self.position)
831 pos = self.buffer.find("\n") + 1
839 pos = self.buffer.find("\n") + 1
2510 def find(self, offset): member in class:_ringbuffer
/device/google/marlin/common/
H A Dutils.mk22 # $(call find-word-in-list,w,wlist)
31 define find-word-in-list
51 $(call match-word,$(call find-word-in-list,$(1),$(2)),$(strip $(1))), \
61 # if find-word-in-list returns not empty
/device/google/wahoo/
H A Dutils.mk22 # $(call find-word-in-list,w,wlist)
31 define find-word-in-list
51 $(call match-word,$(call find-word-in-list,$(1),$(2)),$(strip $(1))), \
61 # if find-word-in-list returns not empty
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_xml_etree.py160 >>> check_method(element.find)
260 Test find methods using the elementpath fallback.
267 >>> elem.find("tag").tag
269 >>> ElementTree.ElementTree(elem).find("tag").tag
285 >>> elem.find("section/tag")
293 def find(): function
295 Test find methods (including xpath syntax).
298 >>> elem.find("tag").tag
300 >>> ET.ElementTree(elem).find("tag").tag
302 >>> elem.find("sectio
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlstrlib.c577 static int str_find_aux (lua_State *L, int find) { argument
584 lua_pushnil(L); /* cannot find anything */
588 if (find && (lua_toboolean(L, 4) || nospecials(p, lp))) {
614 if (find) {
984 {"find", str_find},
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
H A Dpydoc.py57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip namespace
1887 if find(modname, '.') < 0:
1939 if find(lower(modname + ' - ' + desc), key) >= 0:
1962 if find(lower(modname + ' - ' + desc), key) >= 0:
2256 return isinstance(x, str) and find(x, os.sep) >= 0
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
H A Dpydoc.py71 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip namespace
1967 if find(modname, '.') < 0:
2019 if find(lower(modname + ' - ' + desc), key) >= 0:
2042 if find(lower(modname + ' - ' + desc), key) >= 0:
2337 return isinstance(x, str) and find(x, os.sep) >= 0

Completed in 1206 milliseconds