Home
last modified time | relevance | path

Searched full:sdks (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/external/robolectric/robolectric/src/main/java/org/robolectric/plugins/
DDefaultSdkPicker.java48 SortedSet<Sdk> sdks = this.sdkCollection.getKnownSdks(); in DefaultSdkPicker() local
50 minKnownSdk = sdks.first(); in DefaultSdkPicker()
51 maxKnownSdk = sdks.last(); in DefaultSdkPicker()
53 throw new RuntimeException("no SDKs are supported among " + sdkCollection.getKnownSdks(), e); in DefaultSdkPicker()
58 * Enumerate the SDKs to be used for this test.
69 Set<Sdk> sdks = new TreeSet<>(configuredSdks(config, usesSdk)); in selectSdks() local
71 sdks = Sets.intersection(sdks, enabledSdks); in selectSdks()
73 return Lists.newArrayList(sdks); in selectSdks()
112 // For explicitly-enumerated SDKs... in configuredSdks()
128 Set<Sdk> sdks = new HashSet<>(); in configuredSdks() local
[all …]
DSdkCollection.java14 * Holds and provides details on the list of known SDKs.
29 String.format("duplicate SDKs for API level %d", sdk.getApiLevel())); in SdkCollection()
/external/python/cpython3/Lib/test/
Dtest__osx_support.py125 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
128 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
135 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
138 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
158 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
161 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
181 'CPPFLAGS': '-I. -isysroot/Developer/SDKs/MacOSX10.4u.sdk',
184 '-isysroot/Developer/SDKs/MacOSX10.4u.sdk -g',
204 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
207 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
[all …]
/external/python/cpython2/Lib/test/
Dtest__osx_support.py127 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
130 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
137 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
140 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
160 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
163 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
183 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
186 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
192 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
195 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
[all …]
Dtest_sysconfig.py180 '/Developer/SDKs/MacOSX10.4u.sdk '
188 '/Developer/SDKs/MacOSX10.4u.sdk '
196 '/Developer/SDKs/MacOSX10.4u.sdk '
203 '/Developer/SDKs/MacOSX10.4u.sdk '
210 '/Developer/SDKs/MacOSX10.4u.sdk '
219 '/Developer/SDKs/MacOSX10.4u.sdk '
/external/angle/build/mac/
Dfind_sdk.py16 10.6 # Ignores SDKs < 10.6
19 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk
73 dev_dir, 'Platforms/MacOSX.platform/Developer/SDKs')
79 sdks = [re.findall('^MacOSX(\d+\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
80 sdks = [s[0] for s in sdks if s] # [['10.5'], ['10.6']] => ['10.5', '10.6']
81 sdks = [s for s in sdks # ['10.5', '10.6'] => ['10.6']
83 if not sdks:
85 best_sdk = sorted(sdks, key=parse_version)[0]
/external/cronet/build/mac/
Dfind_sdk.py16 10.6 # Ignores SDKs < 10.6
19 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk
73 dev_dir, 'Platforms/MacOSX.platform/Developer/SDKs')
79 sdks = [re.findall('^MacOSX(\d+\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
80 sdks = [s[0] for s in sdks if s] # [['10.5'], ['10.6']] => ['10.5', '10.6']
81 sdks = [s for s in sdks # ['10.5', '10.6'] => ['10.6']
83 if not sdks:
85 best_sdk = sorted(sdks, key=parse_version)[0]
/external/clang/test/Driver/
Ddarwin-sdkroot.c44 // RUN: rm -rf %t/SDKs/iPhoneOS8.0.0.sdk
45 // RUN: mkdir -p %t/SDKs/iPhoneOS8.0.0.sdk
46 // RUN: env SDKROOT=%t/SDKs/iPhoneOS8.0.0.sdk %clang -target arm64-apple-darwin %s -### 2>&1 \
56 // RUN: rm -rf %t/SDKs/iPhoneSimulator8.0.sdk
57 // RUN: mkdir -p %t/SDKs/iPhoneSimulator8.0.sdk
58 // RUN: env SDKROOT=%t/SDKs/iPhoneSimulator8.0.sdk %clang -target x86_64-apple-darwin %s -### 2>&1 \
67 // RUN: rm -rf %t/SDKs/MacOSX10.10.0.sdk
68 // RUN: mkdir -p %t/SDKs/MacOSX10.10.0.sdk
69 // RUN: env SDKROOT=%t/SDKs/MacOSX10.10.0.sdk %clang -target x86_64-apple-darwin %s -### 2>&1 \
Dincompatible_sysroot.c4 // RUN: %clang -target x86_64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/MacOSX10.9.sdk -mi…
5 // RUN: %clang -target arm64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneOS9.2.sdk -mw…
6 // RUN: %clang -target arm64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneOS9.2.sdk -mt…
7 // RUN: %clang -target x86_64-apple-darwin -Wincompatible-sysroot -isysroot SDKs/iPhoneSimulator9.2…
8 // RUN: %clang -target x86_64-apple-darwin -Wno-incompatible-sysroot -isysroot SDKs/MacOSX10.9.sdk …
/external/robolectric/processor/src/main/java/org/robolectric/annotation/processing/validator/
DSdkStore.java56 private final Set<Sdk> sdks = new TreeSet<>(); field in SdkStore
76 * Used to look up matching sdks for a declared shadow class. Needed to then find the class from
77 * the underlying sdks for comparison in the ImplementsValidator.
82 for (Sdk sdk : sdks) { in sdksMatching()
111 for (Sdk sdk : sdks) { in sdksMatching()
122 sdks.addAll( in loadSdksOnce()
137 for (Sdk sdk : sdks.stream().sorted().collect(Collectors.toList())) { in toString()
176 * Returns a list of sdks to process, either the compilation's classpaths sdk in a list of size
177 * one, or the list of sdks in a sdkFile. This should not be needed unless building in the android
178 * codebase. Otherwise, should prefer using the sdks.txt and the released jars.
[all …]
DImplementsValidator.java48 /** Supported modes for validation of {@link Implementation} methods against SDKs. */
382 Set<Integer> sdks = problems.get(problem); in add() local
383 if (sdks == null) { in add()
384 problems.put(problem, sdks = new TreeSet<>()); in add()
386 sdks.add(sdkInt); in add()
396 Set<Integer> sdks = e.getValue(); in recount() local
399 buf.append(problem).append(" for ").append(sdks.size() == 1 ? "SDK " : "SDKs "); in recount()
403 for (Integer sdk : sdks) { in recount()
/external/bazelbuild-rules_go/go/private/
Dsdk.bzl76 sdks = ctx.attr.sdks
78 if not sdks:
79 # If sdks was unspecified, download a full list of files.
113 sdks = sdks_by_version[version]
115 if platform not in sdks:
117 filename, sha256 = sdks[platform]
123 if not ctx.attr.sdks and not ctx.attr.version:
130 "sdks": ctx.attr.sdks,
142 "sdks": attr.string_list_dict(),
594 sdks = json.decode(data)
[all …]
Dextensions.bzl28 "sdks": attr.string_list_dict(),
63 # SDKs without an explicit version are fetched even when not selected by toolchain
69 # SDKs with an explicit name are at risk of colliding with those from other modules.
88 sdks = download_tag.sdks,
/external/deqp/framework/delibs/cmake/
Dtoolchain-ios.cmake8 # This decides if SDKS will be selected from the iPhoneOS.platform or iPhoneSimulator.platform fo…
16 # CMAKE_IOS_SDK_ROOT = automatic(default) or /path/to/platform/Developer/SDKs/SDK folder
31 # Determine the cmake host system version so we know where to find the iOS SDKs
118 file (GLOB _CMAKE_IOS_SDKS "${CMAKE_IOS_DEVELOPER_ROOT}/SDKs/*")
159 # only search the iOS sdks, not the remainder of the host filesystem
/external/icu/icu4c/source/allinone/
DBuild.Windows.PlatformToolset.props44 …er_10)' == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@Insta…
45 …'">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@Insta…
46 …on_10)' == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@Produ…
47 …'">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@Produ…
/external/aws-sdk-java-v2/services/kms/target/generated-sources/sdk/software/amazon/awssdk/services/kms/
Dpackage-info.java27 …* Amazon Web Services provides SDKs that consist of libraries and sample code for various programm…
28 …* platforms (Java, Ruby, .Net, macOS, Android, etc.). The SDKs provide a convenient way to create …
29 …* to KMS and other Amazon Web Services services. For example, the SDKs take care of tasks such as …
31 …* SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Too…
36 * We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to KMS.
/external/python/cpython3/Lib/distutils/tests/
Dtest_util.py109 '/Developer/SDKs/MacOSX10.4u.sdk '
122 '/Developer/SDKs/MacOSX10.4u.sdk '
130 '/Developer/SDKs/MacOSX10.4u.sdk '
137 '/Developer/SDKs/MacOSX10.4u.sdk '
144 '/Developer/SDKs/MacOSX10.4u.sdk '
153 '/Developer/SDKs/MacOSX10.4u.sdk '
/external/freetype/builds/cmake/
DiOS.cmake25 # This decides whether SDKS are selected from the `iPhoneOS.platform' or
40 # CMAKE_IOS_SDK_ROOT = /path/to/platform/Developer/SDKs/SDK folder
80 # SDKs
191 file(GLOB _CMAKE_IOS_SDKS "${CMAKE_IOS_DEVELOPER_ROOT}/SDKs/*")
244 # only search the iOS SDKs, not the remainder of the host filesystem
/external/aws-sdk-java-v2/
DVERSIONING.md15 following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide:
17 * [AWS SDKs and Tools Maintenance Policy](https://docs.aws.amazon.com/credref/latest/refdocs/maint-…
18 * [AWS SDKs and Tools Version Support Matrix](https://docs.aws.amazon.com/credref/latest/refdocs/ve…
/external/libwebsockets/contrib/
DiOS.cmake8 # This decides if SDKS will be selected from the iPhoneOS.platform or iPhoneSimulator.platform fo…
16 # CMAKE_IOS_SDK_ROOT = automatic(default) or /path/to/platform/Developer/SDKs/SDK folder
49 # Determine the cmake host system version so we know where to find the iOS SDKs
162 file (GLOB _CMAKE_IOS_SDKS "${CMAKE_IOS_DEVELOPER_ROOT}/SDKs/*")
203 # only search the iOS sdks, not the remainder of the host filesystem
/external/aws-sdk-java-v2/scripts/doc_crosslinks/
Dgenerate_cross_link_data.py13 sdks = {} variable
30 sdks[apiContent["metadata"]["uid"]] = getServiceName
36 return sdks
133 … output = current_template.replace("${UID_SERVICE_MAPPING}", json.dumps(sdks, ensure_ascii=False))
/external/robolectric/pluginapi/src/main/java/org/robolectric/pluginapi/
DSdkProvider.java7 * SDKs in a special way for your environment.
15 * Returns the set of SDKs available to run tests against.
/external/bazelbuild-rules_android/src/tools/java/com/google/devtools/build/android/sandboxedsdktoolbox/
DBUILD1 # Common tools for managing sandboxed SDKs.
2 # Sandboxed SDKs are libraries that are released separately from Android apps and can run in the
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/
Dold_win_sdk_compat.hpp29 // Emulation of types that are missing from old Platform SDKs.
204 // Even newer Platform SDKs that support IPv6 may not define IPV6_V6ONLY.
209 // Some SDKs (e.g. Windows CE) don't define IPPROTO_ICMPV6.
/external/google-breakpad/src/common/mac/
Dencoding_util.h35 // deprecated with iOS 9.0 / OS X 10.11 SDKs, this function re-implements it
37 // using those SDKs.

12345678910>>...18