Home
last modified time | relevance | path

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

12345678910>>...12

/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.py126 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
129 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
136 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
139 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
159 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
162 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
182 'CPPFLAGS': '-I. -isysroot/Developer/SDKs/MacOSX10.4u.sdk',
185 '-isysroot/Developer/SDKs/MacOSX10.4u.sdk -g',
205 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
208 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
[all …]
Dtest_sysconfig.py204 '/Developer/SDKs/MacOSX10.4u.sdk '
212 '/Developer/SDKs/MacOSX10.4u.sdk '
220 '/Developer/SDKs/MacOSX10.4u.sdk '
227 '/Developer/SDKs/MacOSX10.4u.sdk '
234 '/Developer/SDKs/MacOSX10.4u.sdk '
243 '/Developer/SDKs/MacOSX10.4u.sdk '
/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/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/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/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-shadows/robolectric/src/main/java/org/robolectric/
DSdkPicker.java34 * Enumerate the SDKs to be used for this test.
36 * @param config a {@link Config} specifying one or more SDKs
43 Set<SdkConfig> sdks = new TreeSet<>(configuredSdks(config, usesSdk)); in selectSdks() local
45 sdks = Sets.intersection(sdks, enabledSdks); in selectSdks()
47 return Lists.newArrayList(sdks); in selectSdks()
85 // For explicitly-enumerated SDKs... in configuredSdks()
140 "No matching SDKs found for minSdk=" + minSdk + ", maxSdk=" + maxSdk); in sdkRange()
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
DImplementsValidator.java51 * Supported modes for validation of {@link Implementation} methods against SDKs.
319 Set<Integer> sdks = problems.get(problem); in add() local
320 if (sdks == null) { in add()
321 problems.put(problem, sdks = new TreeSet<>()); in add()
323 sdks.add(sdkInt); in add()
333 Set<Integer> sdks = e.getValue(); in recount() local
338 .append(sdks.size() == 1 ? "SDK " : "SDKs "); in recount()
342 for (Integer sdk : sdks) { in recount()
DSdkStore.java43 private final Set<Sdk> sdks = new TreeSet<>(); field in SdkStore
66 for (Sdk sdk : sdks) { in sdksMatching()
77 sdks.addAll(loadFromSdksFile("/sdks.txt")); in loadSdksOnce()
90 List<Sdk> sdks = new ArrayList<>(); in loadFromSdksFile() local
94 sdks.add(new Sdk(line)); in loadFromSdksFile()
97 return sdks; in loadFromSdksFile()
/external/robolectric/processor/src/main/java/org/robolectric/annotation/processing/validator/
DImplementsValidator.java52 * Supported modes for validation of {@link Implementation} methods against SDKs.
375 Set<Integer> sdks = problems.get(problem); in add() local
376 if (sdks == null) { in add()
377 problems.put(problem, sdks = new TreeSet<>()); in add()
379 sdks.add(sdkInt); in add()
389 Set<Integer> sdks = e.getValue(); in recount() local
394 .append(sdks.size() == 1 ? "SDK " : "SDKs "); in recount()
398 for (Integer sdk : sdks) { in recount()
DSdkStore.java47 private final Set<Sdk> sdks = new TreeSet<>(); field in SdkStore
75 for (Sdk sdk : sdks) { in sdksMatching()
86 sdks.addAll(loadFromSdksFile(sdksFile)); in loadSdksOnce()
103 List<Sdk> sdks = new ArrayList<>(); in loadFromSdksFile() local
107 sdks.add(new Sdk(line)); in loadFromSdksFile()
110 return ImmutableList.copyOf(sdks); in loadFromSdksFile()
/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/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/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/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowResourcesTest.java135 // com.android.internal.R values on older SDKs. This test ensures that even on older SDKs, on in obtainStyledAttributes_shouldCheckXmlFirst_fromAttributeSetBuilder()
218 // com.android.internal.R values on older SDKs. This test ensures that even on older SDKs, in obtainStyledAttributesShouldCheckXmlFirst_andFollowReferences()
284 // getConfiguration is called, on lower SDKs the Configuration constructor calls in subclassWithNpeGetConfiguration_constructsCorrectly()
/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/curl/
DMacOSX-Framework55 # Around Xcode 4.3, SDKs were moved from the Developer folder into the
57 if test -d "$DEVELOPER_PATH/Platforms/MacOSX.platform/Developer/SDKs"; then
58 SDK_PATH="$DEVELOPER_PATH/Platforms/MacOSX.platform/Developer/SDKs"
60 SDK_PATH="$DEVELOPER_PATH/SDKs"
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowResourcesTest.java166 …ic ID values they are assigned clash with private com.android.internal.R values on older SDKs. This in obtainStyledAttributes_shouldCheckXmlFirst_fromAttributeSetBuilder()
167 …// test ensures that even on older SDKs, on calls to obtainStyledAttributes() Robolectric will fir… in obtainStyledAttributes_shouldCheckXmlFirst_fromAttributeSetBuilder()
195 …ic ID values they are assigned clash with private com.android.internal.R values on older SDKs. This in obtainStyledAttributesShouldCheckXmlFirst_andFollowReferences()
196 …// test ensures that even on older SDKs, on calls to obtainStyledAttributes() Robolectric will fir… in obtainStyledAttributesShouldCheckXmlFirst_andFollowReferences()
/external/capstone/windowsce/
DCOMPILE.md28 set WINCE_TOOLCHAIN_ROOT=C:\Windows_CE_Tools\SDKs\SDK_HW90270\Sdk
41 …set INCLUDE=C:\Program Files (x86)\Windows CE Tools\SDKs\Symbol MC3200c70 Windows CE 7.0 PSDK\Incl…
52 …set LIBPATH=C:\Program Files (x86)\Windows CE Tools\SDKs\Symbol MC3200c70 Windows CE 7.0 PSDK\Lib\…

12345678910>>...12