/llvm-project/clang-tools-extra/test/clang-tidy/checkers/abseil/ |
H A D | faster-strsplit-delimiter.cpp | 5 class string_view { class 20 strings_internal::Splitter StrSplit(absl::string_view, Delim) { in StrSplit() 24 strings_internal::Splitter StrSplit(absl::string_view, Delim, Pred) { in StrSplit() 76 absl::StrSplit("ABC", "A", [](absl::string_view) { return true; }); in SplitDelimiters()
|
H A D | redundant-strcat-calls.cpp | 6 class string_view { class
|
H A D | string-find-str-contains.cpp | 37 typedef basic_string_view<char> string_view; typedef 44 class string_view { class
|
/llvm-project/clang/test/SemaCXX/ |
H A D | static-assert-cxx26.cpp | 55 struct string_view { struct 58 constexpr string_view(const char* Str) : S(__builtin_strlen(Str)), D(Str) {} in string_view() argument 59 constexpr string_view(int Size, const char* Str) : S(Size), D(Str) {} in string_view() argument 68 constexpr string_view operator+(auto, string_view S) { in operator +() argument
|
H A D | cxx1z-user-defined-literals.cpp | 10 struct string_view {}; struct
|
/llvm-project/libcxx/test/libcxx/diagnostics/ |
H A D | string_view.nodiscard.verify.cpp | 16 std::string_view string_view; in test() local
|
/llvm-project/libc/src/__support/CPP/ |
H A D | string_view.h | 65 LIBC_INLINE constexpr string_view() : Data(nullptr), Len(0) {} string_view() function 70 LIBC_INLINE constexpr string_view(const char *Str) string_view() function 74 LIBC_INLINE constexpr string_view(const char *Str, size_t N) string_view() function [all...] |
H A D | string.h | 118 LIBC_INLINE operator string_view() const { string_view() function [all...] |
/llvm-project/libcxx/include/__fwd/ |
H A D | string_view.h | 25 typedef basic_string_view<char> string_view; typedef
|
/llvm-project/clang/test/CXX/over/over.match/over.match.funcs/over.match.ref/ |
H A D | p1.cpp | 6 struct string_view { struct
|
/llvm-project/libc/test/integration/src/pthread/ |
H A D | pthread_name_test.cpp | 26 using string_view = LIBC_NAMESPACE::cpp::string_view; typedef
|
/llvm-project/libc/test/src/dirent/ |
H A D | dirent_test.cpp | 20 using string_view = LIBC_NAMESPACE::cpp::string_view; typedef
|
/llvm-project/libcxx/test/std/strings/string.view/string.view.iterators/ |
H A D | rend.pass.cpp | 48 typedef std::string_view string_view; in main() typedef
|
H A D | end.pass.cpp | 48 typedef std::string_view string_view; in main() typedef
|
H A D | begin.pass.cpp | 40 typedef std::string_view string_view; in main() typedef
|
H A D | rbegin.pass.cpp | 41 typedef std::string_view string_view; in main() typedef
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/performance/ |
H A D | faster-string-find.cpp | 33 typedef basic_string_view<char> string_view; typedef
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | ConstString.h | 172 explicit operator std::string_view() const { in string_view() function
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/ |
H A D | simplify-subscript-expr.cpp | 35 using string_view = basic_string_view<char>; typedef
|
/llvm-project/libcxxabi/src/demangle/ |
H A D | Utility.h | 82 operator std::string_view() const { in string_view() function
|
/llvm-project/llvm/include/llvm/Demangle/ |
H A D | Utility.h | 82 operator std::string_view() const { in string_view() function
|
/llvm-project/compiler-rt/lib/orc/ |
H A D | coff_platform.cpp | 458 registerObjectSections(ExecutorAddr HeaderAddr,std::vector<std::pair<std::string_view,ExecutorAddrRange>> Secs,bool RunInitializers) registerObjectSections() argument 503 deregisterObjectSections(ExecutorAddr HeaderAddr,std::vector<std::pair<std::string_view,ExecutorAddrRange>> Secs) deregisterObjectSections() argument 651 __anon424261eb0402(ExecutorAddr HeaderAddr, std::vector<std::pair<std::string_view, ExecutorAddrRange>> &Secs, bool RunInitializers) __orc_rt_coff_deregister_object_sections() argument 652 __anon424261eb0502(ExecutorAddr HeaderAddr, std::vector<std::pair<std::string_view, ExecutorAddrRange>> &Secs) __orc_rt_coff_deregister_object_sections() argument [all...] |
H A D | macho_platform.cpp | 616 registerObjectPlatformSections(ExecutorAddr HeaderAddr,std::optional<UnwindSectionInfo> UnwindInfo,std::vector<std::pair<std::string_view,ExecutorAddrRange>> Secs) registerObjectPlatformSections() argument 694 deregisterObjectPlatformSections(ExecutorAddr HeaderAddr,std::optional<UnwindSectionInfo> UnwindInfo,std::vector<std::pair<std::string_view,ExecutorAddrRange>> Secs) deregisterObjectPlatformSections() argument 912 requestPushSymbols(JITDylibState & JDS,span<std::pair<std::string_view,bool>> Symbols) requestPushSymbols() argument 927 lookupSymbols(JITDylibState & JDS,std::unique_lock<std::mutex> & JDStatesLock,span<std::pair<ExecutorAddr,MachOExecutorSymbolFlags>> Result,span<std::pair<std::string_view,bool>> Symbols) lookupSymbols() argument 1389 __anoncbb4fc950b02(ExecutorAddr HeaderAddr, std::optional<UnwindSectionInfo> USI, std::vector<std::pair<std::string_view, ExecutorAddrRange>> &Secs) __orc_rt_macho_register_object_platform_sections() argument 1438 __anoncbb4fc950e02(ExecutorAddr HeaderAddr, std::optional<UnwindSectionInfo> USI, std::vector<std::pair<std::string_view, ExecutorAddrRange>> &Secs) __orc_rt_macho_deregister_object_platform_sections() argument [all...] |
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
H A D | dangling-handle.cpp | 72 typedef basic_string_view string_view; typedef
|
H A D | string-constructor.cpp | 24 typedef basic_string_view<char> string_view; typedef
|