| /llvm-project-15.0.7/clang/lib/Driver/ |
| H A D | Job.cpp | 201 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 D | Job.h | 175 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 D | Program.cpp | 82 void sys::printArg(raw_ostream &OS, StringRef Arg, bool Quote) { in printArg() argument 85 if (!Quote && !Escape) { in printArg()
|
| H A D | YAMLTraits.cpp | 710 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 D | flags_parser.cpp | 71 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 D | options_parser.cpp | 99 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 D | private-2.ll | 2 ; Quote should be outside of private prefix.
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | CommentLexer.cpp | 179 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 D | Program.h | 225 void printArg(llvm::raw_ostream &OS, StringRef Arg, bool Quote);
|
| /llvm-project-15.0.7/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 175 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 D | CompilationDatabaseTest.cpp | 445 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 D | Lexer.cpp | 237 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 D | MasmParser.cpp | 3533 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 D | TargetInfo.cpp | 2668 bool Quote = Lib.contains(' '); in qualifyWindowsLibrary() local 2669 std::string ArgStr = Quote ? "\"" : ""; in qualifyWindowsLibrary() 2673 ArgStr += Quote ? "\"" : ""; in qualifyWindowsLibrary()
|