Home
last modified time | relevance | path

Searched refs:CFTypeRef (Results 1 – 25 of 80) 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
Dovl-check.m7 typedef const __attribute__((objc_bridge(id))) void * CFTypeRef; typedef
12 - (void) test2:(CFTypeRef)arg; argument
46 - (void) testCFTypeRef:(CFTypeRef)arg; argument
55 // Overload resolution should occur silently, select the CFTypeRef overload,
57 …implicit conversion of Objective-C pointer type 'id' to C pointer type 'CFTypeRef'}} expected-note…
/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 …]
/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/python/cpython2/Mac/Modules/cf/
Dpycfbridge.h1 extern PyObject *PyCF_CF2Python(CFTypeRef src);
3 extern PyObject *PyCF_CF2Python_mapping(CFTypeRef src);
4 extern PyObject *PyCF_CF2Python_simple(CFTypeRef src);
7 extern int PyCF_Python2CF(PyObject *src, CFTypeRef *dst);
10 extern int PyCF_Python2CF_simple(PyObject *src, CFTypeRef *dst);
Dpycfbridge.c17 PyCF_CF2Python(CFTypeRef src) { in PyCF_CF2Python()
36 CFTypeRef item_cf; in PyCF_CF2Python_sequence()
58 PyCF_CF2Python_mapping(CFTypeRef src) { in PyCF_CF2Python_mapping()
61 CFTypeRef *allkeys = NULL, *allvalues = NULL; in PyCF_CF2Python_mapping()
62 CFTypeRef key_cf, value_cf; in PyCF_CF2Python_mapping()
66 allkeys = malloc(size*sizeof(CFTypeRef *)); in PyCF_CF2Python_mapping()
71 allvalues = malloc(size*sizeof(CFTypeRef *)); in PyCF_CF2Python_mapping()
100 PyCF_CF2Python_simple(CFTypeRef src) { in PyCF_CF2Python_simple()
147 PyCF_Python2CF(PyObject *src, CFTypeRef *dst) { in PyCF_Python2CF()
161 CFTypeRef item_cf = NULL; in PyCF_Python2CF_sequence()
[all …]
/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/python/cpython2/Include/
Dpymactoolbox.h209 extern PyObject *CFObj_New(CFTypeRef);
210 extern int CFObj_Convert(PyObject *, CFTypeRef *);
211 extern PyObject *CFTypeRefObj_New(CFTypeRef);
212 extern int CFTypeRefObj_Convert(PyObject *, CFTypeRef *);
/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/skqp/src/ports/
DSkFontHost_mac.cpp686 SkUniqueCFRef<CFTypeRef> traits(CTFontDescriptorCopyAttribute(desc, kCTFontTraitsAttribute)); in fontstyle_from_descriptor()
711 SkTypeface_Mac(SkUniqueCFRef<CTFontRef> fontRef, SkUniqueCFRef<CFTypeRef> resourceRef, in SkTypeface_Mac()
725 SkUniqueCFRef<CFTypeRef> fOriginatingCFTypeRef;
765 SkUniqueCFRef<CFTypeRef> resource, in create_from_CTFontRef()
868 SkTypeface* SkCreateTypefaceFromCTFont(CTFontRef font, CFTypeRef resource) { in SkCreateTypefaceFromCTFont()
874 SkUniqueCFRef<CFTypeRef>(resource), in SkCreateTypefaceFromCTFont()
1891 static void set_non_default_axes(CFTypeRef key, CFTypeRef value, void* context) { in set_non_default_axes()
1903 CFTypeRef cgAxis = CFArrayGetValueAtIndex(self->cgAxes, i); in set_non_default_axes()
1909 CFTypeRef cgAxisName = CFDictionaryGetValue(cgAxisDict, kCGFontVariationAxisName); in set_non_default_axes()
1960 CFTypeRef cgAxis = CFArrayGetValueAtIndex(cgAxes.get(), i); in get_variations()
[all …]
/external/skia/src/ports/
DSkFontHost_mac.cpp686 SkUniqueCFRef<CFTypeRef> traits(CTFontDescriptorCopyAttribute(desc, kCTFontTraitsAttribute)); in fontstyle_from_descriptor()
711 SkTypeface_Mac(SkUniqueCFRef<CTFontRef> fontRef, SkUniqueCFRef<CFTypeRef> resourceRef, in SkTypeface_Mac()
725 SkUniqueCFRef<CFTypeRef> fOriginatingCFTypeRef;
765 SkUniqueCFRef<CFTypeRef> resource, in create_from_CTFontRef()
869 SkTypeface* SkCreateTypefaceFromCTFont(CTFontRef font, CFTypeRef resource) { in SkCreateTypefaceFromCTFont()
875 SkUniqueCFRef<CFTypeRef>(resource), in SkCreateTypefaceFromCTFont()
1892 static void set_non_default_axes(CFTypeRef key, CFTypeRef value, void* context) { in set_non_default_axes()
1904 CFTypeRef cgAxis = CFArrayGetValueAtIndex(self->cgAxes, i); in set_non_default_axes()
1910 CFTypeRef cgAxisName = CFDictionaryGetValue(cgAxisDict, kCGFontVariationAxisName); in set_non_default_axes()
1961 CFTypeRef cgAxis = CFArrayGetValueAtIndex(cgAxes.get(), i); in get_variations()
[all …]
/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/FixIt/
Dbridge-cast-in-arc.mm12 typedef const void * CFTypeRef; typedef
13 extern "C" CFTypeRef CFBridgingRetain(id X);

1234