/external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/ |
base_test.py | 41 expected_list = [1, 2, 4, 8, 16] 42 for actual, expected in zip(actual_list, expected_list): 44 self.assertEquals(len(actual_list), len(expected_list)) 62 expected_list = [1, 2, 4, 8, 16] 63 for actual, expected in zip(actual_list, expected_list): 65 self.assertEquals(len(actual_list), len(expected_list))
|
/external/minijail/test/ |
libminijail_test.cpp | 67 bool check_groups(size_t expected_size, gid_t* expected_list) { 82 if (expected_list[i] == actual_list[j]) { 89 LOG(ERROR) << "Expected GID " << expected_list[i] << " not found.";
|
/test/vts/utils/python/coverage/ |
gcda_parser_test.py | 131 expected_list = [2, 0, 2, 2, 2, 0, 2, 2, 500, 502, 2, 2] 132 for index, expected in zip(range(len(expected_list)), expected_list): 137 expected_list = [2, 2, 2, 2, 2] 138 for index, expected in zip(range(len(expected_list)), expected_list):
|
gcno_parser_test.py | 202 expected_list = [[], [], [35, 40, 41], [42], []] 203 for index, expected in zip(range(5), expected_list): 212 expected_list = [[], [], [5, 11, 12, 13], [15], [17], [18], [20], 214 for index, expected in zip(range(12), expected_list):
|
/external/tensorflow/tensorflow/contrib/input_pipeline/python/ops/ |
input_pipeline_ops_test.py | 57 # Helper method that runs the op len(expected_list) number of times, asserts 58 # that the results are elements of the expected_list and then throws an 60 def _assert_output(self, expected_list, session, op): 61 for element in expected_list:
|
/system/media/camera/docs/ |
metadata_helpers_test.py | 72 def compare_values_against_list(expected_list, enum): 73 for (idx, val) in enumerate(expected_list):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_pyexpat.py | 409 self.assertTrue(self.upto < len(self.expected_list),
411 expected = self.expected_list[self.upto]
421 self.expected_list = [('s', 0, 1, 0), ('s', 5, 2, 1), ('s', 11, 3, 2),
|
/external/python/cpython2/Lib/test/ |
test_pyexpat.py | 435 self.assertTrue(self.upto < len(self.expected_list), 437 expected = self.expected_list[self.upto] 447 self.expected_list = [('s', 0, 1, 0), ('s', 5, 2, 1), ('s', 11, 3, 2),
|
/external/python/cpython3/Lib/test/ |
test_pyexpat.py | 485 self.assertTrue(self.upto < len(self.expected_list), 487 expected = self.expected_list[self.upto] 497 self.expected_list = [('s', 0, 1, 0), ('s', 5, 2, 1), ('s', 11, 3, 2),
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_pyexpat.py | 409 self.assertTrue(self.upto < len(self.expected_list), 411 expected = self.expected_list[self.upto] 421 self.expected_list = [('s', 0, 1, 0), ('s', 5, 2, 1), ('s', 11, 3, 2),
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_pyexpat.py | 409 self.assertTrue(self.upto < len(self.expected_list), 411 expected = self.expected_list[self.upto] 421 self.expected_list = [('s', 0, 1, 0), ('s', 5, 2, 1), ('s', 11, 3, 2),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pyexpat.py | 409 self.assertTrue(self.upto < len(self.expected_list), 411 expected = self.expected_list[self.upto] 421 self.expected_list = [('s', 0, 1, 0), ('s', 5, 2, 1), ('s', 11, 3, 2),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pyexpat.py | 409 self.assertTrue(self.upto < len(self.expected_list), 411 expected = self.expected_list[self.upto] 421 self.expected_list = [('s', 0, 1, 0), ('s', 5, 2, 1), ('s', 11, 3, 2),
|
/external/autotest/site_utils/ |
gs_offloader_unittest.py | [all...] |
/external/python/cpython3/Lib/unittest/test/testmock/ |
testmock.py | 981 expected_list = [((1,), dict(a=3)), ((2,), dict(b=4))] 982 for expected, call_args in zip(expected_list, mock.call_args_list): [all...] |