/external/clang/test/SemaObjC/ |
D | arc-bridged-cast.m | 4 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(); 35 …CFTypeRef cf5 = (__bridge_retain CFTypeRef)CreateSomething(); // expected-error {{unknown cast ann… 39 CFTypeRef fixits() { [all …]
|
D | illegal-nonarc-bridged-cast.m | 4 typedef const void *CFTypeRef; typedef 10 CFTypeRef CFCreateSomething(); 12 CFTypeRef CFGetSomething(); 27 …CFTypeRef 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
|
D | arc-cf.m | 7 typedef const void *CFTypeRef; typedef 8 CFTypeRef CFBridgingRetain(id X); 9 id CFBridgingRelease(CFTypeRef);
|
/external/clang/test/Analysis/ |
D | retain-release-cf-audited.m | 8 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}}
|
D | weak-functions.c | 106 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() 116 …CFTypeRef object = CFCreateSomething(); // expected-warning{{Potential leak of an object stored in… in CFGetRuleViolation()
|
D | CFDateGC.m | 12 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; }
|
D | PR2599.m | 3 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…
|
D | retain-release-gc-only.m | 23 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 …]
|
D | cfref_PR2519.c | 6 typedef const void * CFTypeRef; typedef 11 extern void CFRelease(CFTypeRef cf);
|
/external/clang/test/ARCMT/ |
D | no-canceling-bridge-to-bridge-cast.m | 3 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 …]
|
D | Common.h | 24 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()
|
D | GC-check.m | 6 typedef const void * CFTypeRef; typedef 7 CFTypeRef CFMakeCollectable(CFTypeRef cf) CF_AUTOMATED_REFCOUNT_UNAVAILABLE; // expected-note {{una… 10 void test1(CFTypeRef *cft) { 11 …CFTypeRef c = CFMakeCollectable(cft); // expected-error {{CFMakeCollectable will leak the object t…
|
D | checking-in-arc.m | 9 typedef const void * CFTypeRef; typedef 10 CFTypeRef CFBridgingRetain(id X); 11 id CFBridgingRelease(CFTypeRef);
|
/external/clang/test/SemaObjCXX/ |
D | arc-bridged-cast.mm | 3 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/ |
D | arc-bridged-cast.m | 3 typedef const void *CFTypeRef; typedef 9 CFTypeRef CFCreateSomething(void); 11 CFTypeRef CFGetSomething(void); 60 CFTypeRef cf1 = (__bridge_retained CFTypeRef)CreateSomething(); 65 (__bridge_retained CFTypeRef)CreateSomething(), *i = 13; 78 CFTypeRef cf1 = (__bridge CFTypeRef)CreateSomething(); 83 (__bridge CFTypeRef)CreateSomething(), *i = 13;
|
/external/clang/test/PCH/Inputs/ |
D | arc.h | 3 typedef const void *CFTypeRef; typedef 6 CFTypeRef CFCreateSomething(); 8 CFTypeRef CFGetSomething(); 24 typedef int array1[sizeof((BRIDGE CFTypeRef)CreateSomething())];
|
/external/chromium_org/base/mac/ |
D | foundation_util_unittest.mm | 22 ScopedCFTypeRef<CFTypeRef> test_array( 24 ScopedCFTypeRef<CFTypeRef> test_array_mutable( 26 ScopedCFTypeRef<CFTypeRef> test_bag( 28 ScopedCFTypeRef<CFTypeRef> test_bag_mutable( 30 CFTypeRef test_bool = kCFBooleanTrue; 31 ScopedCFTypeRef<CFTypeRef> test_data( 33 ScopedCFTypeRef<CFTypeRef> test_data_mutable( 35 ScopedCFTypeRef<CFTypeRef> test_date( 37 ScopedCFTypeRef<CFTypeRef> test_dict( 41 ScopedCFTypeRef<CFTypeRef> test_dict_mutable( [all …]
|
D | foundation_util.h | 157 BASE_EXPORT void* CFTypeRefToNSObjectAutorelease(CFTypeRef cf_object); 262 T CFCast(const CFTypeRef& cf_val); 265 T CFCastStrict(const CFTypeRef& cf_val); 269 CFCast<TypeCF##Ref>(const CFTypeRef& cf_val);\ 272 CFCastStrict<TypeCF##Ref>(const CFTypeRef& cf_val); 341 CFStringRef key, const std::string& expected_type, CFTypeRef value); 347 CFTypeRef value = CFDictionaryGetValue(dict, key); in GetValueFromDictionary()
|
D | scoped_cftyperef.h | 31 static void Retain(CFTypeRef object) { in Retain() 34 static void Release(CFTypeRef object) { in Release()
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/ |
D | SDL_sysjoystick.c | 234 static void HIDGetElementInfo (CFTypeRef refElement, recElement *pElement) in HIDGetElementInfo() 237 CFTypeRef refType; in HIDGetElementInfo() 283 static void HIDAddElement (CFTypeRef refElement, recDevice* pDevice) in HIDAddElement() 288 CFTypeRef refElementType = CFDictionaryGetValue (refElement, CFSTR(kIOHIDElementTypeKey)); in HIDAddElement() 289 CFTypeRef refUsagePage = CFDictionaryGetValue (refElement, CFSTR(kIOHIDElementUsagePageKey)); in HIDAddElement() 290 CFTypeRef refUsage = CFDictionaryGetValue (refElement, CFSTR(kIOHIDElementUsageKey)); in HIDAddElement() 378 HIDAddElement ((CFTypeRef) value, (recDevice *) parameter); in HIDGetElementsCFArrayHandler() 383 static void HIDGetElements (CFTypeRef refElementCurrent, recDevice *pDevice) in HIDGetElements() 400 CFTypeRef refElementTop = CFDictionaryGetValue (deviceProperties, CFSTR(kIOHIDElementKey)); in HIDGetCollectionElements() 409 CFTypeRef refCF = 0; in HIDTopLevelElementHandler() [all …]
|
/external/chromium_org/crypto/ |
D | apple_keychain.h | 34 virtual OSStatus FindGenericPassword(CFTypeRef keychainOrArray, 76 CFTypeRef keychainOrArray, 99 virtual void Free(CFTypeRef ref) const;
|
/external/clang/test/FixIt/ |
D | bridge-cast-in-arc.mm | 12 typedef const void * CFTypeRef; typedef 13 extern "C" CFTypeRef CFBridgingRetain(id X);
|
/external/clang/test/Analysis/inlining/ |
D | InlineObjCInstanceMethod.m | 6 typedef const void * CFTypeRef; typedef 7 extern CFTypeRef CFRetain(CFTypeRef cf); 8 extern void CFRelease(CFTypeRef cf);
|
/external/clang/test/Index/ |
D | arc-complete.m | 1 typedef const void *CFTypeRef; typedef 4 (__bridge CFTypeRef)x;
|
/external/chromium_org/net/proxy/ |
D | proxy_resolver_mac.cc | 51 CFTypeRef* result_ptr = reinterpret_cast<CFTypeRef*>(client); in ResultCallback() 109 CFTypeRef result = NULL; in GetProxyForURL()
|