Home
last modified time | relevance | path

Searched refs:chk (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_zipfile.py724 chk = zipfile.is_zipfile(TESTFN)
725 self.assertFalse(chk)
728 chk = zipfile.is_zipfile(fp)
729 self.assertTrue(not chk)
733 chk = zipfile.is_zipfile(fp)
734 self.assertTrue(not chk)
736 chk = zipfile.is_zipfile(fp)
737 self.assertTrue(not chk)
744 chk = zipfile.is_zipfile(TESTFN)
745 self.assertTrue(chk)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dconnection.c1446 char* chk; in pysqlite_connection_create_collation() local
1462 chk = PyString_AsString(uppercase_name); in pysqlite_connection_create_collation()
1463 while (*chk) { in pysqlite_connection_create_collation()
1464 if ((*chk >= '0' && *chk <= '9') in pysqlite_connection_create_collation()
1465 || (*chk >= 'A' && *chk <= 'Z') in pysqlite_connection_create_collation()
1466 || (*chk == '_')) in pysqlite_connection_create_collation()
1468 chk++; in pysqlite_connection_create_collation()