/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 260 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/ |
D | user.go | 31 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/ |
D | hash_unique_ptr.pass.cpp | 30 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/ |
D | tsan_mutexset_test.cc | 34 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/ |
D | unique_ptr_test_helper.h | 69 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/ |
D | hub.go | 124 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/ |
D | default.pass.cpp | 56 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()
|
D | nullptr.pass.cpp | 69 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()
|
D | pointer.pass.cpp | 118 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/ |
D | tsan_mutexset.h | 36 void Del(u64 id, bool write); 61 void MutexSet::Del(u64 id, bool write) {} in Del() function
|
D | tsan_mutexset.cc | 55 void MutexSet::Del(u64 id, bool write) { in Del() function in __tsan::MutexSet
|
D | tsan_rtl_mutex.cc | 214 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()
|
D | tsan_rtl_report.cc | 418 mset->Del(pc, true); in RestoreStack() 422 mset->Del(pc, false); in RestoreStack()
|
/external/syzkaller/syz-hub/ |
D | hub.go | 93 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/ |
D | p5-0x.cpp | 158 ASSERT_NONTRIVIAL_IMPL(Del ## Class, Bases, Del ## Class() = delete; Body)
|
/external/syzkaller/pkg/rpctype/ |
D | rpctype.go | 94 Del []string member
|
/external/clang/include/clang/AST/ |
D | CommentHTMLTags.td | 37 def Del : Tag<"del">;
|
/external/python/cpython2/Python/ |
D | compile.c | 2368 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/ |
D | Python.asdl | 86 expr_context = Load | Store | Del | AugLoad | AugStore | Param
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 98 expr_context = Load | Store | Del | AugLoad | AugStore | Param
|
/external/python/cpython3/Python/ |
D | compile.c | 2713 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/ |
D | CREDITS | 33 David Del Piero <David.DelPiero@qed.qld.gov.au> - bug fixes
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ValueTracking.cpp | 1337 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/ |
D | activity.py | 246 elif isinstance(node.ctx, gast.Del):
|
/external/icu/icu4c/source/samples/ufortune/resources/ |
D | es.txt | 32 -- Bill Gates. (1952?) Fundador de Microsoft. Del manual de Windows 95. ", 100 "Press (Ctrl)(Alt)(Del) to continue...
|