Lines Matching refs:Args
16 std::vector<std::string> Args; in getCommandLineArgsForTesting() local
20 Args = {"-x", "c", "-std=c89"}; in getCommandLineArgsForTesting()
23 Args = {"-x", "c", "-std=c99"}; in getCommandLineArgsForTesting()
26 Args = {"-std=c++03", "-frtti"}; in getCommandLineArgsForTesting()
29 Args = {"-std=c++11", "-frtti"}; in getCommandLineArgsForTesting()
32 Args = {"-std=c++14", "-frtti"}; in getCommandLineArgsForTesting()
35 Args = {"-std=c++17", "-frtti"}; in getCommandLineArgsForTesting()
38 Args = {"-std=c++20", "-frtti"}; in getCommandLineArgsForTesting()
41 Args = {"-std=c++23", "-frtti"}; in getCommandLineArgsForTesting()
44 Args = {"-x", "objective-c", "-frtti", "-fobjc-nonfragile-abi"}; in getCommandLineArgsForTesting()
47 Args = {"-x", "objective-c++", "-frtti"}; in getCommandLineArgsForTesting()
52 return Args; in getCommandLineArgsForTesting()
56 std::vector<std::string> Args; in getCC1ArgsForTesting() local
59 Args = {"-xc", "-std=c89"}; in getCC1ArgsForTesting()
62 Args = {"-xc", "-std=c99"}; in getCC1ArgsForTesting()
65 Args = {"-std=c++03"}; in getCC1ArgsForTesting()
68 Args = {"-std=c++11"}; in getCC1ArgsForTesting()
71 Args = {"-std=c++14"}; in getCC1ArgsForTesting()
74 Args = {"-std=c++17"}; in getCC1ArgsForTesting()
77 Args = {"-std=c++20"}; in getCC1ArgsForTesting()
80 Args = {"-std=c++23"}; in getCC1ArgsForTesting()
83 Args = {"-xobjective-c"}; in getCC1ArgsForTesting()
86 Args = {"-xobjective-c++"}; in getCC1ArgsForTesting()
91 return Args; in getCC1ArgsForTesting()