Home
last modified time | relevance | path

Searched refs:GetCommandLine (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_driver/include/
Ddriver_options.h24 static maplecl::OptionCategory &driverCategory = maplecl::CommandLine::GetCommandLine().defaultCate…
26 static maplecl::OptionCategory &clangCategory = maplecl::CommandLine::GetCommandLine().clangCategor…
27 static maplecl::OptionCategory &hir2mplCategory = maplecl::CommandLine::GetCommandLine().hir2mplCat…
28 static maplecl::OptionCategory &mpl2mplCategory = maplecl::CommandLine::GetCommandLine().mpl2mplCat…
29 static maplecl::OptionCategory &meCategory = maplecl::CommandLine::GetCommandLine().meCategory;
30 static maplecl::OptionCategory &cgCategory = maplecl::CommandLine::GetCommandLine().cgCategory;
31 static maplecl::OptionCategory &asCategory = maplecl::CommandLine::GetCommandLine().asCategory;
32 static maplecl::OptionCategory &ldCategory = maplecl::CommandLine::GetCommandLine().ldCategory;
34 static maplecl::OptionCategory &jbc2mplCategory = maplecl::CommandLine::GetCommandLine().jbc2mplCat…
35 static maplecl::OptionCategory &ipaCategory = maplecl::CommandLine::GetCommandLine().ipaCategory;
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/test/
Dcl_ut_test.cpp165 auto err = maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
185 auto err = maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
219 auto err = maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
222 auto &badArgs = maplecl::CommandLine::GetCommandLine().badCLArgs; in TEST()
247 auto err = maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
282 auto err = maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
285 auto &badArgs = maplecl::CommandLine::GetCommandLine().badCLArgs; in TEST()
300 auto err = maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
303 auto &badArgs = maplecl::CommandLine::GetCommandLine().badCLArgs; in TEST()
318 auto err = maplecl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
[all …]
Dtriple_ut_test.cpp74 cl::CommandLine::GetCommandLine().Clear(); in TEST()
75 auto err = cl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
88 cl::CommandLine::GetCommandLine().Clear(); in TEST()
89 err = cl::CommandLine::GetCommandLine().Parse(argc, (char **)argv2); in TEST()
102 cl::CommandLine::GetCommandLine().Clear(); in TEST()
103 err = cl::CommandLine::GetCommandLine().Parse(argc, (char **)argv3); in TEST()
120 cl::CommandLine::GetCommandLine().Clear(); in TEST()
121 auto err = cl::CommandLine::GetCommandLine().Parse(argc, (char **)argv); in TEST()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
Dcl_option.cpp27 auto &cl = CommandLine::GetCommandLine(); in FinalizeInitialization()
Dcl_parser.cpp30 CommandLine &CommandLine::GetCommandLine() in GetCommandLine() function in CommandLine
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
Dlitecg.cpp39 maplecl::CommandLine::GetCommandLine().Parse(litecgOptions, cgCategory); in LiteCG()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dcl_parser.h93 static CommandLine &GetCommandLine();
/arkcompiler/runtime_core/static_core/compiler/aot/
Daot_file.h137 const char *GetCommandLine() const in GetCommandLine() function
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Doption.cpp315 …(void)maplecl::CommandLine::GetCommandLine().Parse(argc, static_cast<char **>(argv), mpl2mplCatego… in ParseOptions()
321 auto &badArgs = maplecl::CommandLine::GetCommandLine().badCLArgs; in ParseOptions()
/arkcompiler/runtime_core/compiler/tests/
Daot_test.cpp245 ASSERT_TRUE(strcmp(cmdline, aot_file->GetCommandLine()) == 0U); in TEST_F()
591 ASSERT_TRUE(strcmp(cmdline, aot_file->GetCommandLine()) == 0U); in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/tools/aotdump/
Daotdump.cpp224 (*stream_) << " cmdline: " << aotFile_->GetCommandLine() << std::endl; in DumpHeader()
/arkcompiler/runtime_core/static_core/compiler/tests/
Daot_test.cpp244 ASSERT_TRUE(strcmp(cmdline_, aotFile->GetCommandLine()) == 0U); in DoChecks()