HomeSort by relevance Sort by last modified time
    Searched refs:Retain (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/libchrome/base/mac/
scoped_block.h 20 static B Retain(B block) { return Block_copy(block); }
scoped_cftyperef.h 24 // enum. If the value |RETAIN| is passed (in the constructor or in reset()),
33 static CFT Retain(CFT object) {
scoped_ioobject.h 20 static IOT Retain(IOT iot) {
scoped_ioplugininterface.h 20 static T Retain(T t) {
scoped_typeref.h 15 // of a reference to any type that is maintained by Retain and Release methods.
17 // The Traits structure must provide the Retain and Release methods for type T.
25 // static CGLContextObj Retain(CGLContextObj object) {
42 // ownership of the object (and should not call Retain in initialization) or if
44 // Retain in initialization). This behavior is based on the |policy| parameter,
45 // with |ASSUME| for the former and |RETAIN| for the latter. The default policy
60 if (object_ && policy == base::scoped_policy::RETAIN)
61 object_ = Traits::Retain(object_);
67 object_ = Traits::Retain(object_);
76 reset(that.get(), base::scoped_policy::RETAIN);
    [all...]
scoped_nsobject.h 30 // ownership claim to that object. scoped_nsobject<> does not call -retain,
47 static NST Retain(NST nst) { return [nst retain]; }
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 83 bool optimizeRetainCall(Function &F, Instruction *Retain);
113 bool ObjCARCContract::optimizeRetainCall(Function &F, Instruction *Retain) {
114 ImmutableCallSite CS(GetArgRCIdentityRoot(Retain));
118 if (Call->getParent() != Retain->getParent())
121 // Check that the call is next to the retain.
125 if (&*I != Retain)
134 "return value.\nOld: "<< *Retain << "\n");
137 // retain/retainRV have the same properties.
139 cast<CallInst>(Retain)->setCalledFunction(Decl);
141 DEBUG(dbgs() << "New: " << *Retain << "\n")
    [all...]
ARCRuntimeEntryPoints.h 33 Retain,
49 Retain(nullptr),
61 Retain = nullptr;
79 case ARCRuntimeEntryPointKind::Retain:
80 return getI8XRetI8XEntryPoint(Retain, "objc_retain", true);
110 Constant *Retain;
ObjCARCExpand.cpp 103 case ARCInstKind::Retain:
ObjCARCOpts.cpp 133 // The second retain and autorelease can be deleted.
159 // TODO: Delete release+retain pairs (rare).
165 "retain+autoreleases eliminated");
166 STATISTIC(NumRRs, "Number of retain+release paths eliminated");
632 Constant *NewDecl = EP.get(ARCRuntimeEntryPointKind::Retain);
833 // Keep track of which of retain, release, autorelease, and retain_block
875 case ARCInstKind::Retain:
880 // These can't be moved across things that care about the retain
    [all...]
  /external/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 51 void Retain() const { ++ref_cnt; }
76 void Retain() const { ++ref_cnt; }
88 static void retain(T *obj) { obj->Retain(); } function in struct:llvm::IntrusiveRefCntPtrInfo
107 void Retain() const { ++RefCount; }
129 /// Obj->Retain()/Obj->Release(). Release() is required to destroy
144 retain();
148 retain();
163 retain();
197 void retain() { if (Obj) IntrusiveRefCntPtrInfo<T>::retain(Obj); function in class:llvm::IntrusiveRefCntPtr
    [all...]
  /external/llvm/lib/Analysis/
ObjCARCInstKind.cpp 33 case ARCInstKind::Retain:
34 return OS << "ARCInstKind::Retain";
104 .Case("objc_retain", ARCInstKind::Retain)
332 case ARCInstKind::Retain:
361 case ARCInstKind::Retain:
364 // I believe we treat retain block as not a retain since it can copy its
399 case ARCInstKind::Retain:
430 case ARCInstKind::Retain:
464 case ARCInstKind::Retain
    [all...]
ObjCARCAliasAnalysis.cpp 115 case ARCInstKind::Retain:
  /external/llvm/include/llvm/Analysis/
ObjCARCInstKind.h 31 Retain, ///< objc_retain
  /external/llvm/unittests/ADT/
IntrusiveRefCntPtrTest.cpp 46 static void retain(InterceptRefCounted *I) { function in struct:llvm::IntrusiveRefCntPtrInfo
48 I->Retain();
  /external/pdfium/core/include/fxge/
fpf.h 30 virtual IFPF_Font* Retain() = 0;
  /external/pdfium/core/src/fxge/android/
fpf_skiafont.h 24 IFPF_Font* Retain() override;
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_basic_imp.h 24 virtual IFX_Stream* Retain();
  /frameworks/base/media/mca/filterfw/jni/
jni_util.cpp 32 Retain();
38 Retain();
50 Retain();
54 void JavaObject::Retain() {
  /external/pdfium/core/include/fxcrt/
fx_stream.h 96 virtual IFX_FileStream* Retain() = 0;
124 virtual IFX_FileAccess* Retain() = 0;
  /external/llvm/lib/IR/
DebugInfo.cpp 64 DINodeArray Retain = CU->getRetainedTypes();
65 for (unsigned Ti = 0, Te = Retain.size(); Ti != Te; ++Ti) {
66 if (!isa<DICompositeType>(Retain[Ti]))
68 auto *Ty = cast<DICompositeType>(Retain[Ti]);
  /external/pdfium/xfa/src/fgas/include/
fx_stm.h 48 virtual IFX_Stream* Retain() = 0;
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_fwltheme.h 17 virtual IFWL_Target* Retain() { return NULL; }
  /external/pdfium/core/src/fxcrt/
extension.h 47 IFX_FileAccess* Retain() override {
76 IFX_FileStream* Retain() override;
127 IFX_FileStream* Retain() override {
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 38 void Retain() { ++RefCount; }

Completed in 1394 milliseconds

1 2 3