Searched defs:Retain (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DFontCache.h64 enum ShouldRetain { Retain, DoNotRetain }; enumerator in enum:WebCore::FontCache::ShouldRetain
78 PassRefPtr<SimpleFontData> getFontResourceData(const FontDescription&, const AtomicString&, bool checkingAlternateName = false, ShouldRetain = Retain);
79 PassRefPtr<SimpleFontData> getLastResortFallbackFont(const FontDescription&, ShouldRetain = Retain);
133 PassRefPtr<SimpleFontData> getFontResourceData(const FontPlatformData*, ShouldRetain = Retain);
/external/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h51 void Retain() const { ++ref_cnt; } function in class:llvm::RefCountedBase
76 void Retain() const { ++ref_cnt; } function in class:llvm::RefCountedBaseVPTR
88 static void retain(T *obj) { obj->Retain(); }
104 /// Obj->Retain()/Obj->Release(). Release() is required to destroy
/external/llvm/lib/Transforms/ObjCARC/
H A DARCRuntimeEntryPoints.h49 Retain(0),
63 Retain = 0;
82 return getI8XRetI8XEntryPoint(Retain, "objc_retain", true);
112 Constant *Retain; member in class:llvm::objcarc::ARCRuntimeEntryPoints
H A DObjCARCContract.cpp70 bool OptimizeRetainCall(Function &F, Instruction *Retain);
116 ObjCARCContract::OptimizeRetainCall(Function &F, Instruction *Retain) { argument
117 ImmutableCallSite CS(GetObjCArg(Retain));
121 if (Call->getParent() != Retain->getParent())
128 if (&*I != Retain)
137 "return value.\nOld: "<< *Retain << "\n");
142 cast<CallInst>(Retain)->setCalledFunction(Decl);
144 DEBUG(dbgs() << "New: " << *Retain << "\n");
160 CallInst *Retain = 0; local
176 Retain
190 << *Retain << "\\n"); local
260 Instruction *Retain = I; local
[all...]
H A DObjCARCOpts.cpp2432 DEBUG(dbgs() << "Inserting new Retain: " << *Call << "\n"
2702 Instruction *Retain = cast<Instruction>(V); local
2704 DEBUG(dbgs() << "Visiting: " << *Retain << "\n");
2706 Value *Arg = GetObjCArg(Retain);
2724 NewRetains.push_back(Retain);
2940 /// between the Retain and the call that can affect the reference count of their
2941 /// shared pointer argument. Note that Retain need not be in BB.
2943 HasSafePathToPredecessorCall(const Value *Arg, Instruction *Retain, argument
2947 FindDependencies(CanChangeRetainCount, Arg, Retain->getParent(), Retain,
3061 CallInst *Retain = local
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h139 void Retain() const { ++RefCount; } function in class:clang::ento::CallEvent
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp497 mutable IdentifierInfo *Retain, *Release, *MakeCollectable; member in class:__anon15481::CFRetainReleaseChecker
499 CFRetainReleaseChecker(): Retain(0), Release(0), MakeCollectable(0) {}
518 Retain = &Ctx.Idents.get("CFRetain");
527 if (!(FuncII == Retain || FuncII == Release || FuncII == MakeCollectable))
558 if (FuncII == Retain)
/external/clang/tools/libclang/
H A DIndexingContext.h260 /// \brief Retain/Release only useful when we allocate a AttrListInfo from the
263 void Retain() { ++ref_cnt; } function in class:clang::cxindex::AttrListInfo
/external/clang/include/clang/AST/
H A DDeclObjC.h2008 enum SetterKind { Assign, Retain, Copy, Weak }; enumerator in enum:clang::ObjCPropertyDecl::SetterKind
2106 return getType()->isBlockPointerType() ? Copy : Retain;
2108 return Retain;

Completed in 376 milliseconds