Home
last modified time | relevance | path

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

123

/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp260 using Del = GenericDeleter<0>; in test_sfinae() typedef
261 using AD = AssignDeleter<Del&&>; in test_sfinae()
262 using ADC = AssignDeleter<Del&&, /*AllowConstAssign*/true>; in test_sfinae()
263 doDeleterTest<VT, AD, Del>(); in test_sfinae()
264 doDeleterTest<VT, AD&, Del>(); in test_sfinae()
265 doDeleterTest<VT, ADC const&, Del>(); in test_sfinae()
268 using Del = GenericDeleter<0>; in test_sfinae() typedef
269 using AD = AssignDeleter<Del&>; in test_sfinae()
270 using ADC = AssignDeleter<Del&, /*AllowConstAssign*/true>; in test_sfinae()
271 doDeleterTest<VT, AD, Del&>(); in test_sfinae()
[all …]
/external/syzkaller/vendor/google.golang.org/appengine/aetest/
Duser.go31 req.Header.Del("X-AppEngine-User-Email")
32 req.Header.Del("X-AppEngine-User-Id")
33 req.Header.Del("X-AppEngine-User-Is-Admin")
34 req.Header.Del("X-AppEngine-User-Federated-Identity")
35 req.Header.Del("X-AppEngine-User-Federated-Provider")
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/
Dhash_unique_ptr.pass.cpp30 template <class ValueT, class Del>
32 using UPtr = std::unique_ptr<ValueT, Del>; in test_enabled_with_deleter()
34 using RawDel = typename std::decay<Del>::type; in test_enabled_with_deleter()
36 UPtr p(nullptr, std::forward<Del>(d)); in test_enabled_with_deleter()
41 template <class ValueT, class Del>
43 using UPtr = std::unique_ptr<ValueT, Del>; in test_disabled_with_deleter()
/external/compiler-rt/lib/tsan/tests/unit/
Dtsan_mutexset_test.cc34 mset.Del(1, true); in TEST()
42 mset.Del(3, true); in TEST()
44 mset.Del(5, false); in TEST()
58 mset.Del(1, true); in TEST()
62 mset.Del(1, true); in TEST()
70 mset.Del(1, true); in TEST()
72 mset.Del(1, true); in TEST()
/external/libcxx/test/support/
Dunique_ptr_test_helper.h69 class Del = std::default_delete<IncompleteT> >
74 std::unique_ptr<IncompleteT, Del> m_ptr;
94 Del& get_deleter() { return m_ptr.get_deleter(); }
99 class Del = std::default_delete<IncompleteT>, class... Args>
103 StoresIncomplete<IncompleteT, Del> sptr(std::forward<Args>(ctor_args)...);
134 template <class IncompleteT, class Del> \
135 StoresIncomplete<IncompleteT, Del>::~StoresIncomplete() {}
/external/syzkaller/syz-manager/
Dhub.go124 a.Del = append(a.Del, sig.String())
140 hc.stats.hubSendProgDel.add(len(a.Del))
148 len(a.Add), len(a.Del), len(a.Repros),
151 a.Del = nil
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
Ddefault.pass.cpp56 using Del = CDeleter<ElemType>; in test_sfinae() typedef
58 using U2 = std::unique_ptr<ElemType, Del&>; in test_sfinae()
59 using U3 = std::unique_ptr<ElemType, Del const&>; in test_sfinae()
Dnullptr.pass.cpp69 using Del = CDeleter<VT>; in test_sfinae() typedef
71 using U2 = std::unique_ptr<VT, Del&>; in test_sfinae()
72 using U3 = std::unique_ptr<VT, Del const&>; in test_sfinae()
Dpointer.pass.cpp118 using Del = CDeleter<T>; in test_sfinae() typedef
120 using U2 = std::unique_ptr<T, Del&>; in test_sfinae()
121 using U3 = std::unique_ptr<T, Del const&>; in test_sfinae()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_mutexset.h36 void Del(u64 id, bool write);
61 void MutexSet::Del(u64 id, bool write) {} in Del() function
Dtsan_mutexset.cc55 void MutexSet::Del(u64 id, bool write) { in Del() function in __tsan::MutexSet
Dtsan_rtl_mutex.cc214 thr->mset.Del(s->GetId(), true); in MutexUnlock()
290 thr->mset.Del(mid, false); in MutexReadUnlock()
330 thr->mset.Del(s->GetId(), write); in MutexReadOrWriteUnlock()
Dtsan_rtl_report.cc418 mset->Del(pc, true); in RestoreStack()
422 mset->Del(pc, false); in RestoreStack()
/external/syzkaller/syz-hub/
Dhub.go93 progs, more, err := hub.st.Sync(name, a.Add, a.Del)
115 name, len(a.Add), len(a.Del), len(a.Repros), len(r.Progs), len(r.Repros), more)
/external/clang/test/CXX/special/class.ctor/
Dp5-0x.cpp158 ASSERT_NONTRIVIAL_IMPL(Del ## Class, Bases, Del ## Class() = delete; Body)
/external/syzkaller/pkg/rpctype/
Drpctype.go94 Del []string member
/external/clang/include/clang/AST/
DCommentHTMLTags.td37 def Del : Tag<"del">;
/external/python/cpython2/Python/
Dcompile.c2368 case Del: in compiler_nameop()
2386 case Del: op = DELETE_FAST; break; in compiler_nameop()
2402 case Del: op = DELETE_GLOBAL; break; in compiler_nameop()
2417 case Del: op = DELETE_NAME; break; in compiler_nameop()
3051 case Del: in compiler_visit_expr()
3078 case Del: in compiler_visit_expr()
3080 VISIT_SLICE(c, e->v.Subscript.slice, Del); in compiler_visit_expr()
3223 case Del: op = DELETE_SUBSCR; break; in compiler_handle_subscr()
3308 case Del: op = DELETE_SLICE; break; in compiler_simple_slice()
/external/python/cpython2/Parser/
DPython.asdl86 expr_context = Load | Store | Del | AugLoad | AugStore | Param
/external/python/cpython3/Parser/
DPython.asdl98 expr_context = Load | Store | Del | AugLoad | AugStore | Param
/external/python/cpython3/Python/
Dcompile.c2713 compiler_nameop(c, handler->v.ExceptHandler.name, Del); in compiler_try_except()
3220 case Del: op = DELETE_DEREF; break; in compiler_nameop()
3232 case Del: op = DELETE_FAST; break; in compiler_nameop()
3248 case Del: op = DELETE_GLOBAL; break; in compiler_nameop()
3263 case Del: op = DELETE_NAME; break; in compiler_nameop()
4508 case Del: in compiler_visit_expr()
4535 case Del: in compiler_visit_expr()
4537 VISIT_SLICE(c, e->v.Subscript.slice, Del); in compiler_visit_expr()
4836 case Del: op = DELETE_SUBSCR; break; in compiler_handle_subscr()
/external/openssh/
DCREDITS33 David Del Piero <David.DelPiero@qed.qld.gov.au> - bug fixes
/external/swiftshader/third_party/LLVM/lib/Analysis/
DValueTracking.cpp1337 InsertValueInst* Del = cast<InsertValueInst>(PrevTo); in BuildSubAggregate() local
1338 PrevTo = Del->getAggregateOperand(); in BuildSubAggregate()
1339 Del->eraseFromParent(); in BuildSubAggregate()
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
Dactivity.py246 elif isinstance(node.ctx, gast.Del):
/external/icu/icu4c/source/samples/ufortune/resources/
Des.txt32 -- Bill Gates. (1952?) Fundador de Microsoft. Del manual de Windows 95. ",
100 "Press (Ctrl)(Alt)(Del) to continue...

123