Searched refs:seq_type (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/heap/ |
D | marking.cc | 152 CellPrinter() : seq_start(0), seq_type(0), seq_length(0) {} in CellPrinter() 155 if (cell == seq_type) { in Print() 165 seq_type = cell; in Print() 176 PrintF("%d: %dx%d\n", seq_start, seq_type == 0 ? 0 : 1, in Flush() 186 uint32_t seq_type; member in v8::internal::__anon522e25580111::CellPrinter
|
/external/python/cpython2/Lib/unittest/ |
D | case.py | 624 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): argument 638 if seq_type is not None: 639 seq_type_name = seq_type.__name__ 640 if not isinstance(seq1, seq_type): 643 if not isinstance(seq2, seq_type): 696 if (len1 == len2 and seq_type is None and 743 self.assertSequenceEqual(list1, list2, msg, seq_type=list) 754 self.assertSequenceEqual(tuple1, tuple2, msg, seq_type=tuple)
|
/external/python/cpython3/Lib/unittest/ |
D | case.py | 930 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): argument 944 if seq_type is not None: 945 seq_type_name = seq_type.__name__ 946 if not isinstance(seq1, seq_type): 949 if not isinstance(seq2, seq_type): 997 if (len1 == len2 and seq_type is None and 1045 self.assertSequenceEqual(list1, list2, msg, seq_type=list) 1056 self.assertSequenceEqual(tuple1, tuple2, msg, seq_type=tuple)
|
/external/python/cpython2/Doc/library/ |
D | unittest.rst | 1146 .. method:: assertSequenceEqual(seq1, seq2, msg=None, seq_type=None) 1148 Tests that two sequences are equal. If a *seq_type* is supplied, both 1149 *seq1* and *seq2* must be instances of *seq_type* or a failure will
|
/external/python/cpython3/Doc/library/ |
D | unittest.rst | 1280 .. method:: assertSequenceEqual(first, second, msg=None, seq_type=None) 1282 Tests that two sequences are equal. If a *seq_type* is supplied, both 1283 *first* and *second* must be instances of *seq_type* or a failure will
|