| /llvm-project-15.0.7/bolt/include/bolt/Utils/ |
| H A D | NameResolver.h | 28 static constexpr char Sep = '/'; variable 34 return (Name + Twine(Sep) + Twine(ID)).str(); in uniquify() 40 return Name.substr(0, Name.find_first_of(Sep)); in restore() 48 std::tie(LHS, RHS) = UniqueName.split(Sep); in append() 49 return (LHS + Suffix + Twine(Sep) + RHS).str(); in append()
|
| /llvm-project-15.0.7/compiler-rt/lib/profile/ |
| H A D | InstrProfilingUtil.c | 308 const char *Sep = strchr(Path, DIR_SEPARATOR); in lprofFindFirstDirSeparator() local 311 if (Sep2 && (!Sep || Sep2 < Sep)) in lprofFindFirstDirSeparator() 312 Sep = Sep2; in lprofFindFirstDirSeparator() 314 return Sep; in lprofFindFirstDirSeparator() 318 const char *Sep = strrchr(Path, DIR_SEPARATOR); in lprofFindLastDirSeparator() local 321 if (Sep2 && (!Sep || Sep2 > Sep)) in lprofFindLastDirSeparator() 322 Sep = Sep2; in lprofFindLastDirSeparator() 324 return Sep; in lprofFindLastDirSeparator()
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | ClangSACheckersEmitter.cpp | 27 static std::string getPackageFullName(const Record *R, StringRef Sep = "."); 30 StringRef Sep = ".") { in getParentPackageFullName() argument 33 name = getPackageFullName(DI->getDef(), Sep); in getParentPackageFullName() 37 static std::string getPackageFullName(const Record *R, StringRef Sep) { in getPackageFullName() argument 38 std::string name = getParentPackageFullName(R, Sep); in getPackageFullName() 40 name += Sep; in getPackageFullName() 46 static std::string getCheckerFullName(const Record *R, StringRef Sep = ".") { in getCheckerFullName() argument 47 std::string name = getParentPackageFullName(R, Sep); in getCheckerFullName() 49 name += Sep; in getCheckerFullName()
|
| H A D | MveEmitter.cpp | 669 const char *Sep = ""; in genCode() local 674 OS << Sep; in genCode() 675 Sep = ", "; in genCode() 741 const char *Sep = ""; in genCode() local 743 OS << Sep << ParamAlloc.allocParam("llvm::Type *", T->llvmName()); in genCode() 744 Sep = ", "; in genCode() 749 const char *Sep = ""; in genCode() local 751 OS << Sep << Arg->asValue(); in genCode() 752 Sep = ", "; in genCode()
|
| /llvm-project-15.0.7/bolt/lib/Passes/ |
| H A D | DataflowAnalysis.cpp | 23 const char *Sep = ""; in operator <<() 29 OS << Sep << I; in operator <<() 30 Sep = " "; in operator <<() 36 OS << Sep << I; in operator <<() 37 Sep = " "; in operator <<()
|
| H A D | ReorderAlgorithm.cpp | 96 const char *Sep = ""; in printClusters() local 99 Sep = ", "; in printClusters() 610 const char *Sep = ""; in reorderBasicBlocks() local 612 errs() << Sep << O; in reorderBasicBlocks() 613 Sep = ", "; in reorderBasicBlocks() 659 const char *Sep = ""; in reorderBasicBlocks() local 661 errs() << Sep << O; in reorderBasicBlocks() 662 Sep = ", "; in reorderBasicBlocks() 715 const char *Sep = ""; in reorderBasicBlocks() local 717 errs() << Sep << O; in reorderBasicBlocks() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | TarWriter.cpp | 144 size_t Sep = Path.rfind('/', MaxPrefix + 1); in splitUstar() local 145 if (Sep == StringRef::npos) in splitUstar() 147 if (Path.size() - Sep - 1 >= sizeof(UstarHeader::Name)) in splitUstar() 150 Prefix = Path.substr(0, Sep); in splitUstar() 151 Name = Path.substr(Sep + 1); in splitUstar()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | MemberwiseConstructor.cpp | 226 const char *Sep = ""; in buildCode() local 228 OS << Sep; in buildCode() 235 Sep = ", "; in buildCode() 238 Sep = " : "; in buildCode() 240 OS << Sep << Info.Field->getName() << "("; in buildCode() 247 Sep = ", "; in buildCode()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/ |
| H A D | Symbol.cpp | 72 llvm::StringRef Sep = ""; in operator <<() local 74 OS << Sep << S; in operator <<() 75 Sep = ", "; in operator <<()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | StringExtras.h | 430 template <typename Sep> 431 inline void join_items_impl(std::string &Result, Sep Separator) {} in join_items_impl() 433 template <typename Sep, typename Arg> 434 inline void join_items_impl(std::string &Result, Sep Separator, in join_items_impl() 439 template <typename Sep, typename Arg1, typename... Args> 440 inline void join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1, in join_items_impl() 485 template <typename Sep, typename... Args> 486 inline std::string join_items(Sep Separator, Args &&... Items) { in join_items()
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | FormatProviders.h | 389 StringRef Sep = consumeOneOption(Style, '$', ", "); 392 return std::make_pair(Sep, Args); 400 StringRef Sep; 402 std::tie(Sep, ArgStyle) = parseOptions(Style); 412 Stream << Sep;
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCContainersChecker.cpp | 58 const char *NL, const char *Sep) const override; 173 const char *NL, const char *Sep) const { in printState() 178 OS << Sep << "ObjC container sizes :" << NL; in printState()
|
| H A D | ObjCSelfInitChecker.cpp | 82 const char *NL, const char *Sep) const override; 340 const char *NL, const char *Sep) const { in printState() 348 Out << Sep << NL << *this << " :" << NL; in printState()
|
| H A D | PthreadLockChecker.cpp | 224 const char *Sep) const override; 314 const char *NL, const char *Sep) const { in printState() 317 Out << Sep << "Mutex states:" << NL; in printState() 336 Out << Sep << "Mutex lock order:" << NL; in printState() 345 Out << Sep << "Mutexes in unresolved possibly destroyed state:" << NL; in printState()
|
| H A D | MacOSKeychainAPIChecker.cpp | 69 const char *NL, const char *Sep) const override; 652 const char *Sep) const { in printState() 657 Out << Sep << "KeychainAPIChecker :" << NL; in printState()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | Matchers.h | 46 const char *Sep = ""; in DescribeTo() local 48 *OS << Sep; in DescribeTo() 50 Sep = ", "; in DescribeTo()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/dex/ |
| H A D | PostingList.cpp | 76 const char *Sep = ""; in dump() local 79 OS << Sep << Doc; in dump() 80 Sep = " "; in dump()
|
| /llvm-project-15.0.7/bolt/include/bolt/Core/ |
| H A D | BinaryData.h | 220 const char *Sep = "\n "; variable 223 SS << Sep << "{ "; 228 Sep = ",\n ";
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | Diagnostics.cpp | 393 const char *Sep = ""; in operator <<() local 395 OS << Sep << Edit; in operator <<() 396 Sep = ", "; in operator <<() 405 const char *Sep = ""; in operator <<() local 407 OS << Sep << Note; in operator <<() 408 Sep = ", "; in operator <<() 414 const char *Sep = ""; in operator <<() local 416 OS << Sep << Fix; in operator <<() 417 Sep = ", "; in operator <<()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | AttrImpl.cpp | 96 StringRef Sep = "("; in printPrettyPragma() local 98 OS << Sep; in printPrettyPragma() 100 Sep = ", "; in printPrettyPragma()
|
| /llvm-project-15.0.7/bolt/lib/Profile/ |
| H A D | YAMLProfileWriter.cpp | 163 std::string Sep = ""; in writeProfile() local 165 BP.Header.EventNames += Sep + EventEntry.first().str(); in writeProfile() 166 Sep = ","; in writeProfile()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | FormatUtil.cpp | 24 StringRef Sep) { in typesetItemList() argument 30 Result += join(ThisGroup, Sep); in typesetItemList() 32 Result += Sep; in typesetItemList()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFTypePrinter.cpp | 270 auto Sep = [&] { in appendTemplateParameters() local 285 Sep(); in appendTemplateParameters() 395 Sep(); in appendTemplateParameters() 402 Sep(); in appendTemplateParameters()
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | RegisterValue.cpp | 279 char Sep = ' '; in ParseVectorEncoding() local 286 std::tie(car, cdr) = vector_str.split(Sep); in ParseVectorEncoding() 295 std::tie(car, cdr) = cdr.split(Sep); in ParseVectorEncoding()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | FormatUtil.h | 53 uint32_t GroupSize, StringRef Sep);
|