/external/clang/lib/CodeGen/ |
D | CGAtomic.cpp | 228 bool IsWeak = false); 270 bool IsWeak = false); 376 static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak, in emitAtomicCmpXchg() argument 389 Pair->setWeak(IsWeak); in emitAtomicCmpXchg() 425 bool IsWeak, Address Dest, in emitAtomicCmpXchgFailureSet() argument 450 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, in emitAtomicCmpXchgFailureSet() 474 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet() 480 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet() 490 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet() 502 llvm::Value *IsWeak, llvm::Value *FailureOrder, in EmitAtomicOp() argument [all …]
|
D | CodeGenFunction.h | 2449 bool IsWeak = false, AggValueSlot Slot = AggValueSlot::ignored());
|
/external/v8/src/ |
D | global-handles.cc | 193 bool IsWeak() const { return state() == WEAK; } in IsWeak() function in v8::internal::GlobalHandles::Node 661 bool GlobalHandles::IsWeak(Object** location) { in IsWeak() function in v8::internal::GlobalHandles 662 return Node::FromLocation(location)->IsWeak(); in IsWeak() 686 if (it.node()->IsWeak() && f(it.node()->location())) { in IdentifyWeakHandles() 719 node->IsWeak() && f(isolate_->heap(), node->location())) { in IdentifyNewSpaceWeakIndependentHandles() 751 if (node->IsWeak() && !is_unmodified(node->location())) { in IdentifyWeakUnmodifiedObjects() 763 if ((node->is_independent() || !node->is_active()) && node->IsWeak() && in MarkNewSpaceWeakUnmodifiedObjectsPending() 1182 if (node->has_wrapper_class_id() && node->IsWeak()) { in IterateWeakRootsInNewSpaceWithClassIds() 1265 it.node()->IsWeak() ? " (weak)" : ""); in Print()
|
D | global-handles.h | 179 static bool IsWeak(Object** location);
|
/external/v8/test/cctest/ |
D | test-weaksets.cc | 86 CHECK(!global_handles->IsWeak(key.location())); in TEST() 112 CHECK(global_handles->IsWeak(key.location())); in TEST()
|
D | test-weakmaps.cc | 83 CHECK(!global_handles->IsWeak(key.location())); in TEST() 113 CHECK(global_handles->IsWeak(key.location())); in TEST()
|
D | test-api.cc | 4250 if (map.IsWeak()) { in TestGlobalValueMap() 4655 CHECK(g1s1.handle.IsWeak()); in THREADED_TEST() 4656 CHECK(g1s2.handle.IsWeak()); in THREADED_TEST() 4664 CHECK(g2s1.handle.IsWeak()); in THREADED_TEST() 4665 CHECK(g2s2.handle.IsWeak()); in THREADED_TEST() 4673 CHECK(g3s1.handle.IsWeak()); in THREADED_TEST() 4674 CHECK(g3s2.handle.IsWeak()); in THREADED_TEST() 4682 CHECK(g4s1.handle.IsWeak()); in THREADED_TEST() 4683 CHECK(g4s2.handle.IsWeak()); in THREADED_TEST()
|
/external/v8/include/ |
D | v8-util.h | 173 bool IsWeak() { return Traits::kCallbackType != kNotWeak; } 330 if (Traits::kCallbackType != kNotWeak && p.IsWeak()) {
|
D | v8.h | 603 V8_INLINE bool IsWeak() const; 7754 bool PersistentBase<T>::IsWeak() const {
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 2981 bool IsWeak = in BuildInstanceMessage() local 2983 if (!IsWeak && Sel.isUnarySelector()) in BuildInstanceMessage() 2984 IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak; in BuildInstanceMessage() 2985 if (IsWeak && in BuildInstanceMessage()
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 565 void setWeak(bool IsWeak) { 567 (IsWeak << 8));
|