HomeSort by relevance Sort by last modified time
    Searched full:platforminfo (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/extensions/browser/
test_runtime_api_delegate.cc 11 using core_api::runtime::PlatformInfo;
42 bool TestRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
44 // support manual PlatformInfo override for tests if necessary.
45 info->os = PlatformInfo::OS_CROS_;
test_runtime_api_delegate.h 27 virtual bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) OVERRIDE;
  /external/chromium_org/extensions/shell/browser/
shell_runtime_api_delegate.cc 14 using extensions::core_api::runtime::PlatformInfo;
47 bool ShellRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
49 info->os = PlatformInfo::OS_CROS_;
51 info->os = PlatformInfo::OS_LINUX_;
shell_runtime_api_delegate.h 27 virtual bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/runtime/
chrome_runtime_api_delegate.cc 34 using extensions::core_api::runtime::PlatformInfo;
183 bool ChromeRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
186 info->os = PlatformInfo::OS_MAC_;
188 info->os = PlatformInfo::OS_WIN_;
190 info->os = PlatformInfo::OS_CROS_;
192 info->os = PlatformInfo::OS_LINUX_;
194 info->os = PlatformInfo::OS_OPENBSD_;
202 info->arch = PlatformInfo::ARCH_ARM;
204 info->arch = PlatformInfo::ARCH_X86_32;
206 info->arch = PlatformInfo::ARCH_X86_64
    [all...]
chrome_runtime_api_delegate.h 52 extensions::core_api::runtime::PlatformInfo* info) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
path_unittest.py 33 from webkitpy.common.system.platforminfo import PlatformInfo
38 def platforminfo(self): member in class:AbspathTest
44 self.assertEqual(path.abspath_to_uri(self.platforminfo(), '/cygdrive/c/foo/bar.html'),
54 self.assertEqual(path.abspath_to_uri(self.platforminfo(), 'c:\\foo\\bar.html'),
65 self.assertEqual(path.abspath_to_uri(self.platforminfo(), '/cygdrive/c/foo/bar + baz%.html'),
systemhost.py 33 from webkitpy.common.system import environment, executive, filesystem, platforminfo, user, workspace namespace
42 self.platform = platforminfo.PlatformInfo(sys, platform, self.executive)
user.py 40 from webkitpy.common.system.platforminfo import PlatformInfo
58 def __init__(self, platforminfo=None):
59 # We cannot get the PlatformInfo object from a SystemHost because
61 self._platforminfo = platforminfo or PlatformInfo(sys, platform, Executive())
platforminfo_unittest.py 35 from webkitpy.common.system.platforminfo import PlatformInfo
71 return PlatformInfo(sys_module or fake_sys(), platform_module or fake_platform(), executive or fake_executive())
75 info = PlatformInfo(sys, platform, Executive())
platforminfo.py 33 class PlatformInfo(object):
  /hardware/intel/common/utils/ituxd/res/xml/
thermal_throttle_config.xml 9 <PlatformInfo>
14 </PlatformInfo>
thermal_sensor_config.xml 8 <PlatformInfo>
14 </PlatformInfo>
  /external/chromium_org/extensions/browser/api/runtime/
runtime_api_delegate.h 17 struct PlatformInfo;
68 virtual bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) = 0;
runtime_api.h 33 struct PlatformInfo;
64 bool GetPlatformInfo(core_api::runtime::PlatformInfo* info);
runtime_api.cc 268 bool RuntimeAPI::GetPlatformInfo(runtime::PlatformInfo* info) {
489 runtime::PlatformInfo info;
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalService.java 83 private static final String PINFO = "PlatformInfo";
99 private ThermalManager.PlatformInfo mPlatformInfo = null;
155 public ThermalManager.PlatformInfo getPlatformInfo() {
295 mPlatformInfo = new ThermalManager.PlatformInfo();
ThermalManager.java 79 public static PlatformInfo sPlatformInfo;
478 public static class PlatformInfo {
488 public PlatformInfo() {}
  /external/chromium_org/extensions/common/api/
runtime.json 45 "id": "PlatformInfo",
311 "name": "platformInfo",
312 "$ref": "PlatformInfo"
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 98 # FIXME: there should be a way to get win32 vs. cygwin from platforminfo.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
run_webkit_tests_unittest.py 182 # A real PlatformInfo object is used here instead of a
    [all...]

Completed in 1049 milliseconds