Searched defs:os (Results 126 - 150 of 3570) sorted by relevance

1234567891011>>

/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/
H A Dio.pass.cpp17 // operator<<(basic_ostream<CharT, Traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/
H A Dio.pass.cpp17 // operator<<(basic_ostream<CharT, Traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/
H A Dio.pass.cpp17 // operator<<(basic_ostream<CharT, Traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/
H A Dio.pass.cpp17 // operator<<(basic_ostream<CharT, Traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/
H A Dio.pass.cpp17 // operator<<(basic_ostream<CharT, Traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/
H A Dio.pass.cpp17 // operator<<(basic_ostream<CharT, Traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/
H A Dio.pass.cpp17 // operator<<(basic_ostream<charT, traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/
H A Dio.pass.cpp17 // operator<<(basic_ostream<charT, traits>& os,
34 std::ostringstream os; local
35 os << d1;
36 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/
H A Dio.pass.cpp18 // operator<<(basic_ostream<charT, traits>& os,
37 std::ostringstream os; local
38 os << e1;
39 std::istringstream is(os.str());
/external/libcxx/utils/libcxx/test/
H A Dtracing.py10 import os namespace
/external/libmojo/mojo/public/tools/bindings/
H A Dmojom_list_outputs.py7 import os.path namespace
22 full = os.path.join("<(SHARED_INTERMEDIATE_DIR)", args.basedir, mojom)
23 base, ext = os.path.splitext(full)
/external/libmojo/mojo/public/tools/
H A Dprepend.py13 import os namespace
/external/libmojo/third_party/catapult/devil/devil/android/
H A Ddevice_list.py9 import os namespace
20 if not os.path.isfile(file_name):
42 path = os.path.dirname(file_name)
47 if not os.path.exists(path):
48 os.makedirs(path)
/external/libmojo/third_party/catapult/devil/devil/utils/
H A D__init__.py5 import os namespace
9 return os.path.abspath(os.path.join(*path_parts))
14 if os.path.isdir(path) and path not in sys.path:
20 _CATAPULT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)),
21 os.path.pardir, os.path.pardir, os
[all...]
/external/llvm/utils/Target/ARM/
H A Danalyze-match-table.py48 import os namespace
51 file = os.path.join(llvm_obj_root,
/external/ltp/testcases/network/nfsv4/acl/
H A Dcleangroups.py4 import os namespace
H A Dcleanusers.py4 import os namespace
/external/python/cpython2/Demo/curses/
H A Drepeat.py23 import os namespace
33 p = os.popen(cmd, "r")
49 p = os.popen(cmd, "r")
/external/python/cpython2/Demo/rpc/
H A DT.py4 import sys, os, time namespace
8 u, s, cu, cs = os.times()
13 u, s, cu, cs = os.times()
/external/python/cpython2/Demo/scripts/
H A Dfrom.py7 import sys, os namespace
12 mailbox = os.environ['MAIL']
/external/python/cpython2/Doc/includes/sqlite3/
H A Dcreatedb.py5 import os namespace
9 if os.path.exists(DB_FILE):
10 os.remove(DB_FILE)
/external/python/cpython2/Lib/plat-os2emx/
H A D_emx_link.py7 the os module in place of the unimplemented (on OS/2) Posix link()
8 function (os.link()).
27 - returns None, same as os.link() which is implemented in posixmodule.c;
36 import os namespace
48 s = os.open(source, os.O_RDONLY | os.O_BINARY)
49 if os.isatty(s):
51 data = os.read(s, 1024)
54 t = os
[all...]
/external/python/cpython2/Lib/
H A Duser.py27 import os namespace
29 home = os.curdir # Default
30 if 'HOME' in os.environ:
31 home = os.environ['HOME']
32 elif os.name == 'posix':
33 home = os.path.expanduser("~/")
34 elif os.name == 'nt': # Contributed by Jeff Bauer
35 if 'HOMEPATH' in os.environ:
36 if 'HOMEDRIVE' in os.environ:
37 home = os
[all...]
/external/python/cpython2/Mac/IDLE/
H A Didlemain.py4 import sys, os namespace
8 os.chdir(os.path.expanduser('~/Documents'))
34 # 3. IDLE script alters sys.argv and uses os.execve to replace itself with
50 pyex = os.environ['PYTHONEXECUTABLE']
51 sys.executable = os.path.join(sys.prefix, 'bin', 'python%d.%d'%(sys.version_info[:2]))
61 del os.environ['PYTHONEXECUTABLE']
/external/python/cpython2/Tools/scripts/
H A Duntabify.py5 import os namespace
39 os.unlink(backup)
40 except os.error:
43 os.rename(filename, backup)
44 except os.error:

Completed in 448 milliseconds

1234567891011>>