HomeSort by relevance Sort by last modified time
    Searched refs:platform (Results 551 - 575 of 2067) sorted by null

<<21222324252627282930>>

  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
mac_platform_backend.py 7 import platform namespace
14 from telemetry.internal.platform import posix_platform_backend
15 from telemetry.internal.platform.power_monitor import powermetrics_power_monitor
34 return sys.platform == 'darwin'
129 return platform.machine()
platform_backend.py 9 from telemetry.internal.platform import network_controller_backend
10 from telemetry.internal.platform import tracing_controller_backend
20 whether this platform backend supports the device.
21 If device is None, this constructor returns the host platform backend
25 device: an instance of telemetry.core.platform.device.Device.
43 """ Returns whether this platform backend is the platform backend to be used
49 """ Returns whether this platform backend supports intialization from the
57 def SetPlatform(self, platform):
59 self._platform = platform
62 def platform(self): member in class:PlatformBackend
    [all...]
  /external/skia/bench/
tile_analyze.py 21 # The default platform to analyze. Used when OPTION_PLATFORM flag is not set.
39 For the given platform and revision number, find corresponding viewport and
50 OPTION_PLATFORM = '--platform'
86 def GetFiles(rev, bench_dir, platform):
90 Google Storage. Filters files by revision (rev) and platform, and ignores
110 obj.name.find(platform) < 0 or
183 def OutputTileAnalysis(rev, representation_alg, bench_dir, platform):
185 platform.
196 '<h3>PLATFORM: %s REVISION: %s</h3><br>' % (platform, rev)
    [all...]
  /external/webrtc/webrtc/test/testsupport/
