Home
last modified time | relevance | path

Searched refs:test_case_count (Results 1 – 25 of 29) sorted by relevance

12

/external/opencv3/modules/ts/src/
Dts_arrtest.cpp53 test_case_count = default_test_case_count; in ArrayTest()
91 test_case_count = cvReadInt( find_param( fs, "test_case_count" ), test_case_count ); in read_params()
92 test_case_count = cvRound( test_case_count*ts->get_test_case_count_scale() ); in read_params()
96 test_case_count = clipInt( test_case_count, 0, 100000 ); in read_params()
Dts.cpp170 test_case_count = -1; in BaseTest()
296 return test_case_count; in get_test_case_count()
/external/opencv3/modules/ml/test/
Dtest_mltests2.cpp227 test_case_count = -1; in read_params()
231 test_case_count = (int)fn.size(); in read_params()
232 if( test_case_count <= 0 ) in read_params()
233 test_case_count = -1; in read_params()
234 if( test_case_count > 0 ) in read_params()
236 dataSetNames.resize( test_case_count ); in read_params()
238 for( int i = 0; i < test_case_count; i++, ++it ) in read_params()
255 for (int i = 0; i < test_case_count; i++) in run()
263 if ( test_case_count <= 0) in run()
/external/opencv3/modules/calib3d/test/
Dtest_decompose_projection.cpp55 test_case_count = 30; in CV_DecomposeProjectionMatrixTest()
68 for (int iter = start_from; iter < test_case_count; ++iter) in run()
71 progress = update_progress(progress, iter, test_case_count, 0); in run()
Dtest_posit.cpp59 test_case_count = 20; in CV_POSITTest()
120 for( counter = start_from; counter < test_case_count; counter++ ) in run()
123 progress = update_progress( progress, counter, test_case_count, 0 ); in run()
/external/opencv3/modules/core/test/
Dtest_rand.cpp99 test_case_count = 200; in run()
101 for( int idx = 0; idx < test_case_count; idx++ ) in run()
103 progress = update_progress( progress, idx, test_case_count, 0 ); in run()
Dtest_rotatedrect.cpp62 test_case_count = 100; in Core_RotatedRectConstructorTest()
Dtest_concatenation.cpp80 test_case_count = 1; in Core_ConcatenationTest()
Dtest_io.cpp94 test_case_count = 4; in run()
98 for( int idx = 0; idx < test_case_count; idx++ ) in run()
101 progress = update_progress( progress, idx, test_case_count, 0 ); in run()
Dtest_math.cpp616 test_case_count = 100; in Core_GEMMTest()
725 test_case_count = 100; in Core_MulTransposedTest()
1081 test_case_count = 100; in Core_MahalanobisTest()
1160 test_case_count = 100; in Core_CovarMatrixTest()
1347 test_case_count = 100; in Core_DetTest()
1509 test_case_count = 100; in Core_InvertTest()
1664 test_case_count = 100; in Core_SolveTest()
1805 test_case_count = 100; in Core_SVDTest()
2034 test_case_count = 100; in Core_SVBkSbTest()
/external/opencv3/modules/video/test/
Dtest_camshift.cpp74 test_case_count = 100; in CV_TrackBaseTest()
99 test_case_count = cvReadInt( find_param( fs, "test_case_count" ), test_case_count ); in read_params()
/external/opencv3/modules/objdetect/test/
Dtest_cascadeandhog.cpp110 test_case_count = -1; in prepareData()
132 test_case_count = (int)detectorNames.size(); in prepareData()
223 for( int di = 0; di < test_case_count; di++ ) in run()
225 progress = update_progress( progress, di, test_case_count, 0 ); in run()
247 if ( test_case_count <= 0 || imageFilenames.size() <= 0 ) in run()
1344 const unsigned int test_case_count = 5; in TEST() local
1345 for (unsigned int i = 0; i < test_case_count && !reference_hog.is_failed(); ++i) in TEST()
/external/opencv3/modules/imgproc/test/
Dtest_bilateral_filter.cpp84 test_case_count = 1000; in CV_BilateralFilterTest()
Dtest_contours.cpp81 test_case_count = 300; in CV_FindContourTest()
Dtest_histograms.cpp92 test_case_count = 100; in CV_BaseHistTest()
125 test_case_count = cvReadInt( find_param( fs, "struct_count" ), test_case_count ); in read_params()
Dtest_moments.cpp81 OCL_TUNING_MODE_ONLY(test_case_count = 10); in CV_MomentsTest()
Dtest_imgwarp_strict.cpp104 test_case_count = 40; in CV_ImageWarpBaseTest()
222 for (int i = 0; i < test_case_count; ++i) in run()
Dtest_convhull.cpp223 test_case_count = 500; in CV_BaseShapeDescrTest()
257 test_case_count = cvReadInt( find_param( fs, "struct_count" ), test_case_count ); in read_params()
/external/opencv3/modules/ts/include/opencv2/
Dts.hpp218 int test_case_count; // the total number of test cases member in cvtest::BaseTest
/external/protobuf/gtest/src/
Dgtest.cc2487 static internal::String FormatTestCaseCount(int test_case_count) { in FormatTestCaseCount() argument
2488 return FormatCountableNoun(test_case_count, "test case", "test cases"); in FormatTestCaseCount()
/external/google-breakpad/src/testing/gtest/src/
Dgtest.cc2493 static internal::String FormatTestCaseCount(int test_case_count) { in FormatTestCaseCount() argument
2494 return FormatCountableNoun(test_case_count, "test case", "test cases"); in FormatTestCaseCount()
/external/mesa3d/src/gtest/src/
Dgtest.cc2492 static internal::String FormatTestCaseCount(int test_case_count) { in FormatTestCaseCount() argument
2493 return FormatCountableNoun(test_case_count, "test case", "test cases"); in FormatTestCaseCount()
/external/llvm/utils/unittest/googletest/src/
Dgtest.cc2463 static internal::String FormatTestCaseCount(int test_case_count) { in FormatTestCaseCount() argument
2464 return FormatCountableNoun(test_case_count, "test case", "test cases"); in FormatTestCaseCount()
/external/gtest/src/
Dgtest.cc2492 static std::string FormatTestCaseCount(int test_case_count) { in FormatTestCaseCount() argument
2493 return FormatCountableNoun(test_case_count, "test case", "test cases"); in FormatTestCaseCount()
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
Dgtest.cc2492 static std::string FormatTestCaseCount(int test_case_count) { in FormatTestCaseCount() argument
2493 return FormatCountableNoun(test_case_count, "test case", "test cases"); in FormatTestCaseCount()

12