/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_codecencodings_jp.py | 13 tstring = test_multibytecodec_support.load_teststring('shift_jis') variable in Test_CP932 29 tstring = test_multibytecodec_support.load_teststring('euc_jisx0213') variable in Test_EUC_JISX0213 59 tstring = test_multibytecodec_support.load_teststring('euc_jp') variable in Test_EUC_JP_COMPAT 76 tstring = test_multibytecodec_support.load_teststring('shift_jis') variable in Test_SJIS_COMPAT 84 tstring = test_multibytecodec_support.load_teststring('shift_jisx0213') variable in Test_SJISX0213
|
D | test_codecencodings_cn.py | 13 tstring = test_multibytecodec_support.load_teststring('gb2312') variable in Test_GB2312 26 tstring = test_multibytecodec_support.load_teststring('gbk') variable in Test_GBK 40 tstring = test_multibytecodec_support.load_teststring('gb18030') variable in Test_GB18030 55 tstring = test_multibytecodec_support.load_teststring('hz') variable in Test_HZ
|
D | test_codecencodings_kr.py | 13 tstring = test_multibytecodec_support.load_teststring('cp949') variable in Test_CP949 25 tstring = test_multibytecodec_support.load_teststring('euc_kr') variable in Test_EUCKR 55 tstring = test_multibytecodec_support.load_teststring('johab') variable in Test_JOHAB
|
D | test_multibytecodec_support.py | 19 tstring = '' # string to test StreamReader variable in TestBase 39 for f in self.tstring]): 154 istream = UTF8Reader(StringIO(self.tstring[1])) 168 self.assertEqual(ostream.getvalue(), self.tstring[0]) 174 istream = StringIO(self.tstring[0]) 185 self.assertEqual(ostream.getvalue(), self.tstring[1]) 212 istream = self.reader(StringIO(self.tstring[0])) 224 self.assertEqual(ostream.getvalue(), self.tstring[1]) 232 istream = UTF8Reader(StringIO(self.tstring[1])) 248 self.assertEqual(ostream.getvalue(), self.tstring[0])
|
D | test_codecencodings_hk.py | 13 tstring = test_multibytecodec_support.load_teststring('big5hkscs') variable in Test_Big5HKSCS
|
D | test_codecencodings_tw.py | 13 tstring = test_multibytecodec_support.load_teststring('big5') variable in Test_Big5
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/ |
D | pygettext.py | 363 def __call__(self, ttype, tstring, stup, etup, line): argument 368 self.__state(ttype, tstring, stup[0]) 370 def __waiting(self, ttype, tstring, lineno): argument 377 self.__addentry(safe_eval(tstring), lineno, isdocstring=1) 383 if ttype == tokenize.NAME and tstring in ('class', 'def'): 386 if ttype == tokenize.NAME and tstring in opts.keywords: 389 def __suiteseen(self, ttype, tstring, lineno): argument 391 if ttype == tokenize.OP and tstring == ':': 394 def __suitedocstring(self, ttype, tstring, lineno): argument 397 self.__addentry(safe_eval(tstring), lineno, isdocstring=1) [all …]
|