Home
last modified time | relevance | path

Searched refs:Quote (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/clang/lib/Driver/
H A DJob.cpp201 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() argument
233 llvm::sys::printArg(OS, F.c_str(), Quote); in Print()
248 llvm::sys::printArg(OS, ShortName.str(), Quote); in Print()
254 llvm::sys::printArg(OS, Arg, Quote); in Print()
259 llvm::sys::printArg(OS, "-ivfsoverlay", Quote); in Print()
261 llvm::sys::printArg(OS, CrashInfo->VFSPath.str(), Quote); in Print()
276 llvm::sys::printArg(OS, ModCachePath, Quote); in Print()
374 Command::Print(OS, Terminator, Quote, CrashInfo); in Print()
430 Command::Print(OS, "", Quote, CrashInfo); in Print()
444 void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() argument
[all …]
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DJob.h175 virtual void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
240 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
259 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
279 bool Quote, CrashReportInfo *CrashInfo = nullptr) const;
/llvm-project-15.0.7/llvm/lib/Support/
H A DProgram.cpp82 void sys::printArg(raw_ostream &OS, StringRef Arg, bool Quote) { in printArg() argument
85 if (!Quote && !Escape) { in printArg()
H A DYAMLTraits.cpp710 const char *const Quote = MustQuote == QuotingType::Single ? "'" : "\""; in scalarString() local
711 output(Quote); // Starting quote. in scalarString()
718 outputUpToEndOfLine(Quote); in scalarString()
737 outputUpToEndOfLine(Quote); // Ending quote. in scalarString()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dflags_parser.cpp71 const char Quote = Buffer[Pos++]; in parseFlag() local
72 while (Buffer[Pos] != 0 && Buffer[Pos] != Quote) in parseFlag()
/llvm-project-15.0.7/compiler-rt/lib/gwp_asan/optional/
H A Doptions_parser.cpp99 const char Quote = Buffer[Pos++]; in parseOption() local
100 while (Buffer[Pos] != 0 && Buffer[Pos] != Quote) in parseOption()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dprivate-2.ll2 ; Quote should be outside of private prefix.
/llvm-project-15.0.7/clang/lib/AST/
H A DCommentLexer.cpp179 const char Quote = *BufferPtr; in skipHTMLQuotedString() local
180 assert(Quote == '\"' || Quote == '\''); in skipHTMLQuotedString()
185 if (C == Quote && BufferPtr[-1] != '\\') in skipHTMLQuotedString()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DProgram.h225 void printArg(llvm::raw_ostream &OS, StringRef Arg, bool Quote);
/llvm-project-15.0.7/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp175 char Quote = *Pos; in parseCommand() local
177 const char *End = strchr(Pos, Quote); in parseCommand()
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp445 std::vector<std::string> Quote = unescapeJsonCommandLine("a\\\\\\\""); in TEST() local
446 ASSERT_EQ(1ul, Quote.size()); in TEST()
447 EXPECT_EQ("a\"", Quote[0]); in TEST()
/llvm-project-15.0.7/clang/lib/Lex/
H A DLexer.cpp237 template <typename T> static void StringifyImpl(T &Str, char Quote) { in StringifyImpl() argument
240 if (Str[i] == '\\' || Str[i] == Quote) { in StringifyImpl()
264 char Quote = Charify ? '\'' : '"'; in Stringify() local
265 StringifyImpl(Result, Quote); in Stringify()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DMasmParser.cpp3533 char Quote = getTok().getString().front(); in parseEscapedString() local
3538 if (Str[i] == Quote) { in parseEscapedString()
3544 if (Str[i + 1] == Quote) in parseEscapedString()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DTargetInfo.cpp2668 bool Quote = Lib.contains(' '); in qualifyWindowsLibrary() local
2669 std::string ArgStr = Quote ? "\"" : ""; in qualifyWindowsLibrary()
2673 ArgStr += Quote ? "\"" : ""; in qualifyWindowsLibrary()