Lines Matching refs:opt

333     JDWP::JdwpOptions opt = JDWP::JdwpOptions();  in TEST_F()  local
334 opt.transport = JDWP::JdwpTransportType::kJdwpTransportSocket; in TEST_F()
335 opt.port = 8000; in TEST_F()
336 opt.server = true; in TEST_F()
340 EXPECT_SINGLE_PARSE_VALUE(opt, opt_args, M::JdwpOptions); in TEST_F()
347 JDWP::JdwpOptions opt = JDWP::JdwpOptions(); in TEST_F() local
348 opt.transport = JDWP::JdwpTransportType::kJdwpTransportSocket; in TEST_F()
349 opt.host = "localhost"; in TEST_F()
350 opt.port = 6500; in TEST_F()
351 opt.server = false; in TEST_F()
355 EXPECT_SINGLE_PARSE_VALUE(opt, opt_args, M::JdwpOptions); in TEST_F()
375 std::vector<std::string> opt = {"hello"}; in TEST_F() local
377 EXPECT_SINGLE_PARSE_VALUE(opt, "-Dhello", M::PropertiesList); in TEST_F()
381 std::vector<std::string> opt = {"hello", "world"}; in TEST_F() local
383 EXPECT_SINGLE_PARSE_VALUE(opt, "-Dhello -Dworld", M::PropertiesList); in TEST_F()
387 std::vector<std::string> opt = {"one", "two", "three"}; in TEST_F() local
389 EXPECT_SINGLE_PARSE_VALUE(opt, "-Done -Dtwo -Dthree", M::PropertiesList); in TEST_F()
401 std::vector<std::string> opt = {"hello"}; in TEST_F() local
402 EXPECT_SINGLE_PARSE_VALUE(opt, "-Xcompiler-option hello", M::CompilerOptions); in TEST_F()
406 std::vector<std::string> opt = {"hello", "world"}; in TEST_F() local
407 EXPECT_SINGLE_PARSE_VALUE(opt, in TEST_F()
413 std::vector<std::string> opt = {"one", "two", "three"}; in TEST_F() local
414 EXPECT_SINGLE_PARSE_VALUE(opt, in TEST_F()
449 TestProfilerOptions opt; in TEST_F() local
450 opt.enabled_ = true; in TEST_F()
452 EXPECT_SINGLE_PARSE_VALUE(opt, in TEST_F()
458 TestProfilerOptions opt; in TEST_F() local
460 opt.output_file_name_ = "hello_world.txt"; in TEST_F()
462 EXPECT_SINGLE_PARSE_VALUE(opt, in TEST_F()
468 TestProfilerOptions opt = TestProfilerOptions(); in TEST_F() local
470 opt.output_file_name_ = "output.txt"; in TEST_F()
471 opt.period_s_ = 123u; in TEST_F()
472 opt.duration_s_ = 456u; in TEST_F()
473 opt.interval_us_ = 789u; in TEST_F()
474 opt.backoff_coefficient_ = 2.0; in TEST_F()
475 opt.start_immediately_ = true; in TEST_F()
476 opt.top_k_threshold_ = 50.0; in TEST_F()
477 opt.top_k_change_threshold_ = 60.0; in TEST_F()
478 opt.profile_type_ = kProfilerMethod; in TEST_F()
479 opt.max_stack_depth_ = 1337u; in TEST_F()
481 EXPECT_SINGLE_PARSE_VALUE(opt, in TEST_F()
496 TestProfilerOptions opt = TestProfilerOptions(); in TEST_F() local
497 opt.profile_type_ = kProfilerBoundedStack; in TEST_F()
499 EXPECT_SINGLE_PARSE_VALUE(opt, in TEST_F()