Searched refs:BOM_UTF8 (Results 1 - 22 of 22) sorted by relevance

/prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
H A Dutf_8_sig.py15 return (codecs.BOM_UTF8 + codecs.utf_8_encode(input, errors)[0], len(input))
19 if input[:3] == codecs.BOM_UTF8:
33 return codecs.BOM_UTF8 + codecs.utf_8_encode(input, self.errors)[0]
55 if codecs.BOM_UTF8.startswith(input):
63 if input[:3] == codecs.BOM_UTF8:
94 if codecs.BOM_UTF8.startswith(input):
98 elif input[:3] == codecs.BOM_UTF8:
/prebuilts/gdb/linux-x86/lib/python2.7/encodings/
H A Dutf_8_sig.py15 return (codecs.BOM_UTF8 + codecs.utf_8_encode(input, errors)[0], len(input))
19 if input[:3] == codecs.BOM_UTF8:
33 return codecs.BOM_UTF8 + codecs.utf_8_encode(input, self.errors)[0]
55 if codecs.BOM_UTF8.startswith(input):
63 if input[:3] == codecs.BOM_UTF8:
94 if codecs.BOM_UTF8.startswith(input):
98 elif input[:3] == codecs.BOM_UTF8:
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
H A Dutf_8_sig.py15 return (codecs.BOM_UTF8 + codecs.utf_8_encode(input, errors)[0], len(input))
19 if input[:3] == codecs.BOM_UTF8:
33 return codecs.BOM_UTF8 + codecs.utf_8_encode(input, self.errors)[0]
55 if codecs.BOM_UTF8.startswith(input):
63 if input[:3] == codecs.BOM_UTF8:
94 if codecs.BOM_UTF8.startswith(input):
98 elif input[:3] == codecs.BOM_UTF8:
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
H A Dutf_8_sig.py15 return (codecs.BOM_UTF8 + codecs.utf_8_encode(input, errors)[0], len(input))
19 if input[:3] == codecs.BOM_UTF8:
33 return codecs.BOM_UTF8 + codecs.utf_8_encode(input, self.errors)[0]
55 if codecs.BOM_UTF8.startswith(input):
63 if input[:3] == codecs.BOM_UTF8:
94 if codecs.BOM_UTF8.startswith(input):
98 elif input[:3] == codecs.BOM_UTF8:
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
H A DIOBinding.py23 from codecs import BOM_UTF8 namespace
26 BOM_UTF8 = '\xef\xbb\xbf' variable
284 if chars.startswith(BOM_UTF8):
292 self.fileencoding = BOM_UTF8
425 if self.fileencoding == BOM_UTF8 or failed:
426 return BOM_UTF8 + chars.encode("utf-8")
437 return BOM_UTF8 + chars.encode("utf-8")
444 return BOM_UTF8 + chars.encode("utf-8")
452 chars = BOM_UTF8 + chars.encode("utf-8")
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
H A DIOBinding.py23 from codecs import BOM_UTF8 namespace
26 BOM_UTF8 = '\xef\xbb\xbf' variable
284 if chars.startswith(BOM_UTF8):
292 self.fileencoding = BOM_UTF8
425 if self.fileencoding == BOM_UTF8 or failed:
426 return BOM_UTF8 + chars.encode("utf-8")
437 return BOM_UTF8 + chars.encode("utf-8")
444 return BOM_UTF8 + chars.encode("utf-8")
452 chars = BOM_UTF8 + chars.encode("utf-8")
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
H A DIOBinding.py23 from codecs import BOM_UTF8 namespace
26 BOM_UTF8 = '\xef\xbb\xbf' variable
284 if chars.startswith(BOM_UTF8):
292 self.fileencoding = BOM_UTF8
425 if self.fileencoding == BOM_UTF8 or failed:
426 return BOM_UTF8 + chars.encode("utf-8")
437 return BOM_UTF8 + chars.encode("utf-8")
444 return BOM_UTF8 + chars.encode("utf-8")
452 chars = BOM_UTF8 + chars.encode("utf-8")
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
H A DIOBinding.py23 from codecs import BOM_UTF8 namespace
26 BOM_UTF8 = '\xef\xbb\xbf' variable
284 if chars.startswith(BOM_UTF8):
292 self.fileencoding = BOM_UTF8
425 if self.fileencoding == BOM_UTF8 or failed:
426 return BOM_UTF8 + chars.encode("utf-8")
437 return BOM_UTF8 + chars.encode("utf-8")
444 return BOM_UTF8 + chars.encode("utf-8")
452 chars = BOM_UTF8 + chars.encode("utf-8")
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
H A Dtokenize.py33 from codecs import BOM_UTF8, lookup namespace
303 if first.startswith(BOM_UTF8):
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
H A Dtokenize.py33 from codecs import BOM_UTF8, lookup namespace
303 if first.startswith(BOM_UTF8):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
H A Dtokenize.py33 from codecs import BOM_UTF8, lookup namespace
303 if first.startswith(BOM_UTF8):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
H A Dtokenize.py33 from codecs import BOM_UTF8, lookup namespace
303 if first.startswith(BOM_UTF8):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
H A Dtest_refactor.py277 self.assertTrue(data.startswith(codecs.BOM_UTF8))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
H A Dtest_refactor.py277 self.assertTrue(data.startswith(codecs.BOM_UTF8))
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dcodecs.py21 "BOM_UTF8", "BOM_UTF16", "BOM_UTF16_LE", "BOM_UTF16_BE",
36 BOM_UTF8 = '\xef\xbb\xbf' variable
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dcodecs.py21 "BOM_UTF8", "BOM_UTF16", "BOM_UTF16_LE", "BOM_UTF16_BE",
36 BOM_UTF8 = '\xef\xbb\xbf' variable
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dcodecs.py21 "BOM_UTF8", "BOM_UTF16", "BOM_UTF16_LE", "BOM_UTF16_BE",
36 BOM_UTF8 = '\xef\xbb\xbf' variable
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dcodecs.py21 "BOM_UTF8", "BOM_UTF16", "BOM_UTF16_LE", "BOM_UTF16_BE",
36 BOM_UTF8 = '\xef\xbb\xbf' variable
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_codecs.py692 bytestring = codecs.BOM_UTF8 + "ABC\xC2\xA1\xE2\x88\x80XYZ"
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_codecs.py692 bytestring = codecs.BOM_UTF8 + "ABC\xC2\xA1\xE2\x88\x80XYZ"
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_codecs.py692 bytestring = codecs.BOM_UTF8 + "ABC\xC2\xA1\xE2\x88\x80XYZ"
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_codecs.py692 bytestring = codecs.BOM_UTF8 + "ABC\xC2\xA1\xE2\x88\x80XYZ"

Completed in 842 milliseconds