/external/chromium_org/third_party/WebKit/Source/core/frame/ |
NavigatorID.cpp | 76 struct utsname osname; 77 DEFINE_STATIC_LOCAL(String, platformName, (uname(&osname) >= 0 ? String(osname.sysname) + String(" ") + String(osname.machine) : emptyString()));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
util.py | 65 (osname, host, release, version, machine) = os.uname() 69 osname = string.lower(osname) 70 osname = string.replace(osname, '/', '') 74 if osname[:5] == "linux": 78 return "%s-%s" % (osname, machine) 79 elif osname[:5] == "sunos": 81 osname = "solaris" 88 # fall through to standard osname-release-machine representatio [all...] |
ccompiler.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
util.py | 65 (osname, host, release, version, machine) = os.uname() 69 osname = string.lower(osname) 70 osname = string.replace(osname, '/', '') 74 if osname[:5] == "linux": 78 return "%s-%s" % (osname, machine) 79 elif osname[:5] == "sunos": 81 osname = "solaris" 88 # fall through to standard osname-release-machine representatio [all...] |
ccompiler.py | [all...] |
/ndk/sources/host-tools/make-3.81/tests/ |
run_make_tests.pl | 241 if ($osname =~ /Windows/i || $osname =~ /MINGW32/i || $osname =~ /CYGWIN_NT/i) { 244 # Bleah, the osname is so variable on DOS. This kind of bites. 249 elsif ($osname =~ /^([^ ]*|[^ ]* [^ ]*)D(OS|os|ev) /) { 253 elsif ($osname =~ m%OS/2%) {
|
test_driver.pl | 116 &get_osname; # sets $osname, $vos, $pathsep, and $short_filenames 122 print "OS name = `$osname'\n" if $debug; 230 $osname = defined($^O) ? $^O : ''; 253 $osname = "vos"; 263 eval "chop (\$osname = `sh -c 'uname -nmsr 2>&1'`)"; 264 if ($osname =~ /not found/i) 266 $osname = "(something unixy with no uname)"; 270 eval "chop (\$osname = `sh -c 'uname -a 2>&1'`)"; 273 $osname = "(something unixy)"; 389 $info = "Running tests for $testee on $osname\n"; # $testee is suite-define [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sysconfig.py | 584 osname, host, release, version, machine = os.uname() 588 osname = osname.lower().replace('/', '') 592 if osname[:5] == "linux": 596 return "%s-%s" % (osname, machine) 597 elif osname[:5] == "sunos": 599 osname = "solaris" 606 # fall through to standard osname-release-machine representation 607 elif osname[:4] == "irix": # could be "irix64"! 608 return "%s-%s" % (osname, release [all...] |
_osx_support.py | 423 def get_platform_osx(_config_vars, osname, release, machine): 439 osname = "macosx" 488 return (osname, release, machine)
|
rexec.py | 250 osname = os.name 251 src = __import__(osname)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
sysconfig.py | 584 osname, host, release, version, machine = os.uname() 588 osname = osname.lower().replace('/', '') 592 if osname[:5] == "linux": 596 return "%s-%s" % (osname, machine) 597 elif osname[:5] == "sunos": 599 osname = "solaris" 606 # fall through to standard osname-release-machine representation 607 elif osname[:4] == "irix": # could be "irix64"! 608 return "%s-%s" % (osname, release [all...] |
_osx_support.py | 423 def get_platform_osx(_config_vars, osname, release, machine): 439 osname = "macosx" 488 return (osname, release, machine)
|
rexec.py | 250 osname = os.name 251 src = __import__(osname)
|
/external/chromium_org/native_client_sdk/src/tools/ |
sel_ldr.py | 64 osname = getos.GetPlatform() 79 if osname == 'win': 86 if osname == 'linux': 109 toolchain = '%s_x86_glibc' % osname
|
ncval.py | 57 osname = getos.GetPlatform() 64 if osname == 'win':
|
create_nmf.py | 598 osname = getos.GetPlatform() 599 toolchain = os.path.join(sdk_root, 'toolchain', '%s_x86_glibc' % osname) 601 if osname == 'win': 625 osname = getos.GetPlatform() 628 'toolchain/%s_x86_glibc/x86_64-nacl/lib' % osname, 629 'toolchain/%s_x86_glibc/x86_64-nacl/lib32' % osname, 631 'toolchain/%s_x86_glibc/x86_64-nacl/usr/lib' % osname, 632 'toolchain/%s_x86_glibc/i686-nacl/usr/lib' % osname,
|
/prebuilts/devtools/tools/ |
android | 96 osname=`uname -s | tr A-Z a-z` 97 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
|
ddms | 90 osname=`uname -s | tr A-Z a-z` 91 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
|
hierarchyviewer | 91 osname=`uname -s | tr A-Z a-z` 92 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
|
monkeyrunner | 82 osname=`uname -s | tr A-Z a-z` 83 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
|
traceview | 88 osname=`uname -s | tr A-Z a-z` 89 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
|
uiautomatorviewer | 88 osname=`uname -s | tr A-Z a-z` 89 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
pimp.py | 67 osname, release, machine = longplatform.split('-') 70 if osname == 'darwin': 72 osname = 'darwin_apple' 74 osname = 'darwin_macpython' 80 url = DEFAULT_PIMPDATABASE_FMT % (PIMP_VERSION, status, pyvers, osname, rel, machine) 91 url = DEFAULT_PIMPDATABASE_FMT % (PIMP_VERSION, status, pyvers, osname, release, machine) [all...] |
/prebuilts/devtools/tools/lib/ |
commons-compress-1.0.jar | |
/prebuilts/tools/common/commons-compress/ |
commons-compress-1.0.jar | |