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

12345

/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/elfutils/libebl/
H A Deblcorenote.c93 static const Ebl_Core_Item platform[] = local
100 ITEMS (NT_PLATFORM, platform);
/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/core/platform/chromium/support/
H A DPlatform.cpp32 #include "public/platform/Platform.h"
38 void Platform::initialize(Platform* platform) argument
40 s_platform = platform;
H A DWebPrerenderingSupport.cpp31 #include "public/platform/WebPrerenderingSupport.h"
37 void WebPrerenderingSupport::initialize(WebPrerenderingSupport* platform) argument
39 s_platform = platform;
/external/v8/tools/
H A Dutils.py29 import platform namespace
47 id = platform.system()
55 # On Windows Vista platform.system() can return 'Microsoft' with some
74 id = platform.machine()
91 if '64' in platform.machine():
/external/chromium_org/chrome/test/webdriver/test/
H A Dtest_paths.py6 import platform namespace
94 return bin_dirs.get(sys.platform, [])
H A Dchromedriver_server.py9 import platform namespace
64 if platform.system() == 'Windows':
/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)
H A Ddevice.cpp31 clGetDeviceIDs(cl_platform_id platform, cl_device_type device_type, argument
36 if (platform != NULL)
/external/chromium_org/ui/base/cursor/
H A Dcursor.cc34 void Cursor::SetPlatformCursor(const PlatformCursor& platform) { argument
37 platform_cursor_ = platform;
/external/mesa3d/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)
H A Ddevice.cpp31 clGetDeviceIDs(cl_platform_id platform, cl_device_type device_type, argument
36 if (platform != NULL)
/external/chromium_org/chrome/test/chromedriver/
H A Darchive.py8 import platform namespace
26 """Returns the latest revision (as a string) available for this platform.
71 """Returns the name for this platform on the archive site."""
77 if platform.architecture()[0] == '64bit':
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_all_tests.py10 import platform namespace
140 if util.IsLinux() and platform.architecture()[0] == '64bit':
/external/chromium_org/chrome/test/pyautolib/
H A Dfetch_prebuilt_pyauto.py25 import platform namespace
45 '-p', '--platform', type='string',
48 'Default: current platform (%s)' % pyauto_utils.GetCurrentPlatform())
55 self._url = self._GetLastestDownloadURL(self._options.platform)
70 if not self._options.platform.startswith('linux'):
73 }[self._options.platform]
80 }[self._options.platform]
94 if self._options.platform == 'win':
100 if self._options.platform == 'mac':
112 if os_type == 'Linux' and platform
[all...]
/external/chromium_org/remoting/webapp/
H A Dbuild-webapp.py18 import platform namespace
100 # On Windows Vista platform.system() can return 'Microsoft' with some
102 # should_symlink = platform.system() not in ['Windows', 'Microsoft']
174 if ((platform.system() == 'Linux') and (buildtype == 'Official')):
/external/chromium_org/testing/
H A Dxvfb.py13 import platform namespace
33 xvfb_path = os.path.join(server_dir, 'Xvfb.' + platform.architecture()[0])
98 if sys.platform == 'linux2':
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dsystemhost.py30 import platform namespace
41 self.platform = platforminfo.PlatformInfo(sys, platform, self.executive)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A Druntests.py31 import platform namespace
99 if sys.platform != "cygwin":
H A Druntests_unittest.py29 import platform namespace
44 if sys.platform != "cygwin":
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dversion.c143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local
163 platform=1;
167 date=version=cflags=options=platform=dir=1;
190 if (platform) printf("%s\n",SSLeay_version(SSLEAY_PLATFORM));
/external/chromium_org/tools/grit/grit/node/
H A Dstructure_unittest.py15 import platform namespace
46 'Nosuch,%s,Othernot' % platform.system())
/external/chromium_org/v8/tools/testrunner/local/
H A Dutils.py33 import platform namespace
58 system = platform.system()
66 # On Windows Vista platform.system() can return 'Microsoft' with some
84 machine = platform.machine()
101 if '64' in platform.machine():
/external/openssl/apps/
H A Dversion.c143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local
163 platform=1;
167 date=version=cflags=options=platform=dir=1;
190 if (platform) printf("%s\n",SSLeay_version(SSLEAY_PLATFORM));

Completed in 1779 milliseconds

12345