HomeSort by relevance Sort by last modified time
    Searched full:osname (Results 1 - 25 of 399) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
OS.java 26 String osName = System.getProperty("os.name");
27 macOs = "Mac OS X".startsWith(osName);
28 linux = "Linux".startsWith(osName);
29 windows = "Windows".startsWith(osName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 117 * @param osName The leaf name, without the extension, of an existing icon in the
121 public Image getIcon(String osName) {
122 return getIcon(osName, COLOR_DEFAULT, SHAPE_DEFAULT);
130 * @param osName The leaf name, without the extension, of an existing icon in the
138 public Image getIcon(String osName, int color, int shape) {
139 String key = Character.toString((char) shape) + Integer.toString(color) + osName;
142 ImageDescriptor id = getImageDescriptor(osName, color, shape);
158 * @param osName The leaf name, without the extension, of an existing icon in the
162 public ImageDescriptor getImageDescriptor(String osName) {
163 return getImageDescriptor(osName, COLOR_DEFAULT, SHAPE_DEFAULT)
    [all...]
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /external/skia/gm/
textblobrandomfont.cpp 71 const char* osName = sk_tool_utils::platform_os_name();
73 if (origEmoji && (!strcmp(osName, "Android") || !strcmp(osName, "Ubuntu"))) {
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileSystemUtils.java 70 String osName = System.getProperty("os.name");
71 if (osName == null) {
74 osName = osName.toLowerCase();
76 if (osName.indexOf("windows") != -1) {
78 } else if (osName.indexOf("linux") != -1 ||
79 osName.indexOf("sun os") != -1 ||
80 osName.indexOf("sunos") != -1 ||
81 osName.indexOf("solaris") != -1 ||
82 osName.indexOf("mpe/ix") != -1 |
    [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%) {
  /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"
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
EnvironmentGetter.java 59 String osName = sysProps.get("os.name");
60 propertyMap.put("os.name", osName);
64 if (osName.equals("Linux")) {
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersASTChecker.cpp 133 llvm::raw_svector_ostream OsName(BufName);
134 OsName << " Invalid use of '" << Name << "'" ;
146 BR.EmitBasicReport(AC->getDecl(), Checker, OsName.str(),
  /external/icu/icu4c/source/test/testdata/
ra.txt 17 * @note {0} represents the position of OSNAME and {1} represents the position of job name
  /external/llvm/utils/
test_debuginfo.pl 34 $use_lldb = 1 if ($Config{osname} eq "darwin");
  /external/boringssl/src/util/
generate_build_files.py 77 for ((osname, arch), asm_files) in asm_outputs:
79 (osname, arch), asm_files)
158 for ((osname, arch), asm_files) in asm_outputs:
160 makefile, '%s_%s_sources' % (osname, arch), asm_files)
207 for ((osname, arch), asm_files) in asm_outputs:
209 out, 'crypto_sources_%s_%s' % (osname, arch), asm_files)
430 (osname, arch, perlasm_style, extra_args, asm_ext) = osarch
431 key = (osname, arch)
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
Sync.java 94 String osName = System.getProperty("os.name");
96 if (osName.startsWith("Win")) {

Completed in 1256 milliseconds

1 2 3 4 5 6 7 8 91011>>