Searched refs:os (Results 201 - 225 of 1953) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
H A Dd8_runner.py7 import os namespace
16 _V8_DIR = os.path.abspath(
17 os.path.join(os.path.dirname(__file__), os.path.pardir, 'third_party',
22 _JS_PARSER_DIR = os.path.abspath(
23 os.path.join(os.path.dirname(__file__), os.path.pardir, 'third_party',
27 _BOOTSTRAP_JS_DIR = os
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/
H A Drun_test5 import os namespace
11 vinn_dir = os.path.join(os.path.dirname(__file__), 'vinn')
/external/google-breakpad/src/google_breakpad/processor/
H A Dsystem_info.h46 SystemInfo() : os(), os_short(), os_version(), cpu(), cpu_info(),
51 os.clear();
63 string os; member in struct:google_breakpad::SystemInfo
65 // A short form of the os string, using lowercase letters and no spaces,
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
H A Dignore_0xff.pass.cpp23 std::ostringstream os; local
24 os << "aaaabbbb" << static_cast<char>(bad)
26 std::string s=os.str();
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
H A Dio.pass.cpp17 // operator<<(basic_ostream<charT, traits>& os,
37 std::ostringstream os; local
38 os << d1;
39 std::istringstream is(os.str());
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
H A Dio.pass.cpp17 // operator<<(basic_ostream<charT, traits>& os,
37 std::ostringstream os; local
38 os << d1;
39 std::istringstream is(os.str());
/external/lldb/utils/test/
H A Dllvm-mc-shell.py8 import os namespace
14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
18 fpath, fname = os.path.split(program)
23 for path in os.environ["PATH"].split(os.pathsep):
24 exe_file = os.path.join(path, program)
52 os.system(mc_cmd)
61 sys.path.append(os
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dapi_implementation.py34 import os namespace
56 _implementation_type = os.getenv('PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION',
66 _implementation_version_str = os.getenv(
H A Dapi_implementation_default_test.py35 import os namespace
38 os.environ.pop('PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION', None)
39 os.environ.pop('PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION_VERSION', None)
/external/protobuf/python/google/protobuf/pyext/
H A Ddescriptor_cpp2_test.py37 import os namespace
38 os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION'] = 'cpp'
39 os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION_VERSION'] = '2'
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1OutputStream.java11 private OutputStream os; field in class:ASN1OutputStream
14 OutputStream os)
16 this.os = os;
49 os.write(b);
55 os.write(bytes);
61 os.write(bytes, off, len);
118 os.write(BERTags.NULL);
119 os.write(0x00);
141 obj.encode(new ImplicitOutputStream(os));
13 ASN1OutputStream( OutputStream os) argument
176 ImplicitOutputStream(OutputStream os) argument
[all...]
/external/chromium-trace/trace-viewer/tracing/build/
H A Dgenerate_about_tracing_contents_unittest.py5 import os namespace
11 tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
/external/chromium-trace/trace-viewer/tracing/
H A Drun_dev_server6 import os namespace
9 hooks_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
H A Dtrace2html7 import os namespace
/external/deqp/android/scripts/
H A Dbuild.py23 import os namespace
49 return os.path.normpath(os.path.join(buildRoot, "native", buildName))
52 return os.path.join(getNativeBuildDir(buildRoot, nativeLib, buildType), "assets")
55 deqpDir = os.path.normpath(os.path.join(common.ANDROID_DIR, ".."))
57 libsDir = os.path.join(libTargetDir, nativeLib.abiVersion)
58 srcLibFile = os.path.join(buildDir, common.NATIVE_LIB_NAME)
59 dstLibFile = os.path.join(libsDir, common.NATIVE_LIB_NAME)
62 if not os
[all...]
H A Dlaunch.py24 import os namespace
31 curDir = os.getcwd()
34 os.chdir(common.ANDROID_DIR)
47 os.chdir(curDir)
/external/fonttools/MetaTools/
H A DbuildTableList.py4 import os namespace
9 fontToolsDir = os.path.dirname(os.path.dirname(os.path.join(os.getcwd(), sys.argv[0])))
10 fontToolsDir= os.path.normpath(fontToolsDir)
11 tablesDir = os.path.join(fontToolsDir,
13 docFile = os.path.join(fontToolsDir, "Doc", "documentation.html")
32 file = open(os.path.join(tablesDir, "__init__.py"), "w")
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.unformatted/
H A Dput.pass.cpp55 std::wostream os((std::wstreambuf*)0);
57 os.put(c);
58 assert(os.bad());
62 std::wostream os(&sb);
64 os.put(c);
66 assert(os.good());
70 std::ostream os(&sb);
72 os.put(c);
74 assert(os.good());
H A Dwrite.pass.cpp55 std::wostream os((std::wstreambuf*)0);
57 os.write(s, sizeof(s)/sizeof(s[0])-1);
58 assert(os.bad());
62 std::wostream os(&sb);
64 os.write(s, sizeof(s)/sizeof(s[0])-1);
65 assert(os.good());
70 std::ostream os(&sb);
72 os.write(s, sizeof(s)/sizeof(s[0])-1);
74 assert(os.good());
/external/skia/tools/
H A Dmerge_static_libs.py6 import os namespace
22 if os.name == 'posix':
26 abs_in_libs.append(os.path.abspath(in_lib))
27 curdir = os.getcwd()
28 os.chdir(tempdir)
30 ar = os.environ.get('AR', 'ar')
42 objects.append(os.path.abspath(object))
49 os.chdir(curdir)
53 elif os.name == 'nt':
/external/v8/src/compiler/
H A Dmachine-type.cc14 if (before) os << "|"; \
15 os << #bit; \
20 OStream& operator<<(OStream& os, const MachineType& type) { argument
38 return os;
H A Dnode.cc45 OStream& operator<<(OStream& os, const Operator& op) { return op.PrintTo(os); } argument
48 OStream& operator<<(OStream& os, const Node& n) { argument
49 os << n.id() << ": " << *n.op();
51 os << "(";
53 if (i != 0) os << ", ";
54 os << n.InputAt(i)->id();
56 os << ")";
58 return os;
/external/v8/tools/push-to-trunk/
H A Dscript_test.py33 import os namespace
39 script_path = os.path.dirname(os.path.abspath(__file__))
40 cov = coverage.coverage(include=([os.path.join(script_path, '*.py')]))
/external/google-breakpad/autotools/
H A Dconfig.sub123 os=-$maybe_os
127 os=-linux-android
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
142 case $os in
143 -sun*os*)
153 os=
157 os=-cnk
160 os=
166 os
[all...]
/external/libogg/src/
H A Dframing.c188 int ogg_stream_init(ogg_stream_state *os,int serialno){ argument
189 if(os){
190 memset(os,0,sizeof(*os));
191 os->body_storage=16*1024;
192 os->lacing_storage=1024;
194 os->body_data=_ogg_malloc(os->body_storage*sizeof(*os->body_data));
195 os
211 ogg_stream_check(ogg_stream_state *os) argument
217 ogg_stream_clear(ogg_stream_state *os) argument
228 ogg_stream_destroy(ogg_stream_state *os) argument
239 _os_body_expand(ogg_stream_state *os,int needed) argument
254 _os_lacing_expand(ogg_stream_state *os,int needed) argument
304 ogg_stream_iovecin(ogg_stream_state *os, ogg_iovec_t *iov, int count, long e_o_s, ogg_int64_t granulepos) argument
362 ogg_stream_packetin(ogg_stream_state *os,ogg_packet *op) argument
372 ogg_stream_flush_i(ogg_stream_state *os,ogg_page *og, int force) argument
517 ogg_stream_flush(ogg_stream_state *os,ogg_page *og) argument
525 ogg_stream_pageout(ogg_stream_state *os, ogg_page *og) argument
536 ogg_stream_eos(ogg_stream_state *os) argument
767 ogg_stream_pagein(ogg_stream_state *os, ogg_page *og) argument
907 ogg_stream_reset(ogg_stream_state *os) argument
928 ogg_stream_reset_serialno(ogg_stream_state *os,int serialno) argument
935 _packetout(ogg_stream_state *os,ogg_packet *op,int adv) argument
989 ogg_stream_packetout(ogg_stream_state *os,ogg_packet *op) argument
994 ogg_stream_packetpeek(ogg_stream_state *os,ogg_packet *op) argument
[all...]

Completed in 897 milliseconds

1234567891011>>