Searched defs:os (Results 176 - 200 of 2694) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-pdb-no-output.py13 import os namespace
/external/chromium_org/tools/
H A Dinclude_tracer.py15 import os namespace
150 if os.path.exists(basename + '.proto'):
169 for root in INCLUDE_PATHS + [os.path.dirname(parent)]:
170 if os.path.exists(os.path.join(root, filename)):
171 resolved_filename = os.path.join(root, filename)
175 if os.path.exists(resolved_filename):
/external/chromium_org/tools/memory_inspector/memory_inspector/
H A Dconstants.py5 import os namespace
8 PROJECT_SRC = os.path.abspath(os.path.join(__file__, os.pardir, os.pardir))
9 CLASSIFICATION_RULES_PATH = os.path.join(PROJECT_SRC, 'classification_rules')
10 PREBUILTS_PATH = os.path.join(PROJECT_SRC, 'prebuilts')
/external/chromium_org/tools/memory_inspector/memory_inspector/unittest/mock_adb/
H A Dadb17 import os namespace
24 with open(os.environ['MOCK_ADB_CFG']) as f:
/external/chromium_org/tools/perf/page_sets/
H A Dpage_set_unittest.py5 import os namespace
16 page_sets_dir = os.path.dirname(os.path.realpath(__file__))
17 top_level_dir = os.path.dirname(page_sets_dir)
/external/chromium_org/tools/perf/
H A Drecord_wpr5 import os namespace
10 _perf_dir = os.path.dirname(__file__)
11 _telemetry_path = os.path.join(_perf_dir, os.pardir, 'telemetry')
/external/chromium_org/tools/resources/
H A Dlist_resources_removed_by_repack.py7 import os namespace
52 generated_output_dir = os.path.join(build_dir, 'gen')
53 if not os.path.exists(generated_output_dir):
62 for root, dirs, files in os.walk(generated_output_dir):
63 if os.path.basename(root) != 'grit':
69 data_files.extend([os.path.join(root, header) for header in header_files])
/external/chromium_org/tools/site_compare/operators/
H A Dequals_with_mask.py10 import os.path namespace
44 maskfile = os.path.join(maskdir, os.path.basename(file1))
45 if os.path.exists(maskfile):
/external/chromium_org/tools/telemetry/telemetry/web_components/
H A Dweb_components_unittest.py5 import os namespace
14 if os.getenv('NO_TVCM'):
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A D__init__.py16 import os namespace
17 # chose an implementation, depending on os
18 if os.name == 'nt': #sys.platform == 'win32':
20 elif os.name == 'posix':
22 elif os.name == 'java':
25 raise ImportError("Sorry: no implementation for your platform ('%s') available" % (os.name,))
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports_posix.py24 import os namespace
90 os.name = %r
95 """ % (sys.platform, os.name, serial.VERSION))
96 raise ImportError("Sorry: no implementation for your platform ('%s') available" % (os.name,))
/external/chromium_org/tools/traceline/traceline/scripts/
H A Dcrit_sec.py7 import os namespace
/external/chromium_org/tools/win/split_link/
H A Dcheck_installed.py5 import os namespace
25 return os.path.exists(val)
/external/chromium_org/v8/tools/testrunner/server/
H A Dsignatures.py30 import os namespace
38 if (not os.path.exists(signature_file) or
39 os.path.getmtime(signature_file) < os.path.getmtime(filename)):
61 os.remove(signature_file)
62 os.remove(filename)
/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/libcxx/test/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/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/
H A Dio.pass.cpp16 // operator<<(basic_ostream<charT, traits>& os,
33 std::ostringstream os; local
34 os << d1;
35 std::istringstream is(os.str());
/external/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
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/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/
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/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/
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/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/
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/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/
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/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/
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/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
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/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/
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());

Completed in 5732 milliseconds

1234567891011>>