Home
last modified time | relevance | path

Searched defs:shared_ptr (Results 1 – 20 of 20) sorted by relevance

/llvm-project/clang/test/SemaObjCXX/
H A Dwarn-missing-super.mm10 template<typename T> struct shared_ptr { struct
17 constexpr shared_ptr<int> dummy; argument
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dshared-ptr-array-mismatch.cpp6 struct shared_ptr { struct
8 explicit shared_ptr(Y *) {} in shared_ptr() function
10 shared_ptr(Y *, Deleter) {} in shared_ptr() function
18 std::shared_ptr<int> P1{new int}; in f1()
H A Dunhandled-self-assignment.cpp18 class shared_ptr { global() class
H A Duse-after-move.cpp21 struct shared_ptr { struct
/llvm-project/lldb/test/API/commands/expression/regression-access-function-template-in-record/
H A Dmain.cpp3 template <class b> struct shared_ptr { struct
11 int main() { n::shared_ptr<int>::make_shared(); } in main()
/llvm-project/clang/test/SemaCUDA/
H A Dmember-init.cu17 class shared_ptr { class
20 shared_ptr(T *p) { in shared_ptr() function in shared_ptr
/llvm-project/clang/test/CodeGenCUDA/
H A Dmember-init.cu37 class shared_ptr { class
41 shared_ptr(T *p) { in shared_ptr() function in shared_ptr
/llvm-project/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx-std-suppression.h125 shared_ptr(shared_ptr&& __r) { } in shared_ptr() function
141 shared_ptr<_Tp>::shared_ptr(nullptr_t) { in shared_ptr() function
/llvm-project/clang/test/CodeGenCXX/
H A Dvisibility-pr36810.cpp6 class __attribute__((__type_visibility__("default"))) shared_ptr { class
H A Dlinetable-eh.cpp20 template<class _Tp> class shared_ptr { class
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dredundant-smartptr-get-macros.cpp7 struct shared_ptr { struct
H A Dredundant-smartptr-get-msvc.cpp20 struct shared_ptr { struct
H A Dredundant-smartptr-get.cpp16 struct shared_ptr { struct
/llvm-project/offload/test/api/
H A Domp_device_managed_memory_alloc.c11 int *shared_ptr = in main() local
H A Domp_device_managed_memory.c13 int *shared_ptr = llvm_omp_target_alloc_shared(N * sizeof(int), device); in main() local
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_redefine_builtins.h44 using shared_ptr = Define_SANITIZER_COMMON_NO_REDEFINE_BUILTINS_in_cpp_file; global() variable
/llvm-project/clang/test/Analysis/
H A DNewDelete-checker-test.cpp285 class shared_ptr { global() class
290 shared_ptr() : p(0), control(0) {} shared_ptr() function in reference_count::shared_ptr
291 explicit shared_ptr(T *p) : p(p), control(new control_block) { shared_ptr() function in reference_count::shared_ptr
294 shared_ptr(const shared_ptr &other) : p(other.p), control(other.control) { shared_ptr() function in reference_count::shared_ptr
[all...]
/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.h110 typedef std::shared_ptr<Archive> shared_ptr; typedef
/llvm-project/clang/test/SemaTemplate/
H A Ddestructor-template.cpp68 template <class T> class shared_ptr {}; class
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Davoid-const-or-ref-data-members.cpp7 struct shared_ptr {}; struct