/external/clang/test/SemaObjC/ |
D | warn-retain-cycle.m | 11 [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 …]
|
D | arc-unsafe-assigns.m | 24 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…
|
D | property-ns-returns-not-retained-attr.m | 11 … expected-warning {{property declared as returning non-retained objects; getter returning retained…
|
D | arc.m | 594 __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/ |
D | brw_object_purgeable.c | 43 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/ |
D | objects-visiting.cc | 244 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/ |
D | DeallocMissingRelease.m | 102 …[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 …]
|
D | retain-release-gc-only.m | 319 // <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
|
D | PR2978.m | 110 …// 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 …
|
D | MissingDealloc.m | 26 // whether the ivar is retained or not. 38 // retained or synthesized.
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_buffer_objects.c | 661 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/ |
D | stats.c | 323 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/ |
D | dbg-null-retained-type.ll | 3 ; CHECK-NEXT: invalid retained type
|
/external/clang/test/ARCMT/ |
D | check-with-pch.m | 14 self->x = [NSObject new]; // expected-error {{assigning retained object}}
|
D | checking.m | 76 …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/ |
D | stats.h | 111 size_t retained; member
|
D | ctl.h | 64 size_t retained; member
|
/external/swiftshader/third_party/LLVM/test/TableGen/ |
D | 2010-03-24-PrematureDefaults.td | 19 // was processed, X would be set correctly, but Bits retained the default
|
/external/llvm/test/TableGen/ |
D | 2010-03-24-PrematureDefaults.td | 19 // was processed, X would be set correctly, but Bits retained the default
|
/external/mksh/ |
D | NOTICE | 9 * are retained or reproduced in an accompanying document, permission
|
/external/libdrm/freedreno/msm/ |
D | msm_bo.c | 108 return req.retained; in msm_bo_madvise()
|
D | msm_drm.h | 250 __u32 retained; /* out, whether backing store still exists */ member
|
/external/kernel-headers/original/uapi/drm/ |
D | msm_drm.h | 249 __u32 retained; /* out, whether backing store still exists */ member
|
/external/javasqlite/ |
D | NOTICE | 7 that existing copyright notices are retained in all copies and that this
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 196 void castToObjCObject(CastExpr *E, bool retained) { in castToObjCObject() argument 197 rewriteToBridgedCast(E, retained ? OBC_BridgeTransfer : OBC_Bridge); in castToObjCObject()
|