Home
last modified time | relevance | path

Searched refs:platforms (Results 1 – 25 of 1620) sorted by relevance

12345678910>>...65

/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-find-node-directory.js7 const platforms = ['darwin', 'freebsd', 'linux', 'sunos', 'win32', 'aix'] variable
14 t.plan(platforms.length)
15 for (var next = 0; next < platforms.length; next++) {
16 var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
29 t.plan(platforms.length)
30 for (var next = 0; next < platforms.length; next++) {
31 var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
32 if (platforms[next] === 'win32') {
47 t.plan(platforms.length)
48 for (var next = 0; next < platforms.length; next++) {
[all …]
/third_party/boost/boost/compute/
Dsystem.hpp117 const std::vector<platform> platforms = system::platforms(); in devices() local
118 for(size_t i = 0; i < platforms.size(); i++){ in devices()
119 const std::vector<device> platform_devices = platforms[i].devices(); in devices()
134 const std::vector<platform> platforms = system::platforms(); in device_count() local
135 for(size_t i = 0; i < platforms.size(); i++){ in device_count()
136 count += platforms[i].device_count(); in device_count()
186 static std::vector<platform> platforms() in platforms() function in boost::compute::system
191 std::vector<platform> platforms; in platforms() local
198 platforms.push_back(platform(platform_ids[i])); in platforms()
201 return platforms; in platforms()
/third_party/boost/libs/compute/include/boost/compute/
Dsystem.hpp117 const std::vector<platform> platforms = system::platforms(); in devices() local
118 for(size_t i = 0; i < platforms.size(); i++){ in devices()
119 const std::vector<device> platform_devices = platforms[i].devices(); in devices()
134 const std::vector<platform> platforms = system::platforms(); in device_count() local
135 for(size_t i = 0; i < platforms.size(); i++){ in device_count()
136 count += platforms[i].device_count(); in device_count()
186 static std::vector<platform> platforms() in platforms() function in boost::compute::system
191 std::vector<platform> platforms; in platforms() local
198 platforms.push_back(platform(platform_ids[i])); in platforms()
201 return platforms; in platforms()
/third_party/skia/bazel/common_config_settings/
DBUILD.bazel3 # @platforms is found at https://github.com/bazelbuild/platforms
9 "@platforms//cpu:x86_64",
10 "@platforms//os:linux",
17 "@platforms//cpu:x86_64",
18 "@platforms//os:windows",
25 "@platforms//cpu:arm64",
26 "@platforms//os:linux",
42 constraint_setting = "@platforms//os:os",
48 "@platforms//cpu:arm64",
54 # bazelbuild/platforms call it wasm32. https://github.com/emscripten-core/emsdk/issues/919
/third_party/grpc/tools/run_tests/
Drun_tests_matrix.py121 platforms, argument
132 for platform in platforms:
177 platforms=['linux'],
186 platforms=['linux'],
196 platforms=['linux', 'macos', 'windows'],
206 platforms=['linux', 'macos', 'windows'],
214 platforms=['linux', 'macos', 'windows'],
224 platforms=['linux', 'macos', 'windows'],
235 platforms=['linux', 'macos'],
244 platforms=['linux', 'macos'],
[all …]
/third_party/grpc/third_party/toolchains/bazel_0.26.0_rbe_windows/
DBUILD68 "@bazel_tools//platforms:x86_64",
69 "@bazel_tools//platforms:windows",
73 "@bazel_tools//platforms:x86_64",
74 "@bazel_tools//platforms:windows",
104 "@bazel_tools//platforms:x86_64",
105 "@bazel_tools//platforms:windows",
109 "@bazel_tools//platforms:x86_64",
110 "@bazel_tools//platforms:windows",
140 "@bazel_tools//platforms:x86_64",
141 "@bazel_tools//platforms:windows",
[all …]
/third_party/icu/tools/colprobe/
DcolprobeNew.cpp290 } platforms[] = { variable
313 for(i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in listKnownPlatforms()
314 logger->log("\t%s\n", platforms[i]); in listKnownPlatforms()
323 for(i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in addPlatform()
324 if(strcmp(platform, platforms[i].name) == 0) { in addPlatform()
392 for(i = 0; i < (int32_t)(sizeof(platforms)/sizeof(platforms[0])); i++) { in processArgs()
393 if(strcmp(options[REFERENCE].value, platforms[i].name) == 0) { in processArgs()
398 if(i == sizeof(platforms)/sizeof(platforms[0])) { in processArgs()
496 strcpy(tailoringName, platforms[gPlatformIndexes[0]].name); in getFileNames()
503 strcpy(tailoringDumpName, platforms[gPlatformIndexes[0]].name); in getFileNames()
[all …]
/third_party/cef/tools/cefbuilds/
Dcef_json_builder_test.py251 platforms = cef_json_builder.get_platforms()
260 for platform in platforms:
271 self.assertEqual(len(files), len(platforms) * len(versions) * len(types))
276 self.assertEqual(len(files), len(platforms) * len(types))
280 self.assertEqual(len(files), len(platforms) * len(versions))
288 for platform in platforms:
300 platforms = ['linux32', 'linux64']
307 for platform in platforms:
314 self.assertEqual(len(files), len(platforms) * len(types))
319 for platform in platforms:
[all …]
Dcef_json_builder_example.py79 platforms = cef_json_builder.get_platforms() variable
81 platforms = [sys.argv[2]] variable
131 for platform in platforms:
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DCLPlatform.cpp66 PlatformPtrs &platforms = GetPointers(); in Initialize() local
67 ASSERT(_cl_platform_id::sDispatch == nullptr && platforms.empty()); in Initialize()
68 if (_cl_platform_id::sDispatch != nullptr || !platforms.empty()) in Initialize()
75 platforms.reserve(createFuncs.size()); in Initialize()
78 platforms.emplace_back(new Platform(createFuncs.front())); in Initialize()
80 platforms.back()->release(); in Initialize()
81 if (!platforms.back()->mInfo.isValid() || platforms.back()->mDevices.empty()) in Initialize()
83 platforms.pop_back(); in Initialize()
90 cl_platform_id *platforms, in GetPlatformIDs() argument
98 if (platforms != nullptr) in GetPlatformIDs()
[all …]
/third_party/boost/libs/compute/example/
Dlist_devices.cpp19 std::vector<compute::platform> platforms = compute::system::platforms(); in main() local
21 for(size_t i = 0; i < platforms.size(); i++){ in main()
22 const compute::platform &platform = platforms[i]; in main()
Dopencl_test.cpp103 cl_platform_id *platforms = new cl_platform_id[num_platforms]; in main() local
104 clGetPlatformIDs(num_platforms, platforms, NULL); in main()
108 cl_platform_id platform = platforms[i]; in main()
158 delete[] platforms; in main()
/third_party/boost/libs/compute/test/
Dtest_context.cpp55 const std::vector<compute::platform> &platforms = compute::system::platforms(); in BOOST_AUTO_TEST_CASE() local
56 for(size_t i = 0; i < platforms.size(); i++){ in BOOST_AUTO_TEST_CASE()
57 const compute::platform &platform = platforms[i]; in BOOST_AUTO_TEST_CASE()
/third_party/boost/boost/compute/interop/opengl/
Dcontext.hpp74 std::vector<platform> platforms = system::platforms(); in opengl_create_shared_context() local
75 for(size_t i = 0; i < platforms.size(); i++){ in opengl_create_shared_context()
76 const platform &platform = platforms[i]; in opengl_create_shared_context()
/third_party/boost/libs/compute/include/boost/compute/interop/opengl/
Dcontext.hpp74 std::vector<platform> platforms = system::platforms(); in opengl_create_shared_context() local
75 for(size_t i = 0; i < platforms.size(); i++){ in opengl_create_shared_context()
76 const platform &platform = platforms[i]; in opengl_create_shared_context()
/third_party/cef/tools/
Dmake_cmake.py52 platforms = {}
76 if not platform in platforms:
77 platforms[platform] = []
78 platforms[platform].append(file)
86 if len(platforms) > 0:
87 keys = sorted(platforms.keys())
89 result += format_cmake_set(name + '_' + key, platforms[key])
Dcef_api_hash.py38 self.platforms = ["windows", "mac", "linux"]
90 platforms = list([
91 p for p in self.platforms if self.__is_platform_filename(filename, p)
103 o["platforms"] = platforms
122 for platform in itertools.chain(["universal"], self.platforms):
229 for p in self.platforms:
/third_party/node/tools/gyp/pylib/gyp/
DMSVSProject.py54 def __init__(self, project_path, version, name, guid=None, platforms=None): argument
70 if not platforms:
71 platforms = ["Win32"]
75 for platform in platforms:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
DMSVSProject.py54 def __init__(self, project_path, version, name, guid=None, platforms=None): argument
70 if not platforms:
71 platforms = ['Win32']
75 for platform in platforms:
/third_party/boost/libs/dll/doc/
Dlimitations.qbk10 Some platforms and compilers do not provide all the required functionality to have a fully function…
26 Some platforms ignore section attributes, so that querying for a symbols in a specified section usi…
30 On some platforms `dlopen`,`dlclose` and some other functions assume that they won't be called conc…
36 Other platforms are under question. If you're using one of the platforms that are not listed (for e…
/third_party/EGL/extensions/EXT/
DEGL_EXT_platform_base.txt47 that support multiple platforms at runtime. For example, on Linux an EGL
49 Surface Flinger, and perhaps other platforms.
53 1. A mechanism by which an EGL client can detect which platforms the
64 resources from multiple platforms.
67 specification rather than 'window system' because not all EGL platforms
68 are window systems. In particular, those platforms that allow headless
72 does it specify the set of platforms that an EGL implementation may
106 rationale behind this change is that not all platforms are window systems,
108 particular, platforms that allow headless rendering without a display
114 "This specification does not define the set of platforms that may be
[all …]
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/
DEGL_EXT_platform_base.txt47 that support multiple platforms at runtime. For example, on Linux an EGL
49 Surface Flinger, and perhaps other platforms.
53 1. A mechanism by which an EGL client can detect which platforms the
64 resources from multiple platforms.
67 specification rather than 'window system' because not all EGL platforms
68 are window systems. In particular, those platforms that allow headless
72 does it specify the set of platforms that an EGL implementation may
106 rationale behind this change is that not all platforms are window systems,
108 particular, platforms that allow headless rendering without a display
114 "This specification does not define the set of platforms that may be
[all …]
/third_party/mesa3d/docs/
Degl.rst50 ``-D platforms=...``
51 List the platforms (window systems) to support. Its argument is a
52 comma separated string such as ``-D platforms=x11,wayland``. It decides
53 the platforms a driver may support. The first listed platform is also
56 The available platforms are ``x11``, ``wayland``,
61 platforms automatically.
89 same as those for ``-D platforms=...``. When the variable is not set,
91 ``-D platforms=...`` as the native platform.
94 create displays for non-native platforms. These extensions are
95 usually used by applications that support non-native platforms.
[all …]
/third_party/mbedtls/3rdparty/everest/
DREADME.md5platforms are supported, although the version in `everest/library/legacy` should work on most syst…
/third_party/flutter/skia/third_party/externals/sdl/docs/
DREADME-platforms.md4 We maintain the list of supported platforms on our wiki now, and how to
5 build and install SDL for those platforms:

12345678910>>...65