Searched defs:IsWeak (Results 1 - 6 of 6) sorted by relevance

/external/v8/include/
H A Dv8-util.h173 bool IsWeak() { return Traits::kCallbackType != kNotWeak; } function in class:v8::PersistentValueMapBase
319 if (Traits::kCallbackType != kNotWeak && p.IsWeak()) {
H A Dv8.h626 V8_INLINE bool IsWeak() const;
7351 bool PersistentBase<T>::IsWeak() const { function in class:v8::PersistentBase
/external/v8/src/
H A Dglobal-handles.cc194 bool IsWeak() const { return state() == WEAK; } function in class:v8::internal::GlobalHandles::Node
643 bool GlobalHandles::IsWeak(Object** location) {
644 return Node::FromLocation(location)->IsWeak();
667 if (it.node()->IsWeak() && f(it.node()->location())) {
700 node->IsWeak() && f(isolate_->heap(), node->location())) {
730 if (node->IsWeak() && !is_unmodified(node->location())) {
742 if ((node->is_independent() || !node->is_active()) && node->IsWeak() &&
1054 if (node->has_wrapper_class_id() && node->IsWeak()) {
1137 it.node()->IsWeak() ? " (weak)" : "");
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp221 /// \param IsWeak true if atomic operation is weak, false otherwise.
228 bool IsWeak = false);
270 bool IsWeak = false);
376 static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak, argument
389 Pair->setWeak(IsWeak);
425 bool IsWeak, Address Dest,
450 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size,
474 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
480 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
490 emitAtomicCmpXchg(CGF, E, IsWeak, Des
424 emitAtomicCmpXchgFailureSet(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak, Address Dest, Address Ptr, Address Val1, Address Val2, llvm::Value *FailureOrderVal, uint64_t Size, llvm::AtomicOrdering SuccessOrder) argument
500 EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, Address Dest, Address Ptr, Address Val1, Address Val2, llvm::Value *IsWeak, llvm::Value *FailureOrder, uint64_t Size, llvm::AtomicOrdering Order) argument
685 llvm::Value *IsWeak = nullptr, *OrderFail = nullptr; local
1432 EmitAtomicCompareExchangeOp( llvm::Value *ExpectedVal, llvm::Value *DesiredVal, llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak) argument
1477 EmitAtomicCompareExchange( RValue Expected, RValue Desired, llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak) argument
1810 EmitAtomicCompareExchange( LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc, llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak, AggValueSlot Slot) argument
[all...]
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp2981 bool IsWeak = local
2983 if (!IsWeak && Sel.isUnarySelector())
2984 IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak;
2985 if (IsWeak &&
/external/llvm/include/llvm/IR/
H A DInstructions.h565 void setWeak(bool IsWeak) { argument
567 (IsWeak << 8));

Completed in 403 milliseconds