Searched refs:os (Results 126 - 150 of 3641) sorted by relevance

1234567891011>>

/external/chromium_org/webkit/tools/layout_tests/
H A Drun_webkit_tests.py8 import os namespace
13 src_dir = os.path.abspath(os.path.join(sys.path[0], '..', '..', '..'))
14 script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
16 script = os.path.join(script_dir, 'run-webkit-tests')
/external/valgrind/main/include/
H A Dpub_tool_oset.h109 extern void VG_(OSetWord_Destroy) ( OSet* os );
151 extern Word VG_(OSetWord_Size) ( OSet* os );
152 extern void VG_(OSetWord_Insert) ( OSet* os, UWord val );
153 extern Bool VG_(OSetWord_Contains) ( OSet* os, UWord val );
154 extern Bool VG_(OSetWord_Remove) ( OSet* os, UWord val );
155 extern void VG_(OSetWord_ResetIter) ( OSet* os );
156 extern Bool VG_(OSetWord_Next) ( OSet* os, /*OUT*/UWord* val );
237 extern void VG_(OSetGen_Destroy) ( OSet* os );
238 extern void* VG_(OSetGen_AllocNode) ( OSet* os, SizeT elemSize );
239 extern void VG_(OSetGen_FreeNode) ( OSet* os, voi
[all...]
/external/chromium_org/build/android/pylib/
H A Dconstants.py10 import os namespace
14 DIR_SOURCE_ROOT = os.environ.get('CHECKOUT_SOURCE_ROOT',
15 os.path.abspath(os.path.join(os.path.dirname(__file__),
16 os.pardir, os.pardir, os.pardir)))
17 ISOLATE_DEPS_DIR = os.path.join(DIR_SOURCE_ROOT, 'isolate_deps_dir')
19 CHROME_SHELL_HOST_DRIVEN_DIR = os
[all...]
/external/chromium_org/build/go/
H A Dgo.py17 import os namespace
33 out_file = os.path.abspath(args.output_file)
35 src_root = os.path.abspath(args.src_root)
37 go_path = os.path.abspath(os.path.join(src_root, ".."))
41 os.mkdir(build_dir)
44 old_directory = os.getcwd()
45 os.chdir(build_dir)
46 os.environ["GOPATH"] = go_path
47 os
[all...]
/external/chromium_org/build/
H A Dvs_toolchain.py6 import os namespace
13 script_dir = os.path.dirname(os.path.realpath(__file__))
14 chrome_src = os.path.abspath(os.path.join(script_dir, os.pardir))
15 SRC_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
16 sys.path.insert(1, os
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest-printers.cc64 size_t count, ostream* os) {
72 *os << ' ';
74 *os << '-';
77 *os << text;
83 ostream* os) {
85 *os << count << "-byte object <";
94 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);
96 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os);
97 *os << " ... ";
100 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);
63 PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, size_t count, ostream* os) argument
82 PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, ostream* os) argument
114 PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ostream* os) argument
146 PrintAsCharLiteralTo(Char c, ostream* os) argument
192 PrintAsStringLiteralTo(wchar_t c, ostream* os) argument
207 PrintAsStringLiteralTo(char c, ostream* os) argument
217 PrintCharAndCodeTo(Char c, ostream* os) argument
241 PrintTo(unsigned char c, ::std::ostream* os) argument
244 PrintTo(signed char c, ::std::ostream* os) argument
250 PrintTo(wchar_t wc, ostream* os) argument
262 PrintCharsAsStringTo( const CharType* begin, size_t len, ostream* os) argument
286 UniversalPrintCharArray( const CharType* begin, size_t len, ostream* os) argument
309 UniversalPrintArray(const char* begin, size_t len, ostream* os) argument
315 UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) argument
320 PrintTo(const char* s, ostream* os) argument
337 PrintTo(const wchar_t* s, ostream* os) argument
349 PrintStringTo(const ::string& s, ostream* os) argument
354 PrintStringTo(const ::std::string& s, ostream* os) argument
360 PrintWideStringTo(const ::wstring& s, ostream* os) argument
366 PrintWideStringTo(const ::std::wstring& s, ostream* os) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dexport-w3c-performance-wg-tests41 import os namespace
49 source_directory = os.path.join(sys.argv[1], 'LayoutTests', 'http', 'tests', 'w3c', 'webperf')
50 destination_directory = os.path.join(sys.argv[2], 'tests')
62 destination_subdirectory = os.path.join(destination_directory, directory_to_copy)
63 if not os.path.exists(destination_subdirectory):
64 os.makedirs(destination_subdirectory)
65 for root, dirs, files in os.walk(os.path.join(source_directory, directory_to_copy)):
66 root = os.path.relpath(root, source_directory)
68 destination_subdirectory = os
[all...]
/external/deqp/scripts/build/
H A Dcommon.py3 import os namespace
7 SRC_BASE_DIR = os.path.realpath(os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..", "..")))
8 DEQP_DIR = os.path.join(SRC_BASE_DIR, "deqp")
20 oldDir = os.getcwd()
21 os.chdir(path)
28 os.chdir(newDir)
47 for path in os
[all...]
/external/gtest/src/
H A Dgtest-printers.cc60 size_t count, ostream* os) {
68 *os << ' ';
70 *os << '-';
73 *os << text;
79 ostream* os) {
81 *os << count << "-byte object <";
90 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);
92 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os);
93 *os << " ... ";
96 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);
59 PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, size_t count, ostream* os) argument
78 PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, ostream* os) argument
110 PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ostream* os) argument
142 PrintAsCharLiteralTo(Char c, ostream* os) argument
188 PrintAsStringLiteralTo(wchar_t c, ostream* os) argument
203 PrintAsStringLiteralTo(char c, ostream* os) argument
213 PrintCharAndCodeTo(Char c, ostream* os) argument
237 PrintTo(unsigned char c, ::std::ostream* os) argument
240 PrintTo(signed char c, ::std::ostream* os) argument
246 PrintTo(wchar_t wc, ostream* os) argument
255 PrintCharsAsStringTo( const CharType* begin, size_t len, ostream* os) argument
276 UniversalPrintCharArray( const CharType* begin, size_t len, ostream* os) argument
299 UniversalPrintArray(const char* begin, size_t len, ostream* os) argument
305 UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) argument
310 PrintTo(const char* s, ostream* os) argument
327 PrintTo(const wchar_t* s, ostream* os) argument
339 PrintStringTo(const ::string& s, ostream* os) argument
344 PrintStringTo(const ::std::string& s, ostream* os) argument
350 PrintWideStringTo(const ::wstring& s, ostream* os) argument
356 PrintWideStringTo(const ::std::wstring& s, ostream* os) argument
[all...]
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/
H A Dchar.pass.cpp56 std::ostream os((std::streambuf*)0);
58 os << c;
59 assert(os.bad());
60 assert(os.fail());
64 std::ostream os(&sb);
66 os << c;
71 std::ostream os(&sb);
72 os.width(5);
74 os << c;
76 assert(os
[all...]
H A Dchar_pointer.pass.cpp56 std::ostream os((std::streambuf*)0);
58 os << c;
59 assert(os.bad());
60 assert(os.fail());
64 std::ostream os(&sb);
66 os << c;
71 std::ostream os(&sb);
72 os.width(5);
74 os << c;
76 assert(os
[all...]
H A Dsigned_char.pass.cpp56 std::ostream os((std::streambuf*)0);
58 os << c;
59 assert(os.bad());
60 assert(os.fail());
64 std::ostream os(&sb);
66 os << c;
71 std::ostream os(&sb);
72 os.width(5);
74 os << c;
76 assert(os
[all...]
H A Dsigned_char_pointer.pass.cpp56 std::ostream os((std::streambuf*)0);
58 os << c;
59 assert(os.bad());
60 assert(os.fail());
64 std::ostream os(&sb);
66 os << c;
71 std::ostream os(&sb);
72 os.width(5);
74 os << c;
76 assert(os
[all...]
H A Dunsigned_char.pass.cpp56 std::ostream os((std::streambuf*)0);
58 os << c;
59 assert(os.bad());
60 assert(os.fail());
64 std::ostream os(&sb);
66 os << c;
71 std::ostream os(&sb);
72 os.width(5);
74 os << c;
76 assert(os
[all...]
H A Dunsigned_char_pointer.pass.cpp56 std::ostream os((std::streambuf*)0);
58 os << c;
59 assert(os.bad());
60 assert(os.fail());
64 std::ostream os(&sb);
66 os << c;
71 std::ostream os(&sb);
72 os.width(5);
74 os << c;
76 assert(os
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-printers.cc68 size_t count, ostream* os) {
76 *os << ' ';
78 *os << '-';
81 *os << text;
87 ostream* os) {
89 *os << count << "-byte object <";
98 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);
100 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os);
101 *os << " ... ";
104 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);
67 PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, size_t count, ostream* os) argument
86 PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, ostream* os) argument
118 PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ostream* os) argument
150 PrintAsCharLiteralTo(Char c, ostream* os) argument
196 PrintAsWideStringLiteralTo(wchar_t c, ostream* os) argument
211 PrintAsNarrowStringLiteralTo(char c, ostream* os) argument
220 PrintCharAndCodeTo(Char c, ostream* os) argument
245 PrintTo(unsigned char c, ::std::ostream* os) argument
248 PrintTo(signed char c, ::std::ostream* os) argument
254 PrintTo(wchar_t wc, ostream* os) argument
261 PrintCharsAsStringTo(const char* begin, size_t len, ostream* os) argument
278 UniversalPrintArray(const char* begin, size_t len, ostream* os) argument
285 PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, ostream* os) argument
303 PrintTo(const char* s, ostream* os) argument
320 PrintTo(const wchar_t* s, ostream* os) argument
332 PrintStringTo(const ::string& s, ostream* os) argument
337 PrintStringTo(const ::std::string& s, ostream* os) argument
343 PrintWideStringTo(const ::wstring& s, ostream* os) argument
349 PrintWideStringTo(const ::std::wstring& s, ostream* os) argument
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-printers.cc68 size_t count, ostream* os) {
76 *os << ' ';
78 *os << '-';
81 *os << text;
87 ostream* os) {
89 *os << count << "-byte object <";
98 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);
100 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os);
101 *os << " ... ";
104 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);
67 PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, size_t count, ostream* os) argument
86 PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, ostream* os) argument
118 PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ostream* os) argument
150 PrintAsCharLiteralTo(Char c, ostream* os) argument
196 PrintAsWideStringLiteralTo(wchar_t c, ostream* os) argument
211 PrintAsNarrowStringLiteralTo(char c, ostream* os) argument
220 PrintCharAndCodeTo(Char c, ostream* os) argument
245 PrintTo(unsigned char c, ::std::ostream* os) argument
248 PrintTo(signed char c, ::std::ostream* os) argument
254 PrintTo(wchar_t wc, ostream* os) argument
261 PrintCharsAsStringTo(const char* begin, size_t len, ostream* os) argument
278 UniversalPrintArray(const char* begin, size_t len, ostream* os) argument
285 PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, ostream* os) argument
303 PrintTo(const char* s, ostream* os) argument
320 PrintTo(const wchar_t* s, ostream* os) argument
332 PrintStringTo(const ::string& s, ostream* os) argument
337 PrintStringTo(const ::std::string& s, ostream* os) argument
343 PrintWideStringTo(const ::wstring& s, ostream* os) argument
349 PrintWideStringTo(const ::std::wstring& s, ostream* os) argument
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-printers.cc68 size_t count, ostream* os) {
76 *os << ' ';
78 *os << '-';
81 *os << text;
87 ostream* os) {
89 *os << count << "-byte object <";
98 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);
100 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os);
101 *os << " ... ";
104 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);
67 PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, size_t count, ostream* os) argument
86 PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, ostream* os) argument
118 PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ostream* os) argument
150 PrintAsCharLiteralTo(Char c, ostream* os) argument
196 PrintAsWideStringLiteralTo(wchar_t c, ostream* os) argument
211 PrintAsNarrowStringLiteralTo(char c, ostream* os) argument
220 PrintCharAndCodeTo(Char c, ostream* os) argument
245 PrintTo(unsigned char c, ::std::ostream* os) argument
248 PrintTo(signed char c, ::std::ostream* os) argument
254 PrintTo(wchar_t wc, ostream* os) argument
261 PrintCharsAsStringTo(const char* begin, size_t len, ostream* os) argument
278 UniversalPrintArray(const char* begin, size_t len, ostream* os) argument
285 PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, ostream* os) argument
303 PrintTo(const char* s, ostream* os) argument
320 PrintTo(const wchar_t* s, ostream* os) argument
332 PrintStringTo(const ::string& s, ostream* os) argument
337 PrintStringTo(const ::std::string& s, ostream* os) argument
343 PrintWideStringTo(const ::wstring& s, ostream* os) argument
349 PrintWideStringTo(const ::std::wstring& s, ostream* os) argument
[all...]
/external/clang/utils/
H A DCaptureCmd20 import os namespace
27 path = os.path.join(dir,
29 if not os.path.exists(path):
36 program = os.getenv('CAPTURE_CMD_PROGRAM')
37 dir = os.getenv('CAPTURE_CMD_DIR')
38 fallback = os.getenv('CAPTURE_CMD_FALLBACK')
45 if not os.path.exists(dir):
46 os.mkdir(dir, 0700)
49 env = os.environ.items()
52 cwdKey = saveCaptureData('cwd-', dir, os
[all...]
/external/chromium_org/remoting/webapp/
H A Dbuild-webapp.py18 import os namespace
32 os.path.abspath(os.path.join(sys.path[0], '../../google_apis')))
37 oldFilename = os.path.basename(filepath) + '.old'
38 oldFilepath = os.path.join(os.path.dirname(filepath), oldFilename)
39 os.rename(filepath, oldFilepath)
44 os.remove(oldFilepath)
49 zipfile_base = os.path.splitext(os
[all...]
/external/chromium_org/tools/clang/scripts/
H A Dupdate.py9 import os namespace
23 if (re.search(r'\b(asan)=1', os.environ.get('GYP_DEFINES', '')) and
24 not 'LLVM_FORCE_HEAD_REVISION' in os.environ):
28 THIS_DIR = os.path.abspath(os.path.dirname(__file__))
29 CHROMIUM_DIR = os.path.abspath(os.path.join(THIS_DIR, '..', '..', '..'))
30 LLVM_DIR = os.path.join(CHROMIUM_DIR, 'third_party', 'llvm')
31 LLVM_BUILD_DIR = os.path.join(CHROMIUM_DIR, 'third_party', 'llvm-build',
33 COMPILER_RT_BUILD_DIR = os
[all...]
/external/skia/gm/rebaseline_server/
H A Dbase_unittest.py14 import os namespace
19 PARENT_DIR = os.path.dirname(os.path.realpath(__file__))
20 TRUNK_DIR = os.path.dirname(os.path.dirname(PARENT_DIR))
21 TESTDATA_DIR = os.path.join(PARENT_DIR, 'testdata')
22 OUTPUT_DIR_ACTUAL = os.path.join(TESTDATA_DIR, 'outputs', 'actual')
23 OUTPUT_DIR_EXPECTED = os.path.join(TESTDATA_DIR, 'outputs', 'expected')
29 self._input_dir = os.path.join(TESTDATA_DIR, 'inputs')
30 self._output_dir_actual = os
[all...]
/external/chromium-trace/trace-viewer/build/
H A Dgenerate_template_contents.py7 import os namespace
9 srcdir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../src"))
14 for dirpath, dirnames, filenames in os.walk(srcdir):
16 all_filenames.append(os.path.join(dirpath, f))
19 os.path.splitext(x)[1] == ".html"]
20 filenames = [os.path.relpath(x) for x in filenames]
23 if os.path.basename(x).startswith('.'):
/external/chromium_org/third_party/opus/
H A Dconvert_rtcd_assembler.py9 import os namespace
26 arm2gnu_script = os.path.abspath(argv[0])
27 if not os.path.exists(arm2gnu_script):
32 input_file = os.path.abspath(argv[1])
33 if not os.path.exists(input_file):
40 output_dir = os.path.dirname(output_file)
41 if not os.path.exists(output_dir):
42 os.makedirs(output_dir)
49 return os.system(cmd)
/external/chromium_org/third_party/ots/
H A Dgyp_ots7 import os namespace
15 gyp_dir = os.path.join('third_party', 'gyp')
16 if not os.path.exists(gyp_dir):
21 sys.path.insert(0, os.path.abspath(os.path.join(gyp_dir, 'pylib')))
24 script_dir = os.path.abspath(os.path.dirname(__file__))
25 os.chdir(script_dir)
32 args.append(os.path.join(script_dir, 'ots-standalone.gyp'))

Completed in 1377 milliseconds

1234567891011>>