Home
last modified time | relevance | path

Searched refs:CFTypeRef (Results 1 – 25 of 76) sorted by relevance

1234

/external/clang/test/SemaObjC/
Darc-bridged-cast.m4 typedef const void *CFTypeRef; typedef
5 CFTypeRef CFBridgingRetain(id X);
6 id CFBridgingRelease(CFTypeRef);
12 CFTypeRef CFCreateSomething();
14 CFTypeRef CFGetSomething();
23 …(__bridge int*)CFCreateSomething(); // expected-error{{incompatible types casting 'CFTypeRef' (aka…
29 CFTypeRef cf1 = (__bridge_retained CFTypeRef)CreateSomething();
31 CFTypeRef cf3 = (__bridge CFTypeRef)CreateSomething();
35CFTypeRef cf5 = (__bridge_retain CFTypeRef)CreateSomething(); // expected-error {{unknown cast ann…
39 CFTypeRef fixits() {
[all …]
Dillegal-nonarc-bridged-cast.m4 typedef const void *CFTypeRef; typedef
10 CFTypeRef CFCreateSomething();
12 CFTypeRef CFGetSomething();
27CFTypeRef cf1 = (__bridge_retained CFTypeRef)CreateSomething(); // expected-warning {{'__bridge_re…
29 CFTypeRef cf3 = (__bridge CFTypeRef)CreateSomething();
35 CFTypeRef cf1 = (CFTypeRef)CreateSomething();
41 CFTypeRef cf1 = (__bridge_retained CFTypeRef)CreateSomething(); // no-warning
42 CFTypeRef cf3 = (__bridge CFTypeRef)CreateSomething(); // no-warning
Darc-cf.m7 typedef const void *CFTypeRef; typedef
8 CFTypeRef CFBridgingRetain(id X);
9 id CFBridgingRelease(CFTypeRef);
/external/clang/test/SemaObjCXX/Inputs/
Dnullability-consistency-8.h13 typedef void *CFTypeRef; typedef
14 void cf1(CFTypeRef * p CF_RETURNS_NOT_RETAINED); // expected-warning {{pointer is missing a nullabi…
16 void cf2(CFTypeRef * _Nullable p CF_RETURNS_NOT_RETAINED);
17 void cf3(CFTypeRef * _Nonnull p CF_RETURNS_NOT_RETAINED);
19 void cf4(CFTypeRef _Nullable * _Nullable p CF_RETURNS_NOT_RETAINED);
20 void cf5(CFTypeRef _Nonnull * _Nullable p CF_RETURNS_NOT_RETAINED);
22 void cf6(CFTypeRef * _Nullable CF_RETURNS_NOT_RETAINED p);
23 void cf7(CF_RETURNS_NOT_RETAINED CFTypeRef * _Nonnull p);
25 typedef CFTypeRef _Nullable *CFTypeRefPtr;
/external/clang/test/Analysis/
Dretain-release-cf-audited.m8 typedef const void * CFTypeRef; typedef
9 extern CFTypeRef CFRetain(CFTypeRef cf);
10 extern void CFRelease(CFTypeRef cf);
12 extern CFTypeRef CFCreateSomethingAudited();
15 extern CFTypeRef CFCreateSomethingUnaudited();
18 CFTypeRef obj = CFCreateSomethingAudited(); // no-warning
21 CFTypeRef obj2 = CFCreateSomethingAudited(); // expected-warning{{leak}}
27 CFTypeRef obj = CFCreateSomethingUnaudited(); // no-warning
30 CFTypeRef obj2 = CFCreateSomethingUnaudited(); // expected-warning{{leak}}
Dweak-functions.c106 typedef struct CFType *CFTypeRef; typedef
107 CFTypeRef CFCreateSomething() __attribute__((weak_import));
108 CFTypeRef CFGetSomething() __attribute__((weak_import));
110 CFTypeRef CFCopyRuleViolation () { in CFCopyRuleViolation()
111 CFTypeRef object = CFGetSomething(); in CFCopyRuleViolation()
115 CFTypeRef CFGetRuleViolation () { in CFGetRuleViolation()
116CFTypeRef object = CFCreateSomething(); // expected-warning{{Potential leak of an object stored in… in CFGetRuleViolation()
DCFDateGC.m12 typedef const void * CFTypeRef; typedef
13 void CFRelease(CFTypeRef cf);
14 CFTypeRef CFRetain(CFTypeRef cf);
15 CFTypeRef CFMakeCollectable(CFTypeRef cf);
24 static __inline__ __attribute__((always_inline)) id NSMakeCollectable(CFTypeRef cf) { return 0; }
DPR2599.m3 typedef const void * CFTypeRef; typedef
7 CFTypeRef CFMakeCollectable(CFTypeRef cf) ;
47 …_ID(cf) ( (((void*)0) == (cf)) ? ((void*)0) : [(id) CFMakeCollectable( (CFTypeRef) cf) autorelease…
49 #define UTIL_AUTORELEASE_CF_AS_ID_WITHOUT_TEST(cf) ( [(id) CFMakeCollectable( (CFTypeRef) cf) autor…
Dretain-release-gc-only.m23 typedef const void * CFTypeRef; typedef
27 extern CFTypeRef CFRetain(CFTypeRef cf);
28 extern void CFRelease(CFTypeRef cf);
73 …ttribute(CFMutableAttributedStringRef aStr, CFRange range, CFStringRef attrName, CFTypeRef value) ;
223 CFTypeRef CFMakeCollectable(CFTypeRef cf) ;
225 static __inline__ __attribute__((always_inline)) id NSMakeCollectable(CFTypeRef
403 void CFConsumeAndStopTracking(CFTypeRef CF_CONSUMED obj, void (^callback)(void));
420 …CFConsumeAndStopTracking((CFTypeRef)retained, ^{}); // expected-warning {{Incorrect decrement of t…
424 CFTypeRef retained = returnsRetainedCFDate(); // +1
427 CFTypeRef doubleRetained = CFRetain(returnsRetainedCFDate()); // +2
[all …]
Dcfref_PR2519.c6 typedef const void * CFTypeRef; typedef
11 extern void CFRelease(CFTypeRef cf);
Dproperties.m6 typedef const void * CFTypeRef; typedef
7 extern CFTypeRef CFRetain(CFTypeRef cf);
8 void CFRelease(CFTypeRef cf);
362 @property CFTypeRef cfProp;
441 extern void CFUse(CFTypeRef);
515 CFTypeRef owned = CFRetain(self.cfProp);
522 CFTypeRef fromIvar = _cfProp;
523 CFTypeRef owned = CFRetain(self.cfProp);
604 - (void)testAssignCF:(CFTypeRef)newValue { argument
639 - (void)testAssignCFOkay:(CFTypeRef)newValue { argument
/external/clang/test/ARCMT/
DCommon.h24 typedef const void * CFTypeRef; typedef
25 CFTypeRef CFRetain(CFTypeRef cf);
26 CFTypeRef CFMakeCollectable(CFTypeRef cf) NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
28 NS_INLINE NS_RETURNS_RETAINED id NSMakeCollectable(CFTypeRef CF_CONSUMED cf) NS_AUTOMATED_REFCOUNT_…
87 NS_INLINE CF_RETURNS_RETAINED CFTypeRef CFBridgingRetain(id X) { in CFBridgingRetain()
88 return (__bridge_retained CFTypeRef)X; in CFBridgingRetain()
91 NS_INLINE id CFBridgingRelease(CFTypeRef CF_CONSUMED X) { in CFBridgingRelease()
97 NS_INLINE CF_RETURNS_RETAINED CFTypeRef CFBridgingRetain(id X) { in CFBridgingRetain()
98 return X ? CFRetain((CFTypeRef)X) : NULL; in CFBridgingRetain()
101 NS_INLINE id CFBridgingRelease(CFTypeRef CF_CONSUMED X) { in CFBridgingRelease()
Dno-canceling-bridge-to-bridge-cast.m3 typedef const void * CFTypeRef; typedef
4 CFTypeRef CFBridgingRetain(id X);
5 id CFBridgingRelease(CFTypeRef);
8 CFTypeRef CFRetain(CFTypeRef cf);
25 …ithFormat:@"PBXLoopMode"]); // expected-error {{cast of C pointer type 'CFTypeRef' (aka 'const voi…
27 …pected-note {{use CFBridgingRelease call to transfer ownership of a +1 'CFTypeRef' (aka 'const voi…
29 …etain((id)((objc_format))); // expected-error {{cast of C pointer type 'CFTypeRef' (aka 'const voi…
31 …// expected-note {{use CFBridgingRelease call to transfer ownership of a +1 'CFTypeRef' (aka 'cons…
33 …result = (id) CFRetain((id)((cf_format))); // expected-error {{cast of C pointer type 'CFTypeRef' …
35 …pected-note {{use CFBridgingRelease call to transfer ownership of a +1 'CFTypeRef' (aka 'const voi…
[all …]
DGC-check.m6 typedef const void * CFTypeRef; typedef
7 CFTypeRef CFMakeCollectable(CFTypeRef cf) CF_AUTOMATED_REFCOUNT_UNAVAILABLE; // expected-note {{una…
10 void test1(CFTypeRef *cft) {
11CFTypeRef c = CFMakeCollectable(cft); // expected-error {{CFMakeCollectable will leak the object t…
Dchecking-in-arc.m9 typedef const void * CFTypeRef; typedef
10 CFTypeRef CFBridgingRetain(id X);
11 id CFBridgingRelease(CFTypeRef);
/external/clang/test/SemaObjCXX/
Darc-bridged-cast.mm3 typedef const void *CFTypeRef; typedef
9 CFTypeRef CFCreateSomething();
11 CFTypeRef CFGetSomething();
21 …ype)CFCreateSomething(); // expected-error{{incompatible types casting 'CFTypeRef' (aka 'const voi…
30 CFTypeRef cf1 = (__bridge_retained IdType)CreateSomething();
32 CFTypeRef cf3 = (__bridge IdType)CreateSomething();
36 template void to_cf<CFTypeRef, CFStringRef>(id);
/external/clang/test/CodeGenObjC/
Darc-bridged-cast.m3 typedef const void *CFTypeRef; typedef
9 CFTypeRef CFCreateSomething(void);
11 CFTypeRef CFGetSomething(void);
64 CFTypeRef cf1 = (__bridge_retained CFTypeRef)CreateSomething();
69 (__bridge_retained CFTypeRef)CreateSomething(), *i = 13;
85 CFTypeRef cf1 = (__bridge CFTypeRef)CreateSomething();
90 (__bridge CFTypeRef)CreateSomething(), *i = 13;
/external/clang/test/PCH/Inputs/
Darc.h3 typedef const void *CFTypeRef; typedef
6 CFTypeRef CFCreateSomething();
8 CFTypeRef CFGetSomething();
24 typedef int array1[sizeof((BRIDGE CFTypeRef)CreateSomething())];
/external/libchrome/base/mac/
Dfoundation_util.h167 BASE_EXPORT void* CFTypeRefToNSObjectAutorelease(CFTypeRef cf_object);
272 T CFCast(const CFTypeRef& cf_val);
275 T CFCastStrict(const CFTypeRef& cf_val);
279 CFCast<TypeCF##Ref>(const CFTypeRef& cf_val);\
282 CFCastStrict<TypeCF##Ref>(const CFTypeRef& cf_val);
352 CFStringRef key, const std::string& expected_type, CFTypeRef value);
358 CFTypeRef value = CFDictionaryGetValue(dict, key); in GetValueFromDictionary()
/external/libchrome/crypto/
Dapple_keychain.h35 virtual OSStatus FindGenericPassword(CFTypeRef keychainOrArray,
77 CFTypeRef keychainOrArray,
100 virtual void Free(CFTypeRef ref) const;
/external/clang/test/FixIt/
Dbridge-cast-in-arc.mm12 typedef const void * CFTypeRef; typedef
13 extern "C" CFTypeRef CFBridgingRetain(id X);
/external/webrtc/webrtc/modules/video_coding/codecs/h264/
Dh264_video_toolbox_encoder.cc28 inline CFDictionaryRef CreateCFDictionary(CFTypeRef* keys, in CreateCFDictionary()
29 CFTypeRef* values, in CreateCFDictionary()
284 CFTypeRef keys[] = {kVTEncodeFrameOptionKey_ForceKeyFrame}; in Encode()
285 CFTypeRef values[] = {kCFBooleanTrue}; in Encode()
340 CFTypeRef keys[attributes_size] = { in ResetCompressionSession()
354 CFTypeRef values[attributes_size] = {kCFBooleanTrue, io_surface_value, in ResetCompressionSession()
Dh264_video_toolbox_decoder.cc26 inline CFDictionaryRef CreateCFDictionary(CFTypeRef* keys, in CreateCFDictionary()
27 CFTypeRef* values, in CreateCFDictionary()
193 CFTypeRef keys[attributes_size] = { in ResetDecompressionSession()
207 CFTypeRef values[attributes_size] = {kCFBooleanTrue, io_surface_value, in ResetDecompressionSession()
/external/clang/test/Analysis/inlining/
DInlineObjCInstanceMethod.m6 typedef const void * CFTypeRef; typedef
7 extern CFTypeRef CFRetain(CFTypeRef cf);
8 extern void CFRelease(CFTypeRef cf);
/external/clang/test/Index/
Darc-complete.m1 typedef const void *CFTypeRef; typedef
4 (__bridge CFTypeRef)x;

1234