Searched refs:obj1 (Results 1 – 4 of 4) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_pep247.py | 26 obj1 = module.new(key) 34 obj1 = module.new() 44 self.assertTrue(hasattr(obj1, 'digest_size')) 47 self.assertEqual(obj1.digest_size, module.digest_size) 49 self.assertEqual(obj1.digest_size, len(h1)) 50 obj1.update('string') 51 obj_copy = obj1.copy() 52 self.assertEqual(obj1.digest(), obj_copy.digest()) 53 self.assertEqual(obj1.hexdigest(), obj_copy.hexdigest()) 55 digest, hexdigest = obj1.digest(), obj1.hexdigest()
|
D | test_argparse.py | 23 def assertEqual(self, obj1, obj2): argument 24 if obj1 != obj2: 26 print(repr(obj1)) 28 print(obj1) 30 super(TestCase, self).assertEqual(obj1, obj2)
|
D | test_multiprocessing.py | 860 obj1 = val1.get_obj() 946 obj1 = arr1.get_obj()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lobject.h | 240 #define setobj(L,obj1,obj2) \ argument 241 { const TValue *io2=(obj2); TValue *io1=(obj1); \ 353 #define setobj(L,obj1,obj2) \ argument 354 { const TValue *o2_=(obj2); TValue *o1_=(obj1); \
|