Home
last modified time | relevance | path

Searched refs:parse_string (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
Dtest_parser.py29 t = driver.parse_string(s)
36 support.parse_string(code)
173 tree = driver.parse_string(source)
179 driver.parse_string("a, *b, c = x\n")
180 driver.parse_string("[*a, b] = x\n")
181 driver.parse_string("(z, *y, w) = m\n")
182 driver.parse_string("for *z, m in d: pass\n")
187 driver.parse_string(support.dedent(s) + "\n\n")
Dsupport.py22 def parse_string(string): function
23 return driver.parse_string(reformat(string), debug=True)
Dtest_util.py18 tree = support.parse_string(code)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
Dscanner.py18 parse_string = context.parse_string
35 return parse_string(string, idx + 1, encoding, strict)
Ddecoder.py358 self.parse_string = scanstring
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
Dscanner.py18 parse_string = context.parse_string
35 return parse_string(string, idx + 1, encoding, strict)
Ddecoder.py358 self.parse_string = scanstring
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
Ddriver.py103 def parse_string(self, text, debug=False): member in Driver
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
Drefactor.py372 tree = self.driver.parse_string(data)