Searched defs:platform (Results 1 - 25 of 199) sorted by relevance

12345678

/external/chromium_org/remoting/tools/
H A Drunclient.py12 import platform namespace
19 if platform.system() == "Windows":
23 elif platform.system() == "Darwin": # Darwin == MacOSX
/external/chromium_org/v8/include/libplatform/
H A Dlibplatform.h8 #include "include/v8-platform.h"
11 namespace platform { namespace in namespace:v8
29 * not block if no task is pending. The |platform| has to be created using
32 bool PumpMessageLoop(v8::Platform* platform, v8::Isolate* isolate);
35 } // namespace platform
/external/elfutils/0.153/libebl/
H A Deblcorenote.c93 static const Ebl_Core_Item platform[] = local
100 ITEMS (NT_PLATFORM, platform);
/external/libunwind/doc/
H A Dlibunwind.tex8 \begin{Name}{3}{libunwind}{David Mosberger-Tang}{Programming Library}{Introduction to libunwind}libunwind -- a (mostly) platform-independent unwind API
111 cursor depends, of course, on the platform. However, there are two
201 \section{Cross-platform and Multi-platform Unwinding}
210 \emph{target}. If the host and the target platform are the same, we
212 \emph{cross-platform} unwinding.
214 The principle behind supporting native, cross-platform, and
215 multi-platform unwinding is very simple: for native unwinding, a
217 \Opt{-l}\File{unwind}. For cross-platform unwinding, a program
220 of the target platform (
[all...]
/external/chromium_org/build/
H A Ddetect_host_arch.py8 import platform namespace
15 host_arch = platform.machine()
25 # platform.machine is based on running kernel. It's possible to use 64-bit
29 if host_arch == 'x64' and platform.architecture()[0] == '32bit':
H A Dget_landmines.py20 platform = landmine_utils.platform variable
27 if (distributor() == 'goma' and platform() == 'win32' and
30 if platform() == 'android':
32 if platform() == 'win' and builder() == 'ninja':
34 if platform() == 'linux' and builder() == 'ninja':
36 if platform() == 'mac':
38 if platform() in ('win', 'mac'):
41 if (platform() == 'win' and builder() == 'ninja' and
46 if (platform()
[all...]
/external/chromium_org/v8/build/
H A Ddetect_v8_host_arch.py31 import platform namespace
43 host_arch = platform.machine()
59 # platform.machine is based on running kernel. It's possible to use 64-bit
63 if host_arch == 'x64' and platform.architecture()[0] == '32bit':
/external/chromium_org/base/test/expectations/
H A Dexpectation_unittest.cc52 test_expectations::Platform platform; local
54 EXPECT_TRUE(PlatformFromString("Win", &platform));
55 EXPECT_EQ("Win", platform.name);
56 EXPECT_EQ("", platform.variant);
58 EXPECT_TRUE(PlatformFromString("Mac-10.6", &platform));
59 EXPECT_EQ("Mac", platform.name);
60 EXPECT_EQ("10.6", platform.variant);
62 EXPECT_TRUE(PlatformFromString("ChromeOS", &platform));
63 EXPECT_EQ("ChromeOS", platform.name);
64 EXPECT_EQ("", platform
98 test_expectations::Platform platform; local
104 test_expectations::Platform platform; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DPlatform.cpp32 #include "public/platform/Platform.h"
38 void Platform::initialize(Platform* platform) argument
40 s_platform = platform;
H A DWebPrerenderingSupport.cpp33 #include "public/platform/WebPrerenderingSupport.h"
39 void WebPrerenderingSupport::initialize(WebPrerenderingSupport* platform) argument
41 s_platform = platform;
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DTiming.py2 # Get time in platform-dependent way
6 from sys import platform, exit, stderr namespace
8 if platform == 'mac':
20 "Don't know how to get time on platform %s\n" % repr(platform))
/external/chromium_org/tools/ipc_fuzzer/
H A Dplay_testcase.py16 import platform namespace
H A Dremove_close_messages.py15 import platform namespace
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dchrome_browser_options.py6 from telemetry.core import platform namespace
12 if (platform.GetHostPlatform().GetOSName() == 'chromeos' or
/external/chromium_org/ui/ozone/
H A Dplatform_object_internal.h19 // Determine selected platform (from --ozone-platform flag, or default).
20 int platform = GetOzonePlatformId(); local
23 Constructor constructor = PlatformConstructorList<T>::kConstructors[platform];
/external/chromium_org/v8/src/libplatform/
H A Dworker-thread.cc7 #include "include/v8-platform.h"
11 namespace platform { namespace in namespace:v8
31 } } // namespace v8::platform
H A Dworker-thread.h11 #include "src/base/platform/platform.h"
15 namespace platform { namespace in namespace:v8
35 } } // namespace v8::platform
H A Ddefault-platform-unittest.cc5 #include "src/libplatform/default-platform.h"
12 namespace platform { namespace in namespace:v8
31 DefaultPlatform platform; local
32 EXPECT_FALSE(platform.PumpMessageLoop(isolate));
35 platform.CallOnForegroundThread(isolate, task);
38 EXPECT_TRUE(platform.PumpMessageLoop(isolate));
39 EXPECT_FALSE(platform.PumpMessageLoop(isolate));
42 } // namespace platform
H A Dtask-queue-unittest.cc5 #include "include/v8-platform.h"
6 #include "src/base/platform/platform.h"
15 namespace platform { namespace in namespace:v8
59 } // namespace platform
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DNavigatorID.cpp63 String NavigatorID::platform() function in class:blink::NavigatorID
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontCacheTest.cpp6 #include "platform/fonts/FontCache.h"
8 #include "platform/fonts/FontDescription.h"
9 #include "platform/fonts/SimpleFontData.h"
10 #include "public/platform/Platform.h"
28 OwnPtr<EmptyPlatform> platform = adoptPtr(new EmptyPlatform); local
29 Platform::initialize(platform.get());
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
H A Dplatform.cpp43 clGetPlatformInfo(cl_platform_id platform, cl_platform_info param_name, argument
45 if (platform != NULL)
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dpower_monitor_controller.py5 import telemetry.core.platform.power_monitor as power_monitor namespace
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dvideo_unittest.py11 from telemetry.core import platform namespace
20 host_platform = platform.GetHostPlatform()
26 logging.warning('Test not supported on this platform')
/external/chromium_org/ui/base/cursor/
H A Dcursor.cc34 void Cursor::SetPlatformCursor(const PlatformCursor& platform) { argument
37 platform_cursor_ = platform;

Completed in 515 milliseconds

12345678