/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 | 194 bool IsWeak() const { return state() == WEAK; } in IsWeak() function in v8::internal::GlobalHandles::Node 643 bool GlobalHandles::IsWeak(Object** location) { in IsWeak() function in v8::internal::GlobalHandles 644 return Node::FromLocation(location)->IsWeak(); in IsWeak() 667 if (it.node()->IsWeak() && f(it.node()->location())) { in IdentifyWeakHandles() 700 node->IsWeak() && f(isolate_->heap(), node->location())) { in IdentifyNewSpaceWeakIndependentHandles() 730 if (node->IsWeak() && !is_unmodified(node->location())) { in IdentifyWeakUnmodifiedObjects() 742 if ((node->is_independent() || !node->is_active()) && node->IsWeak() && in MarkNewSpaceWeakUnmodifiedObjectsPending() 1054 if (node->has_wrapper_class_id() && node->IsWeak()) { in IterateWeakRootsInNewSpaceWithClassIds() 1137 it.node()->IsWeak() ? " (weak)" : ""); in Print()
|
D | global-handles.h | 180 static bool IsWeak(Object** location);
|
/external/v8/test/cctest/ |
D | test-weaksets.cc | 87 CHECK(!global_handles->IsWeak(key.location())); in TEST() 113 CHECK(global_handles->IsWeak(key.location())); in TEST()
|
D | test-weakmaps.cc | 84 CHECK(!global_handles->IsWeak(key.location())); in TEST() 114 CHECK(global_handles->IsWeak(key.location())); in TEST()
|
D | test-api.cc | 3942 if (map.IsWeak()) { in TestGlobalValueMap() 4347 CHECK(g1s1.handle.IsWeak()); in THREADED_TEST() 4348 CHECK(g1s2.handle.IsWeak()); in THREADED_TEST() 4356 CHECK(g2s1.handle.IsWeak()); in THREADED_TEST() 4357 CHECK(g2s2.handle.IsWeak()); in THREADED_TEST() 4365 CHECK(g3s1.handle.IsWeak()); in THREADED_TEST() 4366 CHECK(g3s2.handle.IsWeak()); in THREADED_TEST() 4374 CHECK(g4s1.handle.IsWeak()); in THREADED_TEST() 4375 CHECK(g4s2.handle.IsWeak()); in THREADED_TEST()
|
/external/v8/include/ |
D | v8-util.h | 173 bool IsWeak() { return Traits::kCallbackType != kNotWeak; } 319 if (Traits::kCallbackType != kNotWeak && p.IsWeak()) {
|
D | v8.h | 626 V8_INLINE bool IsWeak() const; 7351 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));
|