Searched refs:os (Results 26 - 50 of 1953) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/third_party/Paste/tests/
H A D__init__.py2 import os namespace
4 sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
/external/libcxx/test/std/numerics/complex.number/complex.ops/
H A Dstream_output.pass.cpp23 std::ostringstream os; local
24 os << c;
25 assert(os.str() == "(1,2)");
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dctor_result_type.pass.cpp68 std::ostringstream os; local
69 os << e1;
70 assert(os.str() == a);
/external/libcxx/test/std/utilities/template.bitset/bitset.operators/
H A Dstream_out.pass.cpp22 std::ostringstream os; local
24 os << b;
25 assert(os.str() == "01011010");
/external/nanopb-c/generator/google/protobuf/internal/
H A Dapi_implementation.py38 import os namespace
42 _implementation_type = os.getenv('PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION',
62 _implementation_version_str = os.getenv(
/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/v8/test/mjsunit/
H A Dd8-os.js29 // only does non-trivial work on Unix since os.system() is not currently
33 var TEST_DIR = "/tmp/d8-os-test-directory-" + ((Math.random() * (1<<30)) | 0);
56 if (this.os && os.system) {
58 os.chdir("/tmp");
61 os.system("ls", [TEST_DIR]);
62 os.system("rm", ["-r", TEST_DIR]);
65 os.mkdirp(TEST_DIR);
68 os.system('ls', [TEST_DIR]);
70 os
[all...]
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/
H A Dflush.pass.cpp16 // basic_ostream<charT,traits>& flush(basic_ostream<charT,traits>& os);
46 std::ostream os(&sb);
47 flush(os);
49 assert(os.good());
53 std::wostream os(&sb);
54 flush(os);
56 assert(os.good());
/external/libcxx/test/std/input.output/iostream.format/std.manip/
H A Dsetfill.pass.cpp28 std::ostream os(&sb);
29 os << std::setfill('*');
30 assert(os.fill() == '*');
34 std::wostream os(&sb);
35 os << std::setfill(L'*');
36 assert(os.fill() == L'*');
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dctor_result_type.pass.cpp29 std::ostringstream os; local
30 os << e1;
31 assert(os.str() == a);
42 std::ostringstream os; local
43 os << e1;
44 assert(os.str() == a);
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dctor_result_type.pass.cpp29 std::ostringstream os; local
30 os << e1;
31 assert(os.str() == a);
42 std::ostringstream os; local
43 os << e1;
44 assert(os.str() == a);
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
H A Dctor_result_type.pass.cpp123 std::ostringstream os; local
124 os << e1;
125 assert(os.str() == a);
236 std::ostringstream os; local
237 os << e1;
238 assert(os.str() == a);
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
H A Dctor_result_type.pass.cpp29 std::ostringstream os; local
30 os << e1;
31 assert(os.str() == a);
42 std::ostringstream os; local
43 os << e1;
44 assert(os.str() == a);
/external/lldb/test/unittest2/
H A Dcompatibility.py1 import os namespace
15 def _relpath_nt(path, start=os.path.curdir):
20 start_list = os.path.abspath(start).split(os.path.sep)
21 path_list = os.path.abspath(path).split(os.path.sep)
23 unc_path, rest = os.path.splitunc(path)
24 unc_start, rest = os.path.splitunc(start)
38 rel_list = [os.path.pardir] * (len(start_list)-i) + path_list[i:]
40 return os
[all...]
/external/chromium-trace/trace-viewer/perf_insights/bin/
H A Dmap_traces6 import os namespace
10 top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
H A Dwr6 import os namespace
10 top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
/external/chromium-trace/trace-viewer/tracing/build/
H A Dfixjsstyle6 import os namespace
10 top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
H A Dgenerate_about_tracing_contents6 import os namespace
10 top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
H A Dupdate_gypi6 import os namespace
10 top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
H A Dfixjsstyle.py5 import os namespace
8 tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
19 sys.path.append(os.path.join(
21 sys.path.append(os.path.join(
26 os.chdir(project.tracing_src_path)
/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/llvm/utils/llvm-lit/
H A Dllvm-lit.in3 import os namespace
11 sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
17 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg'),
18 'llvm_unit_site_config' : os.path.join(llvm_obj_root, 'test', 'Unit',
22 clang_obj_root = os.path.join(llvm_obj_root, 'tools', 'clang')
24 if os.path.exists(clang_obj_root):
26 os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
27 clang_tools_extra_obj_root = os.path.join(clang_obj_root, 'tools', 'extra')
28 if os.path.exists(clang_tools_extra_obj_root):
30 os
[all...]
/external/skia/platform_tools/android/tests/
H A Dutils.py12 import os namespace
14 EXPECTATIONS_DIR = os.path.join(os.path.dirname(__file__), 'expectations')
35 full_expectations_path = os.path.join(EXPECTATIONS_DIR, expectation_name)
/external/vixl/
H A D.ycm_extra_conf.py5 import os namespace
8 repo_root = os.path.dirname(os.path.abspath(__file__))
13 return os.path.join(repo_root, path)
/external/mesa3d/scons/
H A Dfixes.py3 # Monkey patch os.spawnve on windows to become thread safe
5 import os namespace
7 from os import spawnve as old_spawnve
14 if mode == os.P_WAIT:
15 ret = old_spawnve(os.P_NOWAIT, file, args, env)
20 if mode == os.P_WAIT:
21 pid, status = os.waitpid(ret, 0)
25 os.spawnve = new_spawnve

Completed in 651 milliseconds

1234567891011>>