Searched refs:dummy_inst (Results 1 – 1 of 1) sorted by relevance
/external/eigen/unsupported/test/ |
D | cxx11_meta.cpp | 75 struct dummy_inst struct 79 dummy_inst() : c(0) {} in dummy_inst() function 80 explicit dummy_inst(int) : c(1) {} in dummy_inst() argument 81 dummy_inst(int, int) : c(2) {} in dummy_inst() argument 82 dummy_inst(int, int, int) : c(3) {} in dummy_inst() function 83 dummy_inst(int, int, int, int) : c(4) {} in dummy_inst() argument 84 dummy_inst(int, int, int, int, int) : c(5) {} in dummy_inst() argument 335 VERIFY_IS_EQUAL((instantiate_by_c_array<dummy_inst, int, 0>(data).c), 0); in test_array_misc() 336 VERIFY_IS_EQUAL((instantiate_by_c_array<dummy_inst, int, 1>(data).c), 1); in test_array_misc() 337 VERIFY_IS_EQUAL((instantiate_by_c_array<dummy_inst, int, 2>(data).c), 2); in test_array_misc() [all …]
|