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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FontCache.h 9 * 1. Redistributions of source code must retain the above copyright
64 enum ShouldRetain { Retain, DoNotRetain };
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);
FontCache.cpp 9 * 1. Redistributions of source code must retain the above copyright
320 pair<RefPtr<SimpleFontData>, unsigned> newValue(SimpleFontData::create(*platformData), shouldRetain == Retain ? 1 : 0);
332 if (shouldRetain == Retain)
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 70 bool OptimizeRetainCall(Function &F, Instruction *Retain);
116 ObjCARCContract::OptimizeRetainCall(Function &F, Instruction *Retain) {
117 ImmutableCallSite CS(GetObjCArg(Retain));
121 if (Call->getParent() != Retain->getParent())
124 // Check that the call is next to the retain.
128 if (&*I != Retain)
137 "return value.\nOld: "<< *Retain << "\n");
140 // retain/retainRV have the same properties.
142 cast<CallInst>(Retain)->setCalledFunction(Decl);
144 DEBUG(dbgs() << "New: " << *Retain << "\n")
    [all...]
ARCRuntimeEntryPoints.h 49 Retain(0),
63 Retain = 0;
82 return getI8XRetI8XEntryPoint(Retain, "objc_retain", true);
112 Constant *Retain;
ObjCARCOpts.cpp 313 // The second retain and autorelease can be deleted.
339 // TODO: Delete release+retain pairs (rare).
345 "retain+autoreleases eliminated");
346 STATISTIC(NumRRs, "Number of retain+release paths eliminated");
427 /// retain-decrement-use-release sequence or release-use-decrement-retain
433 /// there are retain-release pairs in code regions where the retain count
437 /// Also, a retain+release pair nested within another retain+releas
    [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
104 /// Obj->Retain()/Obj->Release(). Release() is required to destroy
119 retain();
123 retain();
140 retain();
177 void retain() { if (Obj) IntrusiveRefCntPtrInfo<T>::retain(Obj); function in class:llvm::IntrusiveRefCntPtr
    [all...]
  /external/llvm/unittests/ADT/
IntrusiveRefCntPtrTest.cpp 44 static void retain(InterceptRefCounted *I) { function in struct:llvm::IntrusiveRefCntPtrInfo
46 I->Retain();
  /frameworks/base/media/mca/filterfw/jni/
jni_util.cpp 32 Retain();
38 Retain();
50 Retain();
54 void JavaObject::Retain() {
jni_util.h 71 // Retain the instance, i.e. increase reference count.
72 void Retain();
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 497 mutable IdentifierInfo *Retain, *Release, *MakeCollectable;
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)
579 // Check for sending 'retain', 'release', or 'autorelease' directly to a Class.
604 retainS = GetNullarySelector("retain", Ctx);
    [all...]
  /external/clang/tools/libclang/
IndexingContext.h 260 /// \brief Retain/Release only useful when we allocate a AttrListInfo from the
263 void Retain() { ++ref_cnt; }
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 139 void Retain() const { ++RefCount; }
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 306 // We don't retain the receiver in delegate init calls, and this is
364 // (i.e. retain+autorelease) of receivers of returns-inner-pointer
634 // Handle retain.
635 if (setterKind == ObjCPropertyDecl::Retain) {
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 170 milliseconds