HomeSort by relevance Sort by last modified time
    Searched full:cfretain (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/clang/test/ARCMT/
no-canceling-bridge-to-bridge-cast.m 8 CFTypeRef CFRetain(CFTypeRef cf);
25 result = (id) CFRetain([NSString stringWithFormat:@"PBXLoopMode"]); // expected-error {{cast of C pointer type 'CFTypeRef' (aka 'const void *') to Objective-C pointer type 'id' requires a bridged cast}} \
29 result = (id) CFRetain((id)((objc_format))); // expected-error {{cast of C pointer type 'CFTypeRef' (aka 'const void *') to Objective-C pointer type 'id' requires a bridged cast}} \
33 result = (id) CFRetain((id)((cf_format))); // expected-error {{cast of C pointer type 'CFTypeRef' (aka 'const void *') to Objective-C pointer type 'id' requires a bridged cast}} \
37 result = (id) CFRetain((CFTypeRef)((objc_format)));
39 result = (id) CFRetain(cf_format); // OK
nonobjc-to-objc-cast.m 44 _uuidString = CFRetain(_uuid);
76 ref = CFRetain((CFStringRef)[s string]);
77 ref = CFRetain([s string]);
78 ref = CFRetain(s);
Common.h 25 CFTypeRef CFRetain(CFTypeRef cf);
98 return X ? CFRetain((CFTypeRef)X) : NULL;
autoreleases.m 39 _prop = (id)CFRetain(newVal);
autoreleases.m.result 37 _prop = (id)CFBridgingRelease(CFRetain(newVal));
nonobjc-to-objc-cast.m.result 44 _uuidString = CFBridgingRelease(CFRetain(_uuid));
objcmt-arc-cf-annotations.m 81 extern CFTypeRef CFRetain(CFTypeRef cf);
341 CFRetain(date);
399 CFRetain(date);
407 CFRetain(date);
418 CFRetain(date);
531 // Test when we pass NULL to CFRetain/CFRelease/CFMakeCollectable/CFAutorelease.
541 CFRetain(p);
554 // Test that an object is non-null after CFRetain/CFRelease/CFMakeCollectable/CFAutorelease.
563 CFRetain(p);
565 CFRetain(0); // no-warnin
    [all...]
objcmt-arc-cf-annotations.m.result 81 extern CFTypeRef CFRetain(CFTypeRef cf);
371 CFRetain(date);
429 CFRetain(date);
437 CFRetain(date);
454 CFRetain(date);
573 // Test when we pass NULL to CFRetain/CFRelease/CFMakeCollectable/CFAutorelease.
583 CFRetain(p);
596 // Test that an object is non-null after CFRetain/CFRelease/CFMakeCollectable/CFAutorelease.
605 CFRetain(p);
607 CFRetain(0); // no-warnin
    [all...]
  /external/clang/test/Analysis/
retain-release-cf-audited.m 4 // The special thing about this file is that CFRetain and CFRelease are marked
9 extern CFTypeRef CFRetain(CFTypeRef cf);
22 CFRetain(obj2); // no-warning
31 CFRetain(obj2); // no-warning
CFDateGC.m 14 CFTypeRef CFRetain(CFTypeRef cf);
40 CFRetain(date);
53 CFRetain(date);
64 CFRetain(date);
82 CFRetain(date);
properties.m 7 extern CFTypeRef CFRetain(CFTypeRef cf);
697 CFRetain(_cfProp);
718 CFRetain(_cfProp);
796 CFTypeRef owned = CFRetain(self.cfProp);
804 CFTypeRef owned = CFRetain(self.cfProp);
921 _cfProp = CFRetain(newValue);
retain-release-gc-only.m 27 extern CFTypeRef CFRetain(CFTypeRef cf);
250 CFRetain(A);
262 CFRetain(A);
288 CFRetain(s);
427 CFTypeRef doubleRetained = CFRetain(returnsRetainedCFDate()); // +2
delegates.m 18 extern CFTypeRef CFRetain(CFTypeRef cf);
NSString.m 31 extern CFTypeRef CFRetain(CFTypeRef cf);
133 CFRetain(s4);
retain-release-inline.m 37 extern CFTypeRef CFRetain(CFTypeRef cf);
324 CFRetain(x);
360 CFRetain(Str);
  /external/libchrome/base/mac/
scoped_cftyperef.h 23 // call CFRetain(). This behavior is parameterized by the |OwnershipPolicy|
25 // then ScopedCFTypeRef<> will call CFRetain() on the object, and the initial
34 CFRetain(object);
scoped_block.h 38 // Block_release() instead of CFRetain() and CFRelease().
  /external/clang/test/SemaTemplate/
attributes.cpp 44 extern const void *CFRetain(const void *ref);
47 inline T WBCFRetain(T aValue) { return aValue ? (T)CFRetain(aValue) : (T)0; }
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.m 7 extern CFTypeRef CFRetain(CFTypeRef cf);
25 CFRetain(Str);
119 CFRetain(Str);
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_nalu.cc 106 CFRetain(contiguous_buffer);
199 CFRetain(description);
h264_video_toolbox_decoder.cc 260 CFRetain(video_format_);
  /external/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 156 if (FD->getName() == "CFRetain" &&
422 if (FD->getName() == "CFRetain" && FD->getNumParams() == 1 &&
  /external/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 65 /// if CFRetain has been called on the argument.
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 525 // CFRetain/CFRelease/CFMakeCollectable/CFAutorelease checking for null arguments.
554 Retain = &Ctx.Idents.get("CFRetain");
562 // Check if we called CFRetain/CFRelease/CFMakeCollectable/CFAutorelease.
597 description = "Null pointer argument in call to CFRetain";
    [all...]
  /external/clang/tools/scan-build/man/
scan-build.1 273 .Fn CFRetain ,

Completed in 9626 milliseconds

1 2 3