/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/ |
D | ElementInclude.py | 77 def default_loader(href, parse, encoding=None): argument 79 if parse == "xml": 80 data = ElementTree.parse(file).getroot() 109 parse = e.get("parse", "xml") 110 if parse == "xml": 111 node = loader(href, parse) 114 "cannot load %r as %r" % (href, parse) 120 elif parse == "text": 121 text = loader(href, parse, e.get("encoding")) 124 "cannot load %r as %r" % (href, parse) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/ |
D | ElementInclude.py | 77 def default_loader(href, parse, encoding=None): argument 79 if parse == "xml": 80 data = ElementTree.parse(file).getroot() 108 parse = e.get("parse", "xml") 109 if parse == "xml": 110 node = loader(href, parse) 113 "cannot load %r as %r" % (href, parse) 119 elif parse == "text": 120 text = loader(href, parse, e.get("encoding")) 123 "cannot load %r as %r" % (href, parse) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
D | parser.py | 56 def parse(self, fp, headersonly=False): member in Parser 82 return self.parse(StringIO(text), headersonly=headersonly) 87 def parse(self, fp, headersonly=True): member in HeaderParser 88 return Parser.parse(self, fp, True)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_ast.py | 154 slc = ast.parse("x[::]").body[0].value.slice 161 im = ast.parse("from . import y").body[0] 211 a = ast.parse('foo(1 + 1)') 216 node = ast.parse('spam(eggs, "and cheese")') 235 src = ast.parse('1 + 1', mode='eval') 244 src = ast.parse('write("spam")') 260 src = ast.parse('1 + 1', mode='eval') 268 src = ast.parse('1 + 1', mode='eval') 277 node = ast.parse('foo()', mode='eval') 284 node = ast.parse("spam(23, 42, eggs='leek')", mode='eval') [all …]
|
D | test_sax.py | 312 parser.parse(test_xml) 383 parser.parse(open(TEST_XMLFILE)) 512 parser.parse(TEST_XMLFILE) 522 parser.parse(InputSource(TEST_XMLFILE)) 534 parser.parse(inpsrc) 594 parser.parse(TEST_XMLFILE) 615 parser.parse(source) 623 self.assertRaises(SAXParseException, parser.parse, StringIO("<foo>")) 741 self.assertRaises(SAXParseException, parser.parse, sio)
|
D | test_transformer.py | 19 a = transformer.parse(s)
|
D | test_compiler.py | 75 self.assertRaises(SyntaxError, compiler.parse, "foo(a=1, b)") 76 self.assertRaises(SyntaxError, compiler.parse, "foo(1, *args, 3)") 88 self.assertRaises(SyntaxError, compiler.parse, "def foo(a=1, b): pass")
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/ |
D | test_util.py | 15 def parse(code, strip_levels=0): function 33 return fixer_util.is_tuple(parse(string, strip_levels=2)) 49 return fixer_util.is_list(parse(string, strip_levels=2)) 64 call = parse("foo()", strip_levels=2) 117 node = parse(string) 152 return fixer_util.find_binding(name, parse(string), package) 555 node = parse('"""foo"""\nbar()') 560 node = parse('"""foo"""\nimport bar\nbar()') 565 node = parse('bar()') 570 node = parse('bar()') [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | version.py | 40 self.parse(vstring) 104 def parse (self, vstring): member in StrictVersion 265 self.parse(vstring) 268 def parse (self, vstring): member in LooseVersion
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/ |
D | __init__.py | 29 def parse(source, handler, errorHandler=ErrorHandler()): function 33 parser.parse(source) 49 parser.parse(inpsrc)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/ |
D | __init__.py | 29 def parse(source, handler, errorHandler=ErrorHandler()): function 33 parser.parse(source) 49 parser.parse(inpsrc)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/ |
D | makelocalealias.py | 14 def parse(filename): function 68 data.update(parse(LOCALE_ALIAS))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | parseentities.py | 20 def parse(text,pos=0,endpos=None): function 63 defs = parse(text)
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/ |
D | DxeHttpLib.uni | 4 // This library instance provides the helper routines to parse the HTTP message byte stream. 21 … #language en-US "This library instance provides the helper routines to parse the HTTP message b…
|
/device/google/cuttlefish_vmm/ |
D | update-manifest-gfxstream.py | 68 t = etree.parse(filename) 83 target_root = etree.parse( \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/ |
D | driver.py | 26 from . import grammar, parse, token, tokenize, pgen 41 p = parse.Parser(self.grammar, self.convert) 82 raise parse.ParseError("incomplete input",
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | __init__.py | 29 from compiler.transformer import parse, parseFile
|
/device/google/cuttlefish/tools/ |
D | gen_sha.sh | 33 Sha=`git rev-parse HEAD`
|
/device/google/trout/tools/ |
D | install_format_hook.sh | 13 GIT_ROOT=$(git rev-parse --show-toplevel)
|
/device/generic/goldfish/gnss/ |
D | gnss_hw_listener.h | 31 bool parse(const char* begin, const char* end, const ahg20::ElapsedRealtime&);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/ |
D | demo.py | 32 ast = compiler.parse(buf)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/xml/ |
D | elem_count.py | 42 parser.parse(sys.argv[1])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/ |
D | world | 141 def parse(file, normalize): 246 parse(parsefile, normalize)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/ |
D | README | 9 cgi2.py -- A Python script showing how to parse a form
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/ |
D | structparse.py | 16 def parse(s): function
|