/third_party/glib/glib/tests/ |
D | testing-helper.c | 62 char *argv1; in main() local 75 argv1 = argv[1]; in main() 86 if (g_strcmp0 (argv1, "pass") == 0) in main() 90 else if (g_strcmp0 (argv1, "skip") == 0) in main() 94 else if (g_strcmp0 (argv1, "incomplete") == 0) in main() 98 else if (g_strcmp0 (argv1, "fail") == 0) in main() 102 else if (g_strcmp0 (argv1, "all-non-failures") == 0) in main() 108 else if (g_strcmp0 (argv1, "all") == 0) in main() 115 else if (g_strcmp0 (argv1, "skip-options") == 0) in main() 130 else if (g_strcmp0 (argv1, "summary") == 0) in main()
|
/third_party/boost/libs/program_options/test/ |
D | exception_txt_test.cpp | 160 const char* argv1[] = { "program", "--int", "A_STRING"}; VEC_STR_PUSH_BACK(argv, argv1); in test_invalid_option_value_exception_msg() local 194 const char* argv1[] = { "program", "--cfgfile"} ; VEC_STR_PUSH_BACK(argv, argv1); in test_missing_value_exception_msg() local 230 …const char* argv1[] = {"program", "--cfgfile", "file", "--cfgfile", "anotherfile"} ; VEC_STR_PUSH_… in test_ambiguous_option_exception_msg() local 259 …const char* argv1[] = {"program", "--cfgfi", "file", "--cfgfi", "anotherfile"} ; VEC_STR_PUSH_BACK… in test_multiple_occurrences_exception_msg() local 288 const char* argv1[] = {"program", "--cfgfile", "file"} ; VEC_STR_PUSH_BACK(argv, argv1); in test_unknown_option_exception_msg() local 317 const char* argv1[] = {"program", "--bool_optio", "file"} ; VEC_STR_PUSH_BACK(argv, argv1); in test_invalid_bool_value_exception_msg() local 358 …const char* argv1[] = { "program", "--cfgfil", "file", "c", "--outpu", "fritz", "hugo" } ; … in test_multiple_values_not_allowed_exception_msg() local 397 …const char* argv1[] = { "program", "--cfg", "--o", "name" } ; VEC_STR_PUSH_BACK(argv, ar… in test_at_least_one_value_required_exception_msg() local 431 const char* argv1[] = { "program", "--g" } ; VEC_STR_PUSH_BACK(argv, argv1); in test_required_option_exception_msg() local
|
/third_party/boost/libs/test/test/utils-ts/ |
D | runtime-param-test.cpp | 32 char const* argv1[] = { "test.exe" }; in BOOST_AUTO_TEST_CASE() local 33 rt::cla::argv_traverser tr1( sizeof(argv1)/sizeof(char const*), argv1 ); in BOOST_AUTO_TEST_CASE() 55 char const* argv1[] = { "test.exe", "a", "b", "" }; in BOOST_AUTO_TEST_CASE() local 56 rt::cla::argv_traverser tr( sizeof(argv1)/sizeof(char const*), argv1 ); in BOOST_AUTO_TEST_CASE() 60 BOOST_TEST( argv1[0] == "test.exe" ); in BOOST_AUTO_TEST_CASE() 61 BOOST_TEST( argv1[1] == "b" ); in BOOST_AUTO_TEST_CASE() 62 BOOST_TEST( argv1[2] == "" ); in BOOST_AUTO_TEST_CASE() 66 BOOST_TEST( argv1[0] == "test.exe" ); in BOOST_AUTO_TEST_CASE() 67 BOOST_TEST( argv1[1] == "" ); in BOOST_AUTO_TEST_CASE() 71 BOOST_TEST( argv1[0] == "test.exe" ); in BOOST_AUTO_TEST_CASE() [all …]
|
/third_party/pulseaudio/src/pulsecore/ |
D | start-child.c | 45 int pa_start_child_for_read(const char *name, const char *argv1, pid_t *pid) { in pa_start_child_for_read() argument 104 execl(name, name, argv1, NULL); in pa_start_child_for_read()
|
D | start-child.h | 26 int pa_start_child_for_read(const char *name, const char *argv1, pid_t *pid);
|
/third_party/openssl/apps/ |
D | engine.c | 300 char *argv1; in engine_main() local 309 while ((argv1 = argv[1]) != NULL && *argv1 != '-') { in engine_main() 310 sk_OPENSSL_CSTRING_push(engines, argv1); in engine_main()
|
/third_party/googletest/googletest/test/ |
D | gtest_unittest.cc | 5693 static void TestParsingFlags(int argc1, const CharType** argv1, in TestParsingFlags() argument 5704 internal::ParseGoogleTestFlagsOnly(&argc1, const_cast<CharType**>(argv1)); in TestParsingFlags() 5715 AssertStringArrayEq(argc1 + 1, argv1, argc2 + 1, argv2); in TestParsingFlags() 5738 # define GTEST_TEST_PARSING_FLAGS_(argv1, argv2, expected, should_print_help) \ argument 5739 TestParsingFlags(sizeof(argv1)/sizeof(*argv1) - 1, argv1, \
|
/third_party/boringssl/src/third_party/googletest/test/ |
D | gtest_unittest.cc | 5690 static void TestParsingFlags(int argc1, const CharType** argv1, in TestParsingFlags() argument 5701 internal::ParseGoogleTestFlagsOnly(&argc1, const_cast<CharType**>(argv1)); in TestParsingFlags() 5712 AssertStringArrayEq(argc1 + 1, argv1, argc2 + 1, argv2); in TestParsingFlags() 5735 # define GTEST_TEST_PARSING_FLAGS_(argv1, argv2, expected, should_print_help) \ argument 5736 TestParsingFlags(sizeof(argv1)/sizeof(*argv1) - 1, argv1, \
|