Home
last modified time | relevance | path

Searched refs:CmdLine (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp21 std::string CmdLine = Cmd.toString(); in ExecuteCommand() local
22 return system(CmdLine.c_str()); in ExecuteCommand()
H A DFuzzerUtilDarwin.cpp42 std::string CmdLine = Cmd.toString(); in ExecuteCommand() local
102 const char *CommandCStr = CmdLine.c_str(); in ExecuteCommand()
H A DFuzzerUtilWindows.cpp156 std::string CmdLine = Cmd.toString(); in ExecuteCommand() local
157 return system(CmdLine.c_str()); in ExecuteCommand()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp235 static bool checkIsCLMode(ArrayRef<std::string> CmdLine) { in checkIsCLMode()
237 for (StringRef S : llvm::reverse(CmdLine)) { in checkIsCLMode()
243 return llvm::sys::path::stem(CmdLine.front()).endswith_lower("cl"); in checkIsCLMode()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DFileCheck.cpp760 std::unique_ptr<MemoryBuffer> CmdLine = MemoryBuffer::getMemBufferCopy( in ReadCheckFile() local
764 CmdLine->getBuffer().substr(Prefix.size(), PatternString.size()); in ReadCheckFile()
765 SM.AddNewSourceBuffer(std::move(CmdLine), SMLoc()); in ReadCheckFile()