Home
last modified time | relevance | path

Searched +full:macos +full:- +full:10 (Results 1 – 25 of 641) sorted by relevance

12345678910>>...26

/external/llvm-project/llvm/test/MC/MachO/ARM/
Dbuild-version-sdk-version-errors.c1 // RUN: not llvm-mc -triple x86_64-apple-macos %s 2>&1 | FileCheck %s
3 .build_version macos,3,4,5 sdk_version
6 .build_version macos,3,4,5 sdk_version 10
9 .build_version macos,3,4,5 sdk_version 10,
12 .build_version macos,3,4,5 sdk_version 10,1,
15 .build_version macos,3,4,5 sdk_version 10,10000
18 .build_version macos,3,4,5 sdk_version 10,255,10000
Dbuild-version-diagnostics.s1 // RUN: not llvm-mc -triple x86_64-apple-tvos %s 2>&1 | FileCheck %s
4 // CHECK-NOT: build-version-diagnostics.s:[[@LINE-1]]
6 .build_version macos,1,2,3
7 // CHECK: build-version-diagnostics.s:[[@LINE-1]]:1: warning: .build_version macos used while targe…
8 // CHECK: build-version-diagnostics.s:[[@LINE-2]]:1: warning: overriding previous version directive
11 // CHECK: build-version-diagnostics.s:[[@LINE-1]]:16: error: platform name expected
13 .build_version macos 1,2
14 // CHECK: build-version-diagnostics.s:[[@LINE-1]]:22: error: version number required, comma expected
17 // CHECK: build-version-diagnostics.s:[[@LINE-1]]:16: error: unknown platform name
19 .build_version macos,a
[all …]
Dbuild-version.s1 // RUN: llvm-mc -triple x86_64-apple-macos %s | FileCheck %s
3 .build_version macos,1,2
4 // CHECK: .build_version macos, 1, 2
6 .build_version macos,1,2,0
7 // CHECK: .build_version macos, 1, 2
9 .build_version macos,3,4,5
10 // CHECK: .build_version macos, 3, 4, 5
18 .build_version watchos,10,11
19 // CHECK: .build_version watchos, 10, 11
Dbuild-version-sdk-version.s1 // RUN: llvm-mc -triple x86_64-apple-macos %s | FileCheck %s
3 .build_version macos,3,4,5 sdk_version 10,14
4 // CHECK: .build_version macos, 3, 4, 5 sdk_version 10, 14
9 .build_version tvos,8,9 sdk_version 9,0,10
10 // CHECK: .build_version tvos, 8, 9 sdk_version 9, 0, 10
12 .build_version watchos,10,11 sdk_version 10,11
13 // CHECK: .build_version watchos, 10, 11 sdk_version 10, 11
/external/clang/test/SemaObjC/
Dattr-availability-1.m1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -x objective-c++ -std=c++11 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -veri…
3 // RUN: %clang_cc1 -x objective-c++ -std=c++03 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -veri…
11 - (void)proto_method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expe…
15 - (void)method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-n…
17 - (void)overridden __attribute__((availability(macosx,introduced=10_3))); // expected-note{{overrid…
18 - (void)overridden2 __attribute__((availability(macosx,introduced=10_3)));
19 - (void)overridden3 __attribute__((availability(macosx,deprecated=10_3)));
20 - (void)overridden4 __attribute__((availability(macosx,deprecated=10_3))); // expected-note{{overri…
21 - (void)overridden5 __attribute__((availability(macosx,unavailable)));
[all …]
/external/llvm-project/clang/test/SemaObjC/
Dattr-availability-1.m1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -x objective-c++ -std=c++11 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -veri…
3 // RUN: %clang_cc1 -x objective-c++ -std=c++03 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -veri…
11 - (void)proto_method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expe…
15 - (void)method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-n…
17 - (void)overridden __attribute__((availability(macosx,introduced=10_3))); // expected-note{{overrid…
18 - (void)overridden2 __attribute__((availability(macosx,introduced=10_3)));
19 - (void)overridden3 __attribute__((availability(macosx,deprecated=10_3)));
20 - (void)overridden4 __attribute__((availability(macosx,deprecated=10_3))); // expected-note{{overri…
21 - (void)overridden5 __attribute__((availability(macosx,unavailable)));
[all …]
Dunguarded-availability-new.m1 // RUN: %clang_cc1 -DMAC -triple x86_64-apple-macosx10.13 -fblocks -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -xobjective-c++ -DMAC -triple x86_64-apple-macosx10.13 -fblocks -fsyntax-only -v…
4 // RUN: %clang_cc1 -DMAC -triple x86_64-apple-macosx10.13 -Wunguarded-availability-new -fblocks -fs…
5 // RUN: %clang_cc1 -DMAC -triple x86_64-apple-macosx10.13 -Wno-unguarded-availability-new -DNO_WARN…
7 // unguarded-availability implies unguarded-availability-new:
8 // RUN: %clang_cc1 -DMAC -triple x86_64-apple-macosx10.13 -Wunguarded-availability -fblocks -fsynta…
9 …cc1 -DMAC -triple x86_64-apple-macosx10.11 -Wunguarded-availability -Wno-unguarded-availability-ne…
10 // RUN: %clang_cc1 -DMAC -triple x86_64-apple-macosx10.13 -Wno-unguarded-availability -DNO_WARNING …
11 …RUN: %clang_cc1 -DMAC -triple x86_64-apple-macosx10.13 -Wno-unguarded-availability -Wunguarded-ava…
13 // RUN: %clang_cc1 -DMAC -triple x86_64-apple-macosx10.13 -D TEST_FUNC_CURRENT -fblocks -fsyntax-on…
[all …]
/external/llvm-project/clang/test/Parser/
Dobjc-available.m1 // RUN: %clang_cc1 -fsyntax-only -Wunguarded-availability -Wno-unsupported-availability-guard -trip…
5 if (@available(macos 10.12, *)) {}
6 else if (@available(macos 10.11, *)) {}
9 (void)__builtin_available(ios 8, macos 10.10, *);
11 …(void)@available(macos 10.11); // expected-error{{must handle potential future platforms with '*'}}
12 …(void)@available(macos 10.11, macos 10.11, *); // expected-error{{version for 'macos' already spec…
14 (void)@available(erik_os 10.11, *); // expected-error{{unrecognized platform name erik_os}}
16 (void)@available(erik_os 10.10, hat_os 1.0, *); // expected-error 2 {{unrecognized platform name}}
18 (void)@available(); // expected-error{{expected a platform name here}}
19 (void)@available(macos 10.10,); // expected-error{{expected a platform name here}}
[all …]
/external/clang/test/Misc/
Dast-print-objectivec.m1 // RUN: %clang_cc1 -ast-print %s -o - | FileCheck %s
6 - (void)MethP __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2)));
10 - (void)MethI __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2)));
14 - (void)MethCAT __attribute__((availability(macosx,introduced=10_1_0,deprecated=10_2)));
18 - (void)MethP __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2))) {}
19 - (void)MethI __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2))) {}
23 // CHECK: - (void) MethP __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
27 // CHECK: - (void) MethI __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
31 // CHECK: - (void) MethCAT __attribute__((availability(macos, introduced=10_1_0, deprecated=10_2)));
35 // CHECK: - (void) MethP __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2))) {
[all …]
/external/llvm-project/clang/test/CodeGenObjC/
Davailability-check.m1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.11 -emit-llvm -o - %s | FileCheck %s
4 // CHECK: call i32 @__isPlatformVersionAtLeast(i32 1, i32 10, i32 12, i32 0)
5 // CHECK-NEXT: icmp ne
6 if (__builtin_available(macos 10.12, *))
9 // CHECK: call i32 @__isPlatformVersionAtLeast(i32 1, i32 10, i32 12, i32 0)
10 // CHECK-NEXT: icmp ne
11 if (@available(macos 10.12, *))
14 // CHECK: call i32 @__isPlatformVersionAtLeast(i32 1, i32 10, i32 12, i32 42)
15 // CHECK-NEXT: icmp ne
16 if (__builtin_available(ios 10, macos 10.12.42, *))
[all …]
/external/llvm-project/clang/test/AST/
Dast-print-objectivec.m1 // RUN: %clang_cc1 -ast-print %s -o - | FileCheck %s
6 - (void)MethP __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2)));
10 - (void)MethI __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2)));
14 - (void)MethCAT __attribute__((availability(macosx,introduced=10_1_0,deprecated=10_2)));
18 - (void)MethP __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2))) {}
19 - (void)MethI __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2))) {}
21 - (void)methodWithArg:(int)x andAnotherOne:(int)y { }
25 // CHECK: - (void)MethP __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
29 // CHECK: - (void)MethI __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
33 // CHECK: - (void)MethCAT __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.9.1rc1.rst2 .. date: 2020-10-23-19-19-30
4 .. release date: 2020-11-24
13 .. date: 2020-10-19-10-56-27
24 .. date: 2020-05-28-06-06-47
29 making constant-time-defeating optimizations less likely.
34 .. date: 2020-11-17-16-25-50
46 .. date: 2020-11-16-23-45-56
56 .. date: 2020-11-16-17-57-09
66 .. date: 2020-11-13-13-53-11
78 .. date: 2020-11-12-23-16-14
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/
D.travis.yml9 - npm run lint
10 - npm run build
12 - xvfb-run wct
13 - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct -s 'windows 10/microsoftedge@17' -s 'windows
16- secure: E6mivJ+7GgNYdqqfMTnlHjx+J+SlLLoDlQgiRxXR++Z4sHa0q2NPDM0zrt9XwiVFs42NemNo4WM4lOF5biuMnlEY…
17- secure: pp0nViYpl4BbxCpGtyvx5RBOZZF0ZRuwkfpwOyPQBNKzEieWlKv3KOXpIkqgligpaFB1MvpkLon1I8ab7o1J2cvW…
/external/python/pybind11/tests/
Dtest_gil_scoped.py1 # -*- coding: utf-8 -*-
9 """Runs target in process and returns its exitcode after 10s (None if still alive)."""
14 # Do not need to wait much, 10s should be more than enough.
15 process.join(timeout=10)
54 # TODO: FIXME, sometimes returns -11 (segfault) instead of 0 on macOS Python 3.9
63 # TODO: FIXME on macOS Python 3.9
72 # TODO: FIXME on macOS Python 3.9
83 # TODO: FIXME on macOS Python 3.9
93 """Makes sure that the GIL can be acquired by another module from a GIL-released state."""
/external/llvm-project/llvm/test/MC/MachO/
Dbuild-version-with-sdk-version.s1 // RUN: llvm-mc -triple x86_64-apple-macos %s -filetype=obj -o - | llvm-readobj --macho-version-min…
5 .build_version macos, 10,13,2 sdk_version 10,14,1
10 // CHECK: Platform: macos
/external/rust/crates/clang-sys/
DCHANGELOG.md1 ## [1.1.1] - 2021-02-19
4 - Bumped `libloading` version to `0.7`
6 ## [1.1.0] - 2021-02-09
9 - Added Visual Studio LLVM component directory to search paths on Windows
10 ([#121](https://github.com/KyleMayes/clang-sys/issues/121))
13 - Added support for `clang` 11.0.x
15 ## [1.0.3] - 2020-11-19
18 - Fixed `Clang::find` panicking when `llvm-config` or `xcode-build` don't output anything to `stdou…
20 ## [1.0.2] - 2020-11-17
23 - Fixed `Clang::find` to properly search directories returned by the
[all …]
/external/libcups/cups/
Draster.h4 * Copyright © 2007-2018 by Apple Inc.
5 * Copyright © 1997-2006 by Easy Software Products.
28 * Every non-PostScript printer driver that supports raster images
29 * should use the application/vnd.cups-raster image file format.
133 …CUPS_CSPACE_KCMYcm = 9, /* Black, cyan, magenta, yellow, light-cyan, light-magenta @deprecated@ */
134 CUPS_CSPACE_GMCK = 10, /* Gold, magenta, yellow, black @deprecated@ */
140 CUPS_CSPACE_CIEXYZ = 15, /* CIE XYZ @since CUPS 1.1.19/macOS 10.3@ */
141 CUPS_CSPACE_CIELab = 16, /* CIE Lab @since CUPS 1.1.19/macOS 10.3@ */
142 …_RGBW = 17, /* Red, green, blue, white (DeviceRGB, sRGB by default) @since CUPS 1.2/macOS 10.5@ */
147 CUPS_CSPACE_ICC1 = 32, /* ICC-based, 1 color @since CUPS 1.1.19/macOS 10.3@ */
[all …]
/external/llvm-project/clang/test/Sema/
Davailability-guard-format.mm1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.11 -Wunguarded-availability -fdiagnostics-parseabl…
6 - (void) method_bar __attribute__((availability(macosx, introduced = 10_12))); // expected-note {{'…
11 // expected-warning {{'method_bar' is only available on macOS 10.12 or newer}} \
12 // expected-note {{enclose 'method_bar' in an @available check to silence this warning}} \
13 // CHECK: "fix-it:.*if (@available(macOS 10.12, *))"
/external/toybox/.github/workflows/
Dtoybox.yml5 - cron: '0 2 * * *'
10 MacOS-11_0:
11 runs-on: macos-11.0
14 - uses: actions/checkout@v2
15 - name: Setup
16 run: brew install gnu-sed
17 - name: Configure
19 - name: Build
21 - name: Test
24 MacOS-10_15:
[all …]
/external/python/cpython3/Mac/BuildScript/resources/
DReadMe.rtf2 …\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;\f2\fswiss\fcharset0 Helvetica-Obl…
9 \f0\fs24 \cf0 This package will install Python $FULL_VERSION for macOS $MACOSX_DEPLOYMENT_TARGET fo…
24 \f0 to install a curated bundle of default root certificates from the third-party
26 …tps://pypi.org/project/certifi/"}}{\fldrslt https://pypi.org/project/certifi/}}). Double-click on
38 …s its own private version of Tcl/Tk 8.6. It does not use any system-supplied or third-party suppli…
40 Due to new security checks on macOS 10.15 Catalina, when launching IDLE macOS may open a window wit…
53 \f1\b \ul macOS 11.0 (Big Sur) and Apple Silicon Mac support [new in 3.9.1]\
56 As of 2020-11, macOS 11.0 (Big Sur) is the latest release of macOS and one of its major features is…
58macOS have been provided via a downloadable installer that supports the Intel 64 architecture on m…
60macOS 10.9 or later. Some of the advantages of the new installer variant: native ARM64 code on Ap…
[all …]
/external/libcups/doc/help/
Dspec-ppd.html3 <!-- SECTION: Specifications -->
7 <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
12 <style type="text/css"><!--
14 font-family: lucida grande, geneva, helvetica, arial, sans-serif;
18 font-family: lucida grande, geneva, helvetica, arial, sans-serif;
21 H1 { font-size: 2em; }
22 H2 { font-size: 1.75em; }
23 H3 { font-size: 1.5em; }
24 H4 { font-size: 1.25em; }
27 font-family: monaco, courier, monospace;
[all …]
/external/rust/crates/libc/src/unix/bsd/
Dmod.rs38 #[cfg(not(any(target_os = "macos",
153 fn eq(&self, other: &sockaddr_un) -> bool {
167 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
185 fn eq(&self, other: &utsname) -> bool {
216 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
271 pub const SIGBUS: ::c_int = 10;
295 pub const IP_MULTICAST_TTL: ::c_int = 10;
300 pub const IPV6_MULTICAST_HOPS: ::c_int = 10;
365 pub const VSUSP: usize = 10;
428 pub const RTLD_NEXT: *mut ::c_void = -1isize as *mut ::c_void;
[all …]
/external/python/cpython2/Misc/NEWS.d/
D2.7.15rc1.rst2 .. date: 2018-03-05-10-14-42
4 .. release date: 2018-04-14
15 .. date: 2018-03-02-10-24-52
21 refactored. This resolves CVE-2018-1060 and CVE-2018-1061. Patch by Jamie
27 .. date: 2017-09-04-21-24-51
56 vulnerabilities including: CVE-2017-9233 (External entity infinite loop
57 DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix
58 regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876
59 (Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use
60 os-specific entropy sources like getrandom) doesn't impact Python, since Python
[all …]
/external/llvm-project/llvm/test/MC/MachO/AArch64/
Darm-darwin-version-min-load-command.s1 …m-mc -triple arm64-apple-macos10.10.2 %s -filetype=obj -o - | llvm-objdump --macho --private-heade…
2 …vm-mc -triple arm64e-apple-macos10.10 %s -filetype=obj -o - | llvm-objdump --macho --private-heade…
3 …llvm-mc -triple arm64-apple-macos11 %s -filetype=obj -o - | llvm-objdump --macho --private-headers…
4 …lvm-mc -triple arm64-apple-macos11.1 %s -filetype=obj -o - | llvm-objdump --macho --private-header…
5-mc -triple arm64-apple-ios13.0-macabi %s -filetype=obj -o - | llvm-objdump --macho --private-head…
6-mc -triple arm64e-apple-ios13.0-macabi %s -filetype=obj -o - | llvm-objdump --macho --private-hea…
7-mc -triple arm64-apple-ios14.1-macabi %s -filetype=obj -o - | llvm-objdump --macho --private-head…
9 …llvm-mc -triple arm64e-apple-ios10.3 %s -filetype=obj -o - | llvm-objdump --macho --private-header…
10 … llvm-mc -triple arm64e-apple-ios13 %s -filetype=obj -o - | llvm-objdump --macho --private-headers…
11 …llvm-mc -triple arm64e-apple-ios14.1 %s -filetype=obj -o - | llvm-objdump --macho --private-header…
[all …]
/external/libusb/
DChangeLog4 2020-12-09: v1.0.24
10 * Darwin (macOS): Fix race condition that results in segmentation fault (#701)
11 * Darwin (macOS): Fix stale descriptor information post reset (#733)
12 * Darwin (macOS): use IOUSBDevice as darwin_device_class explicitly (#693)
28 2019-08-28: v1.0.23
37 * Darwin(macOS): Switch from using ResetDevice to USBDeviceReEnumerate (#455)
38 * Darwin(macOS): Remove code that changed the device class used (#428)
39 * Darwin(macOS): Reduce hotplug timeout to 1ms (from 5s)
49 2018-03-24: v1.0.22
52 * Report super speed plus devices on modern Linux and macOS
[all …]

12345678910>>...26