Home
last modified time | relevance | path

Searched refs:Del (Results 1 – 20 of 20) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/
H A Dhash_unique_ptr.pass.cpp31 template <class ValueT, class Del>
33 using UPtr = std::unique_ptr<ValueT, Del>; in test_enabled_with_deleter()
35 using RawDel = typename std::decay<Del>::type; in test_enabled_with_deleter()
37 UPtr p(nullptr, std::forward<Del>(d)); in test_enabled_with_deleter()
42 template <class ValueT, class Del>
44 using UPtr = std::unique_ptr<ValueT, Del>; in test_disabled_with_deleter()
/llvm-project-15.0.7/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
H A Dmove_convert.pass.cpp259 using Del = GenericDeleter<0>; in test_sfinae() typedef
260 using AD = AssignDeleter<Del&&>; in test_sfinae()
262 doDeleterTest<VT, AD, Del>(); in test_sfinae()
263 doDeleterTest<VT, AD&, Del>(); in test_sfinae()
264 doDeleterTest<VT, ADC const&, Del>(); in test_sfinae()
267 using Del = GenericDeleter<0>; in test_sfinae() typedef
268 using AD = AssignDeleter<Del&>; in test_sfinae()
270 doDeleterTest<VT, AD, Del&>(); in test_sfinae()
271 doDeleterTest<VT, AD&, Del&>(); in test_sfinae()
275 using Del = GenericDeleter<0>; in test_sfinae() typedef
[all …]
/llvm-project-15.0.7/libcxx/test/support/
H A Dunique_ptr_test_helper.h68 class Del = std::default_delete<IncompleteT> >
73 std::unique_ptr<IncompleteT, Del> m_ptr;
93 Del& get_deleter() { return m_ptr.get_deleter(); }
98 class Del = std::default_delete<IncompleteT>, class... Args>
102 StoresIncomplete<IncompleteT, Del> sptr(std::forward<Args>(ctor_args)...);
133 template <class IncompleteT, class Del> \
134 StoresIncomplete<IncompleteT, Del>::~StoresIncomplete() {}
/llvm-project-15.0.7/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutexset_test.cpp33 mset.Del(1, true); in TEST()
41 mset.Del(3, true); in TEST()
43 mset.Del(5, false); in TEST()
57 mset.Del(1, true); in TEST()
61 mset.Del(1, true); in TEST()
69 mset.Del(1, true); in TEST()
71 mset.Del(1, true); in TEST()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DGISelChangeObserver.cpp33 MachineFunction::Delegate *Del) in RAIIDelegateInstaller() argument
34 : MF(MF), Delegate(Del) { in RAIIDelegateInstaller()
37 MF.setDelegate(Del); in RAIIDelegateInstaller()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-equals-default.cpp87 class Del { class
89 Del() = delete;
90 ~Del() = delete;
/llvm-project-15.0.7/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
H A Ddefault.pass.cpp53 using Del = CDeleter<ElemType>; in test_sfinae() typedef
55 using U2 = std::unique_ptr<ElemType, Del&>; in test_sfinae()
56 using U3 = std::unique_ptr<ElemType, Del const&>; in test_sfinae()
H A Dnullptr.pass.cpp70 using Del = CDeleter<VT>; in test_sfinae() typedef
72 using U2 = std::unique_ptr<VT, Del&>; in test_sfinae()
73 using U3 = std::unique_ptr<VT, Del const&>; in test_sfinae()
H A Dpointer.pass.cpp125 using Del = CDeleter<T>; in test_sfinae() typedef
127 using U2 = std::unique_ptr<T, Del&>; in test_sfinae()
128 using U3 = std::unique_ptr<T, Del const&>; in test_sfinae()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_mutexset.h45 void Del(u64 id, bool write);
86 void MutexSet::Del(u64 id, bool write) {} in Del() function
H A Dtsan_mutexset.cpp55 void MutexSet::Del(u64 id, bool write) { in Del() function in __tsan::MutexSet
H A Dtsan_rtl_mutex.cpp238 thr->mset.Del(s->GetId(), true); in MutexUnlock()
334 thr->mset.Del(mid, false); in MutexReadUnlock()
374 thr->mset.Del(s->GetId(), write); in MutexReadOrWriteUnlock()
H A Dtsan_rtl_report.cpp436 mset->Del(pc, true); in RestoreStack()
440 mset->Del(pc, false); in RestoreStack()
/llvm-project-15.0.7/clang/test/CXX/special/class.ctor/
H A Dp5-0x.cpp167 ASSERT_NONTRIVIAL_IMPL(Del ## Class, Bases, Del ## Class() = delete; Body)
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelChangeObserver.h113 RAIIDelegateInstaller(MachineFunction &MF, MachineFunction::Delegate *Del);
/llvm-project-15.0.7/clang/include/clang/AST/
H A DCommentHTMLTags.td37 def Del : Tag<"del">;
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2579 Del, // Delete enumerator
2949 {"da", OperatorInfo::Del, /*Ary*/ true, Node::Prec::Unary,
2953 {"dl", OperatorInfo::Del, /*Ary*/ false, Node::Prec::Unary,
4598 case OperatorInfo::Del: { in parseExpr()
/llvm-project-15.0.7/libcxxabi/src/demangle/
H A DItaniumDemangle.h2579 Del, // Delete enumerator
2949 {"da", OperatorInfo::Del, /*Ary*/ true, Node::Prec::Unary,
2953 {"dl", OperatorInfo::Del, /*Ary*/ false, Node::Prec::Unary,
4598 case OperatorInfo::Del: { in parseExpr()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp4393 auto *Del = readDeclAs<FunctionDecl>(); in UpdateDecl() local
4398 First->OperatorDelete = Del; in UpdateDecl()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DValueTracking.cpp4027 InsertValueInst* Del = cast<InsertValueInst>(PrevTo); in BuildSubAggregate() local
4028 PrevTo = Del->getAggregateOperand(); in BuildSubAggregate()
4029 Del->eraseFromParent(); in BuildSubAggregate()