HomeSort by relevance Sort by last modified time
    Searched refs:assertIsInstance (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 20 self.assertIsInstance(a, ast.Module)
22 self.assertIsInstance(child1, ast.Stmt)
24 self.assertIsInstance(child2, ast.Assign)
test_pwd.py 17 self.assertIsInstance(e.pw_name, basestring)
19 self.assertIsInstance(e.pw_passwd, basestring)
21 self.assertIsInstance(e.pw_uid, (int, long))
23 self.assertIsInstance(e.pw_gid, (int, long))
25 self.assertIsInstance(e.pw_gecos, basestring)
27 self.assertIsInstance(e.pw_dir, basestring)
29 self.assertIsInstance(e.pw_shell, basestring)
test_sys.py 206 self.assertIsInstance(sys.getdefaultencoding(), str)
244 self.assertIsInstance(v[0], int)
245 self.assertIsInstance(v[1], int)
246 self.assertIsInstance(v[2], int)
247 self.assertIsInstance(v[3], int)
248 self.assertIsInstance(v[4], str)
250 self.assertIsInstance(v.major, int)
251 self.assertIsInstance(v.minor, int)
252 self.assertIsInstance(v.build, int)
253 self.assertIsInstance(v.platform, int
    [all...]
test_future5.py 12 self.assertIsInstance("", unicode)
test_grp.py 15 self.assertIsInstance(value.gr_name, basestring)
17 self.assertIsInstance(value.gr_passwd, basestring)
19 self.assertIsInstance(value.gr_gid, (long, int))
21 self.assertIsInstance(value.gr_mem, list)
test_abc.py 97 self.assertIsInstance(b, A)
98 self.assertIsInstance(b, (A,))
104 self.assertIsInstance(c, A)
105 self.assertIsInstance(c, (A,))
123 self.assertIsInstance(42, A)
124 self.assertIsInstance(42, (A,))
130 self.assertIsInstance("", A)
131 self.assertIsInstance("", (A,))
194 self.assertIsInstance(42, A)
195 self.assertIsInstance(42, (A,)
    [all...]
test_dictviews.py 74 self.assertIsInstance(repr(d), str)
76 self.assertIsInstance(r, str)
80 self.assertIsInstance(r, str)
84 self.assertIsInstance(r, str)
test_macpath.py 45 self.assertIsInstance(macpath.normpath(path), unicode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 20 self.assertIsInstance(a, ast.Module)
22 self.assertIsInstance(child1, ast.Stmt)
24 self.assertIsInstance(child2, ast.Assign)
test_pwd.py 17 self.assertIsInstance(e.pw_name, basestring)
19 self.assertIsInstance(e.pw_passwd, basestring)
21 self.assertIsInstance(e.pw_uid, (int, long))
23 self.assertIsInstance(e.pw_gid, (int, long))
25 self.assertIsInstance(e.pw_gecos, basestring)
27 self.assertIsInstance(e.pw_dir, basestring)
29 self.assertIsInstance(e.pw_shell, basestring)
test_sys.py 206 self.assertIsInstance(sys.getdefaultencoding(), str)
244 self.assertIsInstance(v[0], int)
245 self.assertIsInstance(v[1], int)
246 self.assertIsInstance(v[2], int)
247 self.assertIsInstance(v[3], int)
248 self.assertIsInstance(v[4], str)
250 self.assertIsInstance(v.major, int)
251 self.assertIsInstance(v.minor, int)
252 self.assertIsInstance(v.build, int)
253 self.assertIsInstance(v.platform, int
    [all...]
test_future5.py 12 self.assertIsInstance("", unicode)
test_grp.py 15 self.assertIsInstance(value.gr_name, basestring)
17 self.assertIsInstance(value.gr_passwd, basestring)
19 self.assertIsInstance(value.gr_gid, (long, int))
21 self.assertIsInstance(value.gr_mem, list)
test_abc.py 97 self.assertIsInstance(b, A)
98 self.assertIsInstance(b, (A,))
104 self.assertIsInstance(c, A)
105 self.assertIsInstance(c, (A,))
123 self.assertIsInstance(42, A)
124 self.assertIsInstance(42, (A,))
130 self.assertIsInstance("", A)
131 self.assertIsInstance("", (A,))
194 self.assertIsInstance(42, A)
195 self.assertIsInstance(42, (A,)
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
descriptor_pool_test.py 60 self.assertIsInstance(file_desc1, descriptor.FileDescriptor)
67 self.assertIsInstance(file_desc2, descriptor.FileDescriptor)
82 self.assertIsInstance(file_desc1, descriptor.FileDescriptor)
90 self.assertIsInstance(file_desc2, descriptor.FileDescriptor)
106 self.assertIsInstance(msg1, descriptor.Descriptor)
127 self.assertIsInstance(msg2, descriptor.Descriptor)
179 self.assertIsInstance(enum1, descriptor.EnumDescriptor)
185 self.assertIsInstance(nested_enum1, descriptor.EnumDescriptor)
193 self.assertIsInstance(enum2, descriptor.EnumDescriptor)
199 self.assertIsInstance(nested_enum2, descriptor.EnumDescriptor
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/timeline/
counter_unittest.py 22 self.assertIsInstance(itr, types.GeneratorType)
47 self.assertIsInstance(events, types.GeneratorType)
55 self.assertIsInstance(events, types.GeneratorType)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_recno.py 19 def assertIsInstance(self, obj, datatype, msg=None) :
44 self.assertIsInstance(recno, int)
60 self.assertIsInstance(data, str)
100 self.assertIsInstance(keys, list)
101 self.assertIsInstance(keys[0], int)
107 self.assertIsInstance(items, list)
108 self.assertIsInstance(items[0], tuple)
110 self.assertIsInstance(items[0][0], int)
111 self.assertIsInstance(items[0][1], str)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_recno.py 19 def assertIsInstance(self, obj, datatype, msg=None) :
44 self.assertIsInstance(recno, int)
60 self.assertIsInstance(data, str)
100 self.assertIsInstance(keys, list)
101 self.assertIsInstance(keys[0], int)
107 self.assertIsInstance(items, list)
108 self.assertIsInstance(items[0], tuple)
110 self.assertIsInstance(items[0][0], int)
111 self.assertIsInstance(items[0][1], str)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_results_unittest.py 47 self.assertIsInstance(new_result, TestResult)
test_failures_unittest.py 39 self.assertIsInstance(new_failure_obj, cls)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
platform_backend_unittest.py 17 self.assertIsInstance(can_monitor_power, bool)
  /external/lldb/test/unittest2/test/
test_loader.py 75 self.assertIsInstance(suite, loader.suiteClass)
94 self.assertIsInstance(suite, loader.suiteClass)
107 self.assertIsInstance(suite, loader.suiteClass)
121 self.assertIsInstance(suite, loader.suiteClass)
161 self.assertIsInstance(tests, unittest2.TestSuite)
168 self.assertIsInstance(suite, unittest2.TestSuite)
184 self.assertIsInstance(suite, unittest2.TestSuite)
375 self.assertIsInstance(suite, loader.suiteClass)
391 self.assertIsInstance(suite, loader.suiteClass)
406 self.assertIsInstance(suite, loader.suiteClass
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_loader.py 76 self.assertIsInstance(suite, loader.suiteClass)
95 self.assertIsInstance(suite, loader.suiteClass)
108 self.assertIsInstance(suite, loader.suiteClass)
122 self.assertIsInstance(suite, loader.suiteClass)
162 self.assertIsInstance(tests, unittest.TestSuite)
169 self.assertIsInstance(suite, unittest.TestSuite)
185 self.assertIsInstance(suite, unittest.TestSuite)
375 self.assertIsInstance(suite, loader.suiteClass)
391 self.assertIsInstance(suite, loader.suiteClass)
406 self.assertIsInstance(suite, loader.suiteClass
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_loader.py 76 self.assertIsInstance(suite, loader.suiteClass)
95 self.assertIsInstance(suite, loader.suiteClass)
108 self.assertIsInstance(suite, loader.suiteClass)
122 self.assertIsInstance(suite, loader.suiteClass)
162 self.assertIsInstance(tests, unittest.TestSuite)
169 self.assertIsInstance(suite, unittest.TestSuite)
185 self.assertIsInstance(suite, unittest.TestSuite)
375 self.assertIsInstance(suite, loader.suiteClass)
391 self.assertIsInstance(suite, loader.suiteClass)
406 self.assertIsInstance(suite, loader.suiteClass
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_token_matcher_unittest.py 50 self.assertIsInstance(switchLineProcessor, SwitchLineProcessor)
59 self.assertIsInstance(caseLineProcessor, CaseLineProcessor)

Completed in 7512 milliseconds

1 2 3 4 5 6 7