fileutils.cc 218 std::string platform = "win";
220 platform = "linux";
223 platform = "mac";
234 std::string resource_file = resources_path + name + "_" + platform + "_" +
240 resource_file = resources_path + name + "_" + platform + "." + extension;
244 // Try without platform.
250 // Fall back on name without architecture or platform.
  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixfile.py 181 if sys.platform in ('netbsd1',
188 elif sys.platform in ('aix3', 'aix4'):
198 if sys.platform in ('netbsd1',
204 elif sys.platform in ('aix3', 'aix4'):
207 elif sys.platform == "linux2":
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixfile.py 181 if sys.platform in ('netbsd1',
188 elif sys.platform in ('aix3', 'aix4'):
198 if sys.platform in ('netbsd1',
204 elif sys.platform in ('aix3', 'aix4'):
207 elif sys.platform == "linux2":
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 181 if sys.platform in ('netbsd1',
188 elif sys.platform in ('aix3', 'aix4'):
198 if sys.platform in ('netbsd1',
204 elif sys.platform in ('aix3', 'aix4'):
207 elif sys.platform == "linux2":
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 181 if sys.platform in ('netbsd1',
188 elif sys.platform in ('aix3', 'aix4'):
198 if sys.platform in ('netbsd1',
204 elif sys.platform in ('aix3', 'aix4'):
207 elif sys.platform == "linux2":
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/
JvmPlatform.java 17 package com.google.caliper.platform.jvm;
22 import com.google.caliper.platform.Platform;
23 import com.google.caliper.platform.VirtualMachineException;
40 * An abstraction of a standard Java Virtual Machine platform.
42 public final class JvmPlatform extends Platform {
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_time.py 9 import platform namespace
19 # The current detected platform
21 # Mapping of supported platforms and what is returned by sys.platform.
31 # Mapping of what to pass get_clocktime based on platform.
41 """ Get a monotonic clock for the Mac platform.
44 plat: Platform that is being run on. Unused in GetMacNowFunction. Passed
47 Function pointer to monotonic clock for mac platform.
74 raise LookupError('Platform not in clock dicitonary')
80 plat: Platform that is being run on.
82 Function pointer to monotonic clock for linux platform
    [all...]
  /external/chromium-trace/catapult/devil/devil/
devil_env.py 8 import platform namespace
41 'platform': 'linux2_x86_64',
45 'platform': 'linux2_x86_64',
59 c['platform']: {
142 return '%s_%s' % (sys.platform, platform.machine())
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
tcpdump_profiler.py 12 from telemetry.internal.platform import profiler
13 from telemetry.internal.platform.profiler import android_prebuilt_profiler_helper
105 """A Factory to instantiate the platform-specific profiler."""
125 if sys.platform.startswith('linux'):
vtune_profiler.py 12 from telemetry.internal.platform import profiler
13 from telemetry.internal.platform.profiler import android_profiling_helper
119 if sys.platform != 'linux2':
perf_profiler.py 16 from telemetry.core import platform namespace
17 from telemetry.internal.platform import profiler
18 from telemetry.internal.platform.profiler import android_profiling_helper
61 host = platform.GetHostPlatform()
210 if sys.platform != 'linux2':
212 if platform.GetHostPlatform().GetOSName() == 'chromeos':
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
page_test_test_case.py 84 ActualStartTracing = browser.platform.tracing_controller.StartTracing
91 ActualStopTracing = browser.platform.tracing_controller.StopTracing
96 browser.platform.tracing_controller.StopTracing = FakeStopTracing
  /external/google-tv-pairing-protocol/cpp/
main.scons 18 import platform namespace
46 # Detect 64-bit build platform
47 DeclareBit('arch_64', 'Target platform is 64-bit')
49 if platform.architecture()[0] == '64bit':
88 # Add 64-bit linux environment if supported by build platform
194 if sys.platform == 'win32':
  /external/libxml2/python/
setup.py 20 WITHDLLS = 1 and sys.platform.startswith('win')
47 if sys.platform.startswith('win'):
176 if not sys.platform.startswith('win'):
setup.py.in 20 WITHDLLS = 1 and sys.platform.startswith('win')
47 if sys.platform.startswith('win'):
176 if not sys.platform.startswith('win'):
  /external/skia/experimental/SkV8Example/
SkV8Example.cpp 172 v8::Platform* platform = v8::platform::CreateDefaultPlatform(); local
173 v8::V8::InitializePlatform(platform);
  /external/webrtc/
sync_chromium.py 71 target_os_list = [DEPS_OS_CHOICES.get(sys.platform, 'unix')]
121 gclient_cmd = 'gclient.bat' if sys.platform.startswith('win') else 'gclient'
130 if sys.platform.startswith('win'):
  /external/chromium-trace/catapult/third_party/coverage/
igor.py 17 import platform namespace
127 impl = platform.python_implementation().lower()
131 suffix = "%s%s_%s_%s" % (impl, version, tracer, platform.platform())
322 impl = platform.python_implementation()
326 version = platform.python_version()
  /external/deqp/android/scripts/
common.py 50 if sys.platform.startswith('linux'):
53 return sys.platform
56 platform = getPlatform()
57 if platform in variants:
58 return variants[platform]
62 raise Exception("No configuration for '%s'" % platform)
288 noneSafePathJoin(ANDROID_SDK_PATH, "platform-tools", "adb"),
289 noneSafePathJoin(ANDROID_SDK_PATH, "platform-tools", "adb.exe"),
  /prebuilts/misc/windows/sdl2/test/
testautomation_platform.c 2 * Original code: automated SDL platform test written by Edgar Simo "bobbens"
52 * @brief Tests platform endianness and SDL_SwapXY functions.
116 char *platform; local
121 platform = (char *)SDL_GetPlatform();
123 SDLTest_AssertCheck(platform != NULL, "SDL_GetPlatform() != NULL");
124 if (platform != NULL) {
125 len = SDL_strlen(platform);
127 "SDL_GetPlatform(): expected non-empty platform, was platform: '%s', len: %i",
128 platform,
    [all...]
  /dalvik/dx/etc/
dexmerger 42 libdir=`dirname "$progdir"`/platform-tools/lib
  /device/moto/shamu/
BoardConfig.mk 32 BOARD_KERNEL_CMDLINE := console=ttyHSL0,115200,n8 androidboot.console=ttyHSL0 androidboot.hardware=shamu msm_rtb.filter=0x37 ehci-hcd.park=3 utags.blkdev=/dev/block/platform/msm_sdcc.1/by-name/utags utags.backup=/dev/block/platform/msm_sdcc.1/by-name/utagsBackup coherent_pool=8M vmalloc=300M

Completed in 2082 milliseconds

<<21222324252627282930>>