Searched refs:seq_type (Results 1 – 7 of 7) sorted by relevance
/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/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/ |
D | case.py | 703 msg=None, seq_type=None, max_diff=80 * 8): argument 718 if seq_type is not None: 719 seq_type_name = seq_type.__name__ 720 if not isinstance(seq1, seq_type): 723 if not isinstance(seq2, seq_type): 776 if (len1 == len2 and seq_type is None and 824 self.assertSequenceEqual(list1, list2, msg, seq_type=list) 835 self.assertSequenceEqual(tuple1, tuple2, msg, seq_type=tuple)
|
/external/python/cpython3/Lib/unittest/ |
D | case.py | 922 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): argument 936 if seq_type is not None: 937 seq_type_name = seq_type.__name__ 938 if not isinstance(seq1, seq_type): 941 if not isinstance(seq2, seq_type): 989 if (len1 == len2 and seq_type is None and 1037 self.assertSequenceEqual(list1, list2, msg, seq_type=list) 1048 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 | 1289 .. method:: assertSequenceEqual(first, second, msg=None, seq_type=None) 1291 Tests that two sequences are equal. If a *seq_type* is supplied, both 1292 *first* and *second* must be instances of *seq_type* or a failure will
|
/external/cpuinfo/test/dmesg/ |
D | huawei-mate-8.log | 6036 [ 12.226409s][pid:636,cpu6,IMX298_VENDOR][CAMERA]INFO: hw_sensor_power_up, seq_type:13 SENSOR_VCM… 6042 [ 12.229797s][pid:636,cpu4,IMX298_VENDOR][CAMERA]INFO: hw_sensor_power_up, seq_type:0 SENSOR_MCLK 6045 [ 12.231018s][pid:636,cpu4,IMX298_VENDOR][CAMERA]INFO: hw_sensor_power_up, seq_type:1 SENSOR_RST 6135 [ 12.622833s][pid:636,cpu6,IMX298_VENDOR][CAMERA]INFO: hw_sensor_power_down, seq_type:1 SENSOR_RST 6152 [ 12.647094s][pid:639,cpu7,IMX179_VENDOR][CAMERA]INFO: hw_sensor_power_up, seq_type:0 SENSOR_MCLK 6154 [ 12.648315s][pid:639,cpu7,IMX179_VENDOR][CAMERA]INFO: hw_sensor_power_up, seq_type:1 SENSOR_RST 6164 [ 12.722351s][pid:639,cpu6,IMX179_VENDOR][CAMERA]INFO: hw_sensor_power_down, seq_type:1 SENSOR_RST
|
D | huawei-mate-9.log | 7746 [ 14.458831s][pid:598,cpu6,IMX286HYBIRD][CAMERA]INFO: hw_sensor_power_up, seq_type:22 SENSOR_AVDD0 7757 [ 14.466430s][pid:598,cpu6,IMX286HYBIRD][CAMERA]INFO: hw_sensor_power_up, seq_type:24 SENSOR_AVDD1 7782 [ 14.477355s][pid:598,cpu0,IMX286HYBIRD][CAMERA]INFO: hw_sensor_power_up, seq_type:0 SENSOR_MCLK 7784 [ 14.478668s][pid:598,cpu0,IMX286HYBIRD][CAMERA]INFO: hw_sensor_power_up, seq_type:0 SENSOR_MCLK 7786 [ 14.479980s][pid:598,cpu0,IMX286HYBIRD][CAMERA]INFO: hw_sensor_power_up, seq_type:1 SENSOR_RST 7787 [ 14.481018s][pid:598,cpu2,IMX286HYBIRD][CAMERA]INFO: hw_sensor_power_up, seq_type:18 SENSOR_RST2
|