Home
last modified time | relevance | path

Searched refs:retained (Results 1 – 25 of 124) sorted by relevance

12345

/external/clang/test/SemaObjC/
Dwarn-retain-cycle.m11 [x setBlock: // expected-note {{block will be retained by the captured object}}
13 x.block = // expected-note {{block will be retained by the captured object}}
16 [x addBlock: // expected-note {{block will be retained by the captured object}}
32 … // expected-note {{block will be retained by the captured object}}
48 …d-warning {{retain cycle}} expected-note {{block will be retained by an object strongly retained b…
49 …d-warning {{retain cycle}} expected-note {{block will be retained by an object strongly retained b…
63 …d-warning {{retain cycle}} expected-note {{block will be retained by an object strongly retained b…
69 …d-warning {{retain cycle}} expected-note {{block will be retained by an object strongly retained b…
71 …d-warning {{retain cycle}} expected-note {{block will be retained by an object strongly retained b…
73 …^{ (void) sizeof(self); // expected-note {{block will be retained by an object strongly retained b…
[all …]
Darc-unsafe-assigns.m24 self.unsafe_prop = [Foo new]; // expected-warning {{assigning retained object to unsafe property}}
25 …self->unsafe_ivar = [Foo new]; // expected-warning {{assigning retained object to unsafe_unretaine…
26 …self.unsafe_prop = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe p…
27 …self->unsafe_ivar = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe_…
30 unsafe_var = [Foo new]; // expected-warning {{assigning retained object to unsafe_unretained}}
31 …unsafe_var = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe_unretai…
36 f.unsafe_prop = [Foo new]; // expected-warning {{assigning retained object to unsafe property}}
39 unsafe_var = [Foo new]; // expected-warning {{assigning retained object to unsafe_unretained}}
40 …unsafe_var = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe_unretai…
Dproperty-ns-returns-not-retained-attr.m11 … expected-warning {{property declared as returning non-retained objects; getter returning retained
Darc.m594 __weak id x = [Test30 new]; // expected-warning {{assigning retained object to weak variable}}
595 …id __unsafe_unretained u = [Test30 new]; // expected-warning {{assigning retained object to unsafe…
597 x = [Test30 new]; // expected-warning {{assigning retained object to weak variable}}
598 u = [Test30 new]; // expected-warning {{assigning retained object to unsafe_unretained variable}}
649 … expected-warning {{property declared as returning non-retained objects; getter returning retained
742 …picker1 = [[Radar11814185 alloc] init]; // expected-warning {{assigning retained object to weak va…
743 …self.picker1 = [[Radar11814185 alloc] init]; // expected-warning {{assigning retained object to we…
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_object_purgeable.c43 int retained = 0; in intel_buffer_purgeable() local
46 retained = drm_intel_bo_madvise(buffer, I915_MADV_DONTNEED); in intel_buffer_purgeable()
48 return retained ? GL_VOLATILE_APPLE : GL_RELEASED_APPLE; in intel_buffer_purgeable()
106 int retained; in intel_buffer_unpurgeable() local
108 retained = 0; in intel_buffer_unpurgeable()
110 retained = drm_intel_bo_madvise(buffer, I915_MADV_WILLNEED); in intel_buffer_unpurgeable()
112 return retained ? GL_RETAINED_APPLE : GL_UNDEFINED_APPLE; in intel_buffer_unpurgeable()
/external/v8/src/heap/
Dobjects-visiting.cc244 Object* retained = retainer->RetainAs(list); in VisitWeakList() local
245 if (retained != NULL) { in VisitWeakList()
248 head = retained; in VisitWeakList()
252 WeakListVisitor<T>::SetWeakNext(tail, retained); in VisitWeakList()
256 collector->RecordSlot(tail, next_slot, retained); in VisitWeakList()
260 DCHECK(!retained->IsUndefined(heap->isolate())); in VisitWeakList()
261 candidate = reinterpret_cast<T*>(retained); in VisitWeakList()
/external/clang/test/Analysis/
DDeallocMissingRelease.m102 …[super dealloc]; // expected-warning {{The '_ivar' ivar in 'MyPropertyClass2' was retained by a sy…
118 …[super dealloc]; // expected-warning {{The '_ivar' ivar in 'MyPropertyClass3' was retained by a sy…
174 …// expected-warning@-2{{The '_ivar' ivar in 'MyPropertyClassWithReturnInDealloc' was retained by a…
202 …g {{The '_ivar' ivar in 'MyPropertyClassWithReleaseInOtherInstance' was retained by a synthesized …
220 …e '_ivar' ivar in 'MyPropertyClassWithNeitherReturnNorSuperDealloc' was retained by a synthesized …
262 …cted-warning {{The '_ivar2' ivar in 'ClassWithControlFlowInRelease' was retained by a synthesized …
298 …[super dealloc]; // expected-warning {{The '_ivar' ivar in 'ClassWithNildOutIvar' was retained by …
319 …[super dealloc]; // expected-warning {{The '_ivar' ivar in 'ClassWithUpdatedIvar' was retained by …
379 …arning {{The '_ivarNeverReleased' ivar in 'ClassWithDeallocHelpers' was retained by a synthesized …
435 …'_ivar' ivar in 'ClassWhereSelfEscapesViaSynthesizedPropertyAccess' was retained by a synthesized …
[all …]
Dretain-release-gc-only.m319 // <rdar://problem/7174400> 'ciContext createCGImage:outputImage fromRect:' returns a retained CF o…
406 id retained = [@[] retain]; // +0, GC
407 consumeAndStopTracking(retained, ^{}); // no-warning
419 id retained = [@[] retain]; // +0, GC
420 …CFConsumeAndStopTracking((CFTypeRef)retained, ^{}); // expected-warning {{Incorrect decrement of t…
424 CFTypeRef retained = returnsRetainedCFDate(); // +1
425 CFConsumeAndStopTracking(retained, ^{}); // no-warning
DPR2978.m110 …// expected-warning@-1{{The '_Y' ivar in 'MyClass' was retained by a synthesized property but not …
111 …// expected-warning@-2{{The '_W' ivar in 'MyClass' was retained by a synthesized property but not …
DMissingDealloc.m26 // whether the ivar is retained or not.
38 // retained or synthesized.
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_buffer_objects.c661 int retained = 0; in intel_buffer_purgeable() local
664 retained = drm_intel_bo_madvise (buffer, I915_MADV_DONTNEED); in intel_buffer_purgeable()
666 return retained ? GL_VOLATILE_APPLE : GL_RELEASED_APPLE; in intel_buffer_purgeable()
730 int retained; in intel_buffer_unpurgeable() local
732 retained = 0; in intel_buffer_unpurgeable()
734 retained = drm_intel_bo_madvise (buffer, I915_MADV_WILLNEED); in intel_buffer_unpurgeable()
736 return retained ? GL_RETAINED_APPLE : GL_UNDEFINED_APPLE; in intel_buffer_unpurgeable()
/external/jemalloc/src/
Dstats.c323 size_t page, pactive, pdirty, mapped, retained; in stats_arena_print() local
516 CTL_M2_GET("stats.arenas.0.retained", i, &retained, size_t); in stats_arena_print()
519 "\t\t\t\t\"retained\": %zu,\n", retained); in stats_arena_print()
522 "retained: %12zu\n", retained); in stats_arena_print()
950 size_t allocated, active, metadata, resident, mapped, retained; in stats_print_helper() local
958 CTL_GET("stats.retained", &retained, size_t); in stats_print_helper()
976 "\t\t\t\"retained\": %zu\n", retained); in stats_print_helper()
984 allocated, active, metadata, resident, mapped, retained); in stats_print_helper()
/external/llvm/test/Verifier/
Ddbg-null-retained-type.ll3 ; CHECK-NEXT: invalid retained type
/external/clang/test/ARCMT/
Dcheck-with-pch.m14 self->x = [NSObject new]; // expected-error {{assigning retained object}}
Dchecking.m76 …a 'delegate' message; the object that was passed to 'setDelegate:' may not be properly retained}} \
78 …a 'delegate' message; the object that was passed to 'setDelegate:' may not be properly retained}} \
318 value = [NSObject new]; // expected-error {{assigning retained object}}
331 self->x = [NSObject new]; // expected-error {{assigning retained object}}
344 // expected-note {{retained by the captured object}}
/external/jemalloc/include/jemalloc/internal/
Dstats.h111 size_t retained; member
Dctl.h64 size_t retained; member
/external/swiftshader/third_party/LLVM/test/TableGen/
D2010-03-24-PrematureDefaults.td19 // was processed, X would be set correctly, but Bits retained the default
/external/llvm/test/TableGen/
D2010-03-24-PrematureDefaults.td19 // was processed, X would be set correctly, but Bits retained the default
/external/mksh/
DNOTICE9 * are retained or reproduced in an accompanying document, permission
/external/libdrm/freedreno/msm/
Dmsm_bo.c108 return req.retained; in msm_bo_madvise()
Dmsm_drm.h250 __u32 retained; /* out, whether backing store still exists */ member
/external/kernel-headers/original/uapi/drm/
Dmsm_drm.h249 __u32 retained; /* out, whether backing store still exists */ member
/external/javasqlite/
DNOTICE7 that existing copyright notices are retained in all copies and that this
/external/clang/lib/ARCMigrate/
DTransUnbridgedCasts.cpp196 void castToObjCObject(CastExpr *E, bool retained) { in castToObjCObject() argument
197 rewriteToBridgedCast(E, retained ? OBC_BridgeTransfer : OBC_Bridge); in castToObjCObject()

12345