Home
last modified time | relevance | path

Searched refs:GetCommand (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/flang/unittests/Runtime/
H A DCommandTest.cpp125 return RTNAME(GetCommand)(value, length, errmsg); in CheckCommandValue()
187 EXPECT_GT(RTNAME(GetCommand)(value.get(), length.get(), err.get()), 0); in CheckMissingCommandValue()
208 TEST_F(NoArgv, GetCommand) { CheckMissingCommandValue(); } in TEST_F() argument
250 TEST_F(OneArgument, GetCommand) { CheckCommandValue(oneArgArgv, 2); } in TEST_F() argument
318 TEST_F(SeveralArguments, GetCommand) { in TEST_F() argument
337 EXPECT_GT(RTNAME(GetCommand)(nullptr, nullptr, nullptr), 0); in TEST_F()
349 TEST_F(OnlyValidArguments, GetCommand) { in TEST_F() argument
376 EXPECT_EQ(0, RTNAME(GetCommand)(nullptr, nullptr, nullptr)); in TEST_F()
383 EXPECT_EQ(0, RTNAME(GetCommand)(value.get(), nullptr, nullptr)); in TEST_F()
388 EXPECT_EQ(0, RTNAME(GetCommand)(nullptr, length.get(), nullptr)); in TEST_F()
[all …]
/llvm-project-15.0.7/flang/include/flang/Runtime/
H A Dcommand.h30 std::int32_t RTNAME(GetCommand)(const Descriptor *command = nullptr,
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBPlatform.i71 GetCommand();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBPlatform.h69 const char *GetCommand();
/llvm-project-15.0.7/lldb/test/API/commands/platform/basic/
H A DTestPlatformPython.py91 self.assertIn('echo $0', sh_cmd.GetCommand())
/llvm-project-15.0.7/lldb/source/API/
H A DSBPlatform.cpp218 const char *SBPlatformShellCommand::GetCommand() { in GetCommand() function in SBPlatformShellCommand
546 const char *command = shell_command.GetCommand(); in Run()
/llvm-project-15.0.7/flang/runtime/
H A Dcommand.cpp140 std::int32_t RTNAME(GetCommand)(const Descriptor *value, in RTNAME() argument