Searched defs:os (Results 1 - 25 of 625) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dset_sys_path.py37 import os namespace
42 sys.path.insert(0, os.path.join(os.path.split(__file__)[0], '..'))
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dospath.py23 """Contains a substitute for Python 2.6's os.path.relpath()."""
25 import os namespace
28 # This function is a replacement for os.path.relpath(), which is only
31 # http://docs.python.org/library/os.path.html#os.path.relpath
33 # It should behave essentially the same as os.path.relpath(), except for
46 os.path.abspath(). Defaults to os.path.abspath.
47 sep: Path separator. Defaults to os.path.sep
51 os_path_abspath = os
[all...]
H A Dfileutils.py32 import os namespace
33 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
/external/chromium/build/
H A Ddir_exists.py6 import os.path namespace
9 sys.stdout.write(str(os.path.isdir(sys.argv[1])))
H A Dextract_from_cab.py8 import os namespace
27 os.utime(os.path.join(output_dir, archived_file), None)
/external/chromium/testing/gmock/scripts/generator/
H A Dgmock_gen.py21 import os namespace
26 sys.path.append(os.path.dirname(__file__))
/external/clang/bindings/python/tests/cindex/
H A Dtest_index.py2 import os namespace
4 kInputsDir = os.path.join(os.path.dirname(__file__), 'INPUTS')
14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
/external/clang/test/PCH/
H A Dchain-late-anonymous-namespace.cpp9 namespace os {} namespace
26 namespace os {
52 namespace os {
/external/compiler-rt/make/
H A Dfilter-inputs15 import os,sys namespace
19 base = os.path.basename(file)
/external/llvm/utils/llvm-build/llvmbuild/
H A Dconfigutil.py6 import os namespace
39 output_parent_path = os.path.dirname(os.path.abspath(output_path))
40 if not os.path.exists(output_parent_path):
41 os.makedirs(output_parent_path)
44 if os.path.exists(output_path):
/external/sonivox/jet_tools/JetCreator/
H A DJetSystemInfo.py6 Displays the system info regarding os version, wxPython version, and Python version
24 import os namespace
38 for dir in string.split(os.environ['PYTHONPATH'], os.pathsep):
/external/stressapptest/src/
H A Dos_factory.cc26 #include "os.h"
31 OsLayer *os = 0; local
32 os = new OsLayer();
35 if (!os) {
39 return os;
/external/webkit/Tools/BuildSlaveSupport/chromium/
H A Dremove-crash-logs30 import os namespace
35 os.system('rm -rf /tmp/.org.chromium.*')
38 os.system('rm -rf %s' % os.path.join(Foundation.NSTemporaryDirectory(),
41 os.system('for /d %d in (%TEMP%\scoped_dir*) do rd /s /q "%d"')
/external/webkit/Tools/BuildSlaveSupport/win/
H A Dkill-old-processes26 import os, sys namespace
55 os.system("taskkill /t /f /im " + task)
/external/webkit/Tools/QueueStatusServer/
H A D__init__.py12 import os namespace
26 sys.path.append(os.path.dirname(__file__))
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Deditchangelog.py29 import os namespace
36 os.chdir(self._tool.scm().checkout_root)
/external/chromium/testing/gmock/scripts/
H A Dupload_gmock.py42 import os namespace
52 my_dir = os.path.dirname(os.path.abspath(__file__))
53 upload_py_path = os.path.join(my_dir, 'upload.py')
74 os.execv(upload_py_path, upload_py_argv)
/external/chromium/testing/gtest/scripts/
H A Dupload_gtest.py42 import os namespace
52 my_dir = os.path.dirname(os.path.abspath(__file__))
53 upload_py_path = os.path.join(my_dir, 'upload.py')
74 os.execv(upload_py_path, upload_py_argv)
/external/eigen/scripts/
H A Drelicense.py41 import os namespace
52 for root, sub_folders, files in os.walk(rootdir):
57 filename = os.path.join(root, basename)
/external/llvm/utils/Target/ARM/
H A Danalyze-match-table.py48 import os namespace
51 file = os.path.join(llvm_obj_root,
/external/stlport/test/unit/
H A Dostmit_test.cpp38 ostringstream os; local
40 ostream_iterator<char> iter(os);
42 CPPUNIT_ASSERT(os.good());
43 os << ' ';
44 CPPUNIT_ASSERT(os.good());
46 ostream_iterator<int> iter2(os);
48 CPPUNIT_ASSERT(os.good());
49 CPPUNIT_ASSERT(os.str() == "hello 1524");
/external/valgrind/main/memcheck/tests/
H A Dsigprocmask.c19 int x[6], *s, *os, i; local
29 os = &x[4];
35 syscall(__NR_sigprocmask, SIG_SETMASK, os, NULL);
43 syscall(__NR_sigprocmask, SIG_BLOCK, s, os);
51 syscall(__NR_sigprocmask, SIG_BLOCK, s, os);
/external/webkit/Source/WebCore/WebCore.gyp/scripts/
H A Daction_maketokenizer.py45 import os namespace
H A Daction_useragentstylesheets.py48 import os namespace
/external/webkit/Source/WebKit/chromium/scripts/
H A Dgenerate_devtools_html.py32 import os.path namespace
37 (dir_name, file_name) = os.path.split(resource_path)
82 output_dir_name = os.path.dirname(devtools_html_name)
83 os.utime(output_dir_name, None)

Completed in 654 milliseconds

1234567891011>>