Home
last modified time | relevance | path

Searched refs:current_test (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/v8/test/cctest/
Dtest-bignum-dtoa.cc266 const PrecomputedShortest current_test = precomputed[i]; in TEST() local
267 double v = current_test.v; in TEST()
269 CHECK_EQ(current_test.decimal_point, point); in TEST()
270 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
284 const PrecomputedFixed current_test = precomputed[i]; in TEST() local
285 double v = current_test.v; in TEST()
286 int number_digits = current_test.number_digits; in TEST()
288 CHECK_EQ(current_test.decimal_point, point); in TEST()
291 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
305 const PrecomputedPrecision current_test = precomputed[i]; in TEST() local
[all …]
Dtest-dtoa.cc277 const PrecomputedShortest current_test = precomputed[i]; in TEST() local
278 double v = current_test.v; in TEST()
281 CHECK_EQ(current_test.decimal_point, point); in TEST()
282 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
297 const PrecomputedFixed current_test = precomputed[i]; in TEST() local
298 double v = current_test.v; in TEST()
299 int number_digits = current_test.number_digits; in TEST()
302 CHECK_EQ(current_test.decimal_point, point); in TEST()
305 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
320 const PrecomputedPrecision current_test = precomputed[i]; in TEST() local
[all …]
Dtest-fast-dtoa.cc240 const PrecomputedShortest current_test = precomputed[i]; in TEST() local
242 double v = current_test.v; in TEST()
248 CHECK_EQ(current_test.decimal_point, point); in TEST()
249 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
271 const PrecomputedPrecision current_test = precomputed[i]; in TEST() local
272 double v = current_test.v; in TEST()
273 int number_digits = current_test.number_digits; in TEST()
283 CHECK_EQ(current_test.decimal_point, point); in TEST()
284 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
Dtest-fixed-dtoa.cc502 const PrecomputedFixed current_test = precomputed[i]; in TEST() local
503 double v = current_test.v; in TEST()
504 int number_digits = current_test.number_digits; in TEST()
508 CHECK_EQ(current_test.decimal_point, point); in TEST()
510 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
/external/chromium_org/chrome/browser/password_manager/
Dpassword_store_mac_unittest.cc792 unsigned int current_test = 0; in TEST_F() local
795 CHECK(current_test < kTestCount); in TEST_F()
796 test_data[KEYCHAIN_INPUT][current_test].push_back(&keychain_user_1); in TEST_F()
797 test_data[KEYCHAIN_INPUT][current_test].push_back(&keychain_user_2); in TEST_F()
798 test_data[DATABASE_INPUT][current_test].push_back(&db_user_1); in TEST_F()
799 test_data[DATABASE_INPUT][current_test].push_back(&db_user_1_with_path); in TEST_F()
800 test_data[DATABASE_INPUT][current_test].push_back(&db_user_3_with_path); in TEST_F()
801 test_data[MERGE_OUTPUT][current_test].push_back(&merged_user_1); in TEST_F()
802 test_data[MERGE_OUTPUT][current_test].push_back(&merged_user_1_with_db_path); in TEST_F()
803 test_data[KEYCHAIN_OUTPUT][current_test].push_back(&keychain_user_2); in TEST_F()
[all …]
/external/chromium_org/ppapi/tests/
Dtest_case.cc59 std::string current_test; in ParseTestFilter() local
60 while (std::getline(filter_stream, current_test, ',')) { in ParseTestFilter()
63 std::string stripped_test_name(StripPrefix(current_test)); in ParseTestFilter()
70 bool should_run_test = (current_test == stripped_test_name); in ParseTestFilter()
/external/stlport/test/eh/
Dnc_alloc.h102 static const char* current_test; member
173 current_test = str; in SetCurrentTestName()
Dnc_alloc.cpp39 const char* TestController::current_test = "<unknown>"; member in TestController
313 EH_STD::cerr<<"testing "<<current_test <<" (" << current_test_category <<")"; in PrintTestName()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
Dperftestsrunner.py294 current_test = tests[path[i]]
296 current_test.setdefault('metrics', {})
297 assert metric_name not in current_test['metrics']
298 current_test['metrics'][metric_name] = {'current': iteration_values}
300 current_test.setdefault('tests', {})
301 tests = current_test['tests']
/external/chromium_org/chrome/browser/net/
Dnetwork_stats.cc542 TestType current_test = test_sequence_[current_test_index_]; in TestPhaseComplete() local
543 DCHECK_LT(current_test, TEST_TYPE_MAX); in TestPhaseComplete()
544 if (current_test != TOKEN_REQUEST) { in TestPhaseComplete()
545 RecordHistograms(current_test); in TestPhaseComplete()
559 current_test = GetNextTest(); in TestPhaseComplete()
560 if (current_test_index_ <= maximum_tests_ && current_test < TEST_TYPE_MAX) { in TestPhaseComplete()
561 DVLOG(1) << "NetworkStat: Start Probe test: " << current_test; in TestPhaseComplete()
/external/cmockery/cmockery_0_1_2/src/
Dcmockery.c1565 size_t current_test = 0; in _run_tests() local
1583 while (current_test < number_of_tests) { in _run_tests()
1586 const UnitTest * const test = &tests[current_test++]; in _run_tests()