Home
last modified time | relevance | path

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

1234567

/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',
191 'CPPFLAGS': '-I. -isysroot /Developer/SDKs/MacOSX10.4u.sdk',
194 '-isysroot /Developer/SDKs/MacOSX10.4u.sdk -g',
[all …]
Dtest_sysconfig.py168 '/Developer/SDKs/MacOSX10.4u.sdk '
176 '/Developer/SDKs/MacOSX10.4u.sdk '
184 '/Developer/SDKs/MacOSX10.4u.sdk '
191 '/Developer/SDKs/MacOSX10.4u.sdk '
198 '/Developer/SDKs/MacOSX10.4u.sdk '
207 '/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/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.java42 private final Set<Sdk> sdks = new TreeSet<>(); field in SdkStore
65 for (Sdk sdk : sdks) { in sdksMatching()
76 sdks.addAll(loadFromSdksFile("/sdks.txt")); in loadSdksOnce()
89 List<Sdk> sdks = new ArrayList<>(); in loadFromSdksFile() local
93 sdks.add(new Sdk(line)); in loadFromSdksFile()
96 return sdks; in loadFromSdksFile()
/external/libjpeg-turbo/
Dappveyor.yml11 …\Microsoft Visual Studio 10.0\VC\include;c:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\inclu…
13 …icrosoft Visual Studio 10.0\VC\lib\amd64;c:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\lib\x…
15 …ommon7\IDE;c:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\bin\x64;c:\Program Files (x86)\Micr…
/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/python/cpython3/Lib/distutils/tests/
Dtest_util.py108 '/Developer/SDKs/MacOSX10.4u.sdk '
121 '/Developer/SDKs/MacOSX10.4u.sdk '
129 '/Developer/SDKs/MacOSX10.4u.sdk '
136 '/Developer/SDKs/MacOSX10.4u.sdk '
143 '/Developer/SDKs/MacOSX10.4u.sdk '
152 '/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/curl/
DMacOSX-Framework32 # Around Xcode 4.3, SDKs were moved from the Developer folder into the
34 if test -d "$DEVELOPER_PATH/Platforms/MacOSX.platform/Developer/SDKs"; then
35 SDK_PATH="$DEVELOPER_PATH/Platforms/MacOSX.platform/Developer/SDKs"
37 SDK_PATH="$DEVELOPER_PATH/SDKs";
/external/python/cpython3/Mac/BuildScript/
DREADME.txt18 --sdk-path=/Developer/SDKs/MacOSX10.5.sdk \
53 --sdk-path=/Developer/SDKs/MacOSX10.6.sdk \
102 --sdk-path=/Developer/SDKs/MacOSX10.4u.sdk \
122 * ``MacOSX10.4u`` SDK (later SDKs do not support PPC G3 processors)
183 --sdk-path=/Developer/SDKs/MacOSX10.5.sdk
/external/libusb/msvc/
Dappveyor.bat10 call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Debug /x64
16 call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /x64
/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/python/oauth2client/scripts/
Dfetch_gae_sdk.py8 https://www.googleapis.com/storage/v1/b/appengine-sdks/o?prefix=featured
21 'https://www.googleapis.com/storage/v1/b/appengine-sdks/o?prefix=featured')
/external/google-breakpad/src/common/mac/
Dmacho_utilities.h40 /* Some #defines and structs that aren't defined in older SDKs */
68 // Older SDKs defines thread_state_data_t as an int[] instead
/external/python/cpython2/Mac/BuildScript/
DREADME.txt35 --sdk-path=/Developer/SDKs/MacOSX10.5.sdk \
71 --sdk-path=/Developer/SDKs/MacOSX10.6.sdk \
161 --sdk-path=/Developer/SDKs/MacOSX10.5.sdk
/external/python/cpython3/Mac/
DREADME48 the Xcode default MacOS X SDK, otherwise ``/Developer/SDKs/MacOSX.10.4u.sdk``
133 following combinations of SDKs and universal-archs flavors are available:
143 * 10.7 and 10.8 SDKs with Xcode 4 support ``intel`` only
145 * 10.8 and 10.9 SDKs with Xcode 5 support ``intel`` only
296 the Python documentation set. It should be possible to use SDKs and/or older
/external/mdnsresponder/mDNSWindows/SystemService/
DService.vcproj47 …quot;$(VCInstallDir)atlmfc\include&quot;;&quot;C:/Program Files/Microsoft SDKs/Windows/v6.1/Includ…
140 …quot;$(VCInstallDir)atlmfc\include&quot;;&quot;C:/Program Files/Microsoft SDKs/Windows/v6.1/Includ…
230 …quot;$(VCInstallDir)atlmfc\include&quot;;&quot;C:/Program Files/Microsoft SDKs/Windows/v6.1/Includ…
317 …quot;$(VCInstallDir)atlmfc\include&quot;;&quot;C:/Program Files/Microsoft SDKs/Windows/v6.1/Includ…
/external/python/cpython2/Mac/
DREADME48 the Xcode default MacOS X SDK, otherwise ``/Developer/SDKs/MacOSX.10.4u.sdk``
135 following combinations of SDKs and universal-archs flavors are available:
145 * 10.7 and 10.8 SDKs with Xcode 4 support ``intel`` only
147 * 10.8 and 10.9 SDKs with Xcode 5 support ``intel`` only
307 the Python documentation set. It should be possible to use SDKs and/or older
/external/google-breakpad/src/client/mac/handler/testcases/testdata/
Ddump_syms_i386_breakpad.sym2 FILE 1 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/libkern/i386/OSByteOrder.h
3 FILE 2 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/architecture/byte_order.h
5 FILE 4 /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRan…
6 FILE 5 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/new
7 FILE 6 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/ext/hash_fun.h
11 FILE 10 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/bits/stl_tree.h
12 FILE 11 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/bits/stl_iterator.h
13 FILE 12 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/ext/hashtable.h
14 FILE 13 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/bits/stl_pair.h
15 FILE 14 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/ext/new_allocator.h
[all …]
/external/skqp/src/ports/
DSkImageGeneratorWIC.cpp16 // All Windows SDKs back to XPSP2 export the CLSID_WICImagingFactory symbol.
20 // we intended to link against on all SDKs.

1234567