/frameworks/ex/carousel/test/ |
Android.mk | 27 LOCAL_CERTIFICATE := platform
|
/hardware/qcom/audio/hal/ |
Android.mk | 11 # B-family platform uses msm8974 code base 17 $(AUDIO_PLATFORM)/platform.c
|
/packages/experimental/NotificationShowcase/ |
Android.mk | 30 LOCAL_CERTIFICATE := platform
|
/external/chromium_org/chrome/test/pyautolib/ |
fetch_prebuilt_pyauto.py | 25 import platform namespace 45 '-p', '--platform', type='string', 47 help='Platform. Valid options: win, mac, linux32, linux64. ' 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' [all...] |
/external/chromium_org/native_client_sdk/src/tools/tests/ |
getos_test.py | 61 """returns a valid platform.""" 62 platform = getos.GetPlatform() 63 self.assertIn(platform, ('mac', 'linux', 'win')) 94 platform = getos.GetPlatform() 97 if platform == 'linux': 99 helper = getos.GetHelperPath(platform) 102 helper = getos.GetHelperPath(platform) 107 platform = getos.GetPlatform() 109 irt = getos.GetIrtBinPath(platform) 114 platform = getos.GetPlatform( [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
systemhost_mock.py | 42 self.platform = MockPlatformInfo() 44 self.platform.os_name = os_name 46 self.platform.os_version = os_version
|
path.py | 29 """generic routines to convert platform-specific paths to URIs.""" 38 def abspath_to_uri(platform, path): 39 """Converts a platform-specific absolute path to a file: URL.""" 40 return "file:" + _escape(_convert_path(platform, path)) 119 def _convert_path(platform, path): 121 if platform.is_cygwin(): 123 if platform.is_win():
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
common_test.py | 49 self.original_platform = sys.platform 52 sys.platform = self.original_platform 55 sys.platform = argument
|
/development/ndk/tools/ |
headers-diff-bionic-vs-ndk.py | 22 """Init platform roots and structures before collecting""" 76 def scan_platform_includes(self, platform): 77 """Scan all platform includes of one layer""" 78 platform_root = os.path.join(self.root, platform) 86 def append_sysincludes(self, arch, root, headers, platform): 87 """Merge new platform includes layer with current sysincludes""" 94 if platform != last_platform: 95 self.sysincludes[arch][root][include].insert(0, platform) 97 self.sysincludes[arch][root][include] = [platform] 99 def update_to_platform(self, platform) [all...] |
/external/chromium_org/build/util/lib/common/ |
util.py | 19 """Return a string to be used in paths for the platform.""" 26 raise NotImplementedError('Unknown platform "%s".' % sys.platform) 30 return sys.platform == 'cygwin' or sys.platform.startswith('win') 34 return sys.platform.startswith('linux') 38 return sys.platform.startswith('darwin')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
lint_test_expectations.py | 57 if options.platform == 'chromium': 58 options.platform = None 60 ports_to_lint = [host.port_factory.get(name) for name in host.port_factory.all_port_names(options.platform)] 97 if options.platform and 'test' in options.platform: 99 # to run tests against the test platform interactively, which is useful for
|
lint_test_expectations_unittest.py | 78 def all_port_names(self, platform=None): # pylint: disable=W0613,E0202 91 options = optparse.Values({'platform': None}) 98 options = optparse.Values({'platform': 'test-mac-leopard'}) 103 host.port_factory.all_port_names = lambda platform=None: [platform] 111 options = optparse.Values({'platform': 'test', 'debug_rwt_logging': False}) 115 port = host.port_factory.get(options.platform, options=options) 118 host.port_factory.get = lambda platform, options=None: port 119 host.port_factory.all_port_names = lambda platform=None: [port.name()] 153 res = lint_test_expectations.main(['--platform', 'test'], stdout, stderr [all...] |
/external/chromium_org/tools/ |
bisect-builds.py | 63 def __init__(self, platform, good_revision, bad_revision, is_official): 66 self.platform = platform # What's passed in to the '-a/--archive' option. 78 if self.platform in ('linux', 'linux64', 'linux-arm'): 80 elif self.platform == 'mac': 83 elif self.platform == 'win': 88 raise Exception('Invalid platform: %s' % self.platform) 91 if self.platform == 'linux': 95 elif self.platform == 'linux64' [all...] |
/external/llvm/lib/Support/ |
Atomic.cpp | 40 # error No memory fence implementation for your platform! 61 # error No compare-and-swap implementation for your platform! 76 # error No atomic increment implementation for your platform! 91 # error No atomic decrement implementation for your platform! 106 # error No atomic add implementation for your platform!
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
builders.js | 37 function buildBotURL(platform) 39 return config.kPlatforms[platform].buildConsoleURL; 42 function urlForBuildInfo(platform, builderName, buildNumber) 44 return buildBotURL(platform) + '/json/builders/' + encodeURIComponent(builderName) + '/builds/' + encodeURIComponent(buildNumber); 88 function fetchMostRecentBuildInfoByBuilder(platform, callback) 90 net.get(buildBotURL(platform) + '/json/builders', function(builderStatus) { 107 g_buildInfoCache.get(platform + '\n' + builderName + '\n' + buildNumber, function(buildInfo) {
|
results.js | 85 function layoutTestResultsURL(platform) 87 return config.kPlatforms[platform].layoutTestResultsURL; 188 function resultsDirectoryURL(platform, builderName) 192 return resultsDirectoryListingURL(platform, builderName) + 'results/layout-test-results/'; 195 function resultsDirectoryListingURL(platform, builderName) 197 return layoutTestResultsURL(platform) + '/' + results.directoryForBuilder(builderName) + '/'; 200 function resultsDirectoryURLForBuildNumber(platform, builderName, buildNumber) 202 return resultsDirectoryListingURL(platform, builderName) + buildNumber + '/'; 205 function resultsSummaryURL(platform, builderName) 207 return resultsDirectoryURL(platform, builderName) + kResultsName [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
queries_unittest.py | 42 def run_test(self, tests, expected_stdout, platform='test-win-xp', **args): 43 options = MockOptions(all=False, csv=False, full=False, platform=platform, 73 platform='test-win-*') 103 'LayoutTests/platform/test/TestExpectations\n' 104 'LayoutTests/platform/test-win-xp/TestExpectations\n'), 132 command.execute(MockOptions(all=False, include_virtual_tests=False, csv=False, platform=None), ['passes/text.html'], self.tool) 143 command.execute(MockOptions(all=False, include_virtual_tests=False, csv=False, platform='test-win-*'), ['passes/text.html'], self.tool) 158 command.execute(MockOptions(all=False, platform='*xp', csv=True, include_virtual_tests=False), ['passes/text.html'], self.tool)
|
/external/chromium_org/tools/grit/grit/format/policy_templates/ |
policy_template_generator.py | 12 '''Generates template text for a particular platform. 67 'platform': 'win', 72 'platform': 'win', 81 # TODO(joaodasilva): enable parsing 'android' as a platform and including 82 # that platform in the generated documentation. Just skip it for now to 88 product, platform = product_platform_part.split('.') 89 if platform == '*': 94 platforms = [platform] 98 platform = { 102 platforms = [platform] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fcntl.py | 21 if sys.platform.startswith('atheos'): 31 if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd', 'bsdos')) 32 or sys.platform == 'darwin'): 41 elif sys.platform in ['aix3', 'aix4', 'hp-uxB', 'unixware7']: 43 elif sys.platform in ['os2emx']: 71 if sys.platform not in ['os2emx']: 81 if sys.platform not in ['os2emx']:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fcntl.py | 21 if sys.platform.startswith('atheos'): 31 if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd', 'bsdos')) 32 or sys.platform == 'darwin'): 41 elif sys.platform in ['aix3', 'aix4', 'hp-uxB', 'unixware7']: 43 elif sys.platform in ['os2emx']: 71 if sys.platform not in ['os2emx']: 81 if sys.platform not in ['os2emx']:
|
/hardware/qcom/audio/hal/msm8960/ |
platform.c | 27 #include "platform.h" 250 char platform[PROPERTY_VALUE_MAX]; local 324 /* If platform is Fusion3, load CSD Client specific symbols 328 property_get("ro.board.platform", platform, ""); 330 if (!strcmp("msm8960", platform) && !strcmp("mdm", baseband)) { 365 void platform_deinit(void *platform) 367 free(platform); 400 int platform_send_audio_calibration(void *platform, snd_device_t snd_device) 402 struct platform_data *my_data = (struct platform_data *)platform; [all...] |
/build/core/ |
pdk_config.mk | 1 # This file defines the rule to fuse the platform.zip into the current PDK build. 10 # 2) the platform.zip exists in the default location 22 vendor/pdk/$(TARGET_DEVICE)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip \ 23 vendor/pdk/$(TARGET_DEVICE)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip) 40 ifneq (,$(filter platform-java, $(MAKECMDGOALS))$(PDK_FUSION_PLATFORM_ZIP)) 41 # additional items to add to platform.zip for platform-java build 42 # For these dirs, add classes.jar and javalib.jar from the dir to platform.zi [all...] |
/external/chromium_org/content/renderer/ |
renderer_main.cc | 142 RendererMainPlatformDelegate platform(parameters); 170 platform.PlatformInitialize(); 173 platform.InitSandboxTests(no_sandbox); 215 run_loop = platform.EnableSandbox(); 232 platform.RunSandboxTests(no_sandbox); 246 platform.PlatformUninitialize();
|
/external/chromium_org/v8/tools/ |
nacl-run.py | 97 if sys.platform.startswith("linux"): 98 platform = "linux" 99 elif sys.platform == "darwin": 100 platform = "mac" 106 toolchain = platform + "_x86_glibc" 111 toolchain = platform + "_x86_glibc"
|
/external/skia/bench/ |
gen_bench_ranges.py | 118 platform = obj.name.split('/')[1] 119 if not platform.startswith(BENCH_BUILDER_PREFIX): 120 platform = obj.name.split('/')[2] 121 if not platform.startswith(BENCH_BUILDER_PREFIX): 122 continue # Ignores non-platform object 123 if platform not in PLATFORMS: 141 platform, representation_alg)
|