/external/clang/test/Driver/ |
objc-weak.m | 3 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fobjc-arc -fobjc-weak 2>&1 | FileCheck %s --check-prefix ARC-WEAK 4 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fno-objc-weak -fobjc-weak -fobjc-arc 2>&1 | FileCheck %s --check-prefix ARC-WEAK 8 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fobjc-arc -fno-objc-weak 2>&1 | FileCheck %s --check-prefix ARC-NO-WEAK 9 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fobjc-weak -fno-objc-weak -fobjc-arc 2>&1 | FileCheck %s --check-prefix ARC-NO-WEAK 13 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fobjc-arc -fobjc-weak 2>&1 | FileCheck %s --check-prefix ARC-WEAK-NOTSUPPORTED 14 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.5 -S -### %s -fno-objc-weak -fobjc-weak -fobjc-arc 2>&1 | FileCheck %s --check-prefix ARC-WEAK-NOTSUPPORTED 17 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK 18 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fno-objc-weak -fobjc-weak 2>&1 | FileCheck %s --check-prefix MRC-WEAK 21 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fno-objc-weak 2>&1 | FileCheck %s --check-prefix MRC-NO-WEAK 22 // RUN: %clang -target x86_64-apple-macosx -mmacosx-version-min=10.7 -S -### %s -fobjc-weak -fno-objc-weak 2>&1 | FileCheck %s --check-prefix (…) [all...] |
darwin-sdkroot.c | 70 // RUN: | FileCheck --check-prefix=CHECK-MACOSX %s 72 // CHECK-MACOSX: clang 73 // CHECK-MACOSX: "-cc1" 74 // CHECK-MACOSX: "-triple" "x86_64-apple-macosx10.10.0" 75 // CHECK-MACOSX: ld 76 // CHECK-MACOSX: "-macosx_version_min" "10.10.0"
|
/external/clang/test/ARCMT/ |
objcmt-instancetype-2.m | 19 + (id)stringWithContentsOfFile:(NSString *)path __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 20 + (id)stringWithContentsOfURL:(NSURL *)url __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 21 + (id)stringWithCString:(const char *)bytes length:(NSUInteger)length __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 22 + (id)stringWithCString:(const char *)bytes __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 33 + (id)URLByResolvingBookmarkData:(NSData *)bookmarkData options:(NSURLBookmarkResolutionOptions)options relativeToURL:(NSURL *)relativeURL bookmarkDataIsStale:(BOOL *)isStale error:(NSError **)error __attribute__((availability(macosx,introduced=10.6))); 54 + (id )dictionaryWithSharedKeySet:(id)keyset __attribute__((availability(macosx,introduced=10.8))); 67 + (id)dateWithString:(NSString *)aString __attribute__((availability(macosx,introduced=10.4))); 71 + (id)calendarDate __attribute__((availability(macosx,introduced=10.4))); 72 + (id)dateWithString:(NSString *)description calendarFormat:(NSString *)format locale:(id)locale __attribute__((availability(macosx,introduced=10.4))); 73 + (id)dateWithString:(NSString *)description calendarFormat:(NSString *)format __attribute__((availability(macosx,introduced=10.4))) [all...] |
objcmt-instancetype-2.m.result | 19 + (id)stringWithContentsOfFile:(NSString *)path __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 20 + (id)stringWithContentsOfURL:(NSURL *)url __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 21 + (id)stringWithCString:(const char *)bytes length:(NSUInteger)length __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 22 + (id)stringWithCString:(const char *)bytes __attribute__((availability(macosx,introduced=10.0 ,message="" ))); 33 + (instancetype)URLByResolvingBookmarkData:(NSData *)bookmarkData options:(NSURLBookmarkResolutionOptions)options relativeToURL:(NSURL *)relativeURL bookmarkDataIsStale:(BOOL *)isStale error:(NSError **)error __attribute__((availability(macosx,introduced=10.6))); 54 + (instancetype )dictionaryWithSharedKeySet:(id)keyset __attribute__((availability(macosx,introduced=10.8))); 67 + (instancetype)dateWithString:(NSString *)aString __attribute__((availability(macosx,introduced=10.4))); 71 + (instancetype)calendarDate __attribute__((availability(macosx,introduced=10.4))); 72 + (instancetype)dateWithString:(NSString *)description calendarFormat:(NSString *)format locale:(id)locale __attribute__((availability(macosx,introduced=10.4))); 73 + (instancetype)dateWithString:(NSString *)description calendarFormat:(NSString *)format __attribute__((availability(macosx,introduced=10.4))) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/external/llvm/test/MC/MachO/ARM/ |
version-min-diagnostics2.s | 4 // RUN: llvm-mc -triple i386-apple-macosx %s 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=MACOSX 9 // MACOSX: version-min-diagnostics2.s:[[@LINE-3]]:1: warning: .ios_version_min should only be used for ios targets 13 // WATCHOS: version-min-diagnostics2.s:[[@LINE-1]]:1: warning: .macosx_version_min should only be used for macosx targets 14 // TVOS: version-min-diagnostics2.s:[[@LINE-2]]:1: warning: .macosx_version_min should only be used for macosx targets 15 // IOS: version-min-diagnostics2.s:[[@LINE-3]]:1: warning: .macosx_version_min should only be used for macosx targets 16 // MACOSX-NOT: warning: .macosx_version_min should only be used for macosx targets 22 // MACOSX: version-min-diagnostics2.s:[[@LINE-2]]:1: warning: .tvos_version_min should only be used for tvos targets 29 // MACOSX: version-min-diagnostics2.s:[[@LINE-1]]:1: warning: .watchos_version_min should only be used for w (…) [all...] |
/external/clang/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/ |
ObjCRuntime.h | 29 /// 'macosx' is the Apple-provided NeXT-derived runtime on Mac OS 32 MacOSX, 34 /// 'macosx-fragile' is the Apple-provided NeXT-derived runtime on 65 ObjCRuntime() : TheKind(MacOSX) {} 84 case MacOSX: return true; 107 else if ((getKind() == MacOSX) && isNonFragile() && 120 case MacOSX: 145 case MacOSX: return true; 163 case MacOSX: return getVersion() >= VersionTuple(10, 7); 177 case MacOSX [all...] |
/external/clang/lib/Basic/ |
ObjCRuntime.cpp | 30 case ObjCRuntime::MacOSX: out << "macosx"; break; 31 case ObjCRuntime::FragileMacOSX: out << "macosx-fragile"; break; 60 if (runtimeName == "macosx") { 61 kind = ObjCRuntime::MacOSX; 62 } else if (runtimeName == "macosx-fragile") {
|
/external/clang/test/CodeGen/ |
attr-availability.c | 14 void f3() __attribute__((availability(macosx,introduced=10.5))); 20 void f0() __attribute__((availability(macosx,introduced=10.5))); 25 void f1() __attribute__((availability(macosx,introduced=10.6)));
|
/external/clang/test/CodeGenObjC/ |
bitfield-1.m | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o %t %s 2 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o %t %s 3 // RUN: %clang_cc1 -triple i386-pc-linux-gnu -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o %t %s
|
fpret.m | 1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | \ 4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | \ 7 // RUN: %clang_cc1 -triple armv7-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -target-abi apcs-gnu -o - %s | \
|
/development/samples/training/basic/ActivityLifecycle/ |
local.properties | 10 sdk.dir=/Users/brutledge/android-sdk-macosx
|