Searched refs:os (Results 76 - 100 of 3641) sorted by relevance

1234567891011>>

/external/chromium_org/tools/
H A Dremove_stale_pyc_files.py6 import os namespace
12 for dirname, _, filenames in os.walk(base_dir):
16 root, ext = os.path.splitext(filename)
20 pyc_path = os.path.join(dirname, filename)
21 py_path = os.path.join(dirname, root + '.py')
24 if not os.path.exists(py_path):
25 os.remove(pyc_path)
31 os.removedirs(dirname)
H A Dlicenses.py19 import os namespace
26 os.path.join('third_party','nss'),
29 os.path.join('third_party','adobe'),
32 os.path.join('third_party','widevine'),
35 os.path.join('third_party','valgrind'),
38 os.path.join('build','secondary'),
39 os.path.join('third_party','bison'),
40 os.path.join('third_party','blanketjs'),
41 os.path.join('third_party','cygwin'),
42 os
[all...]
/external/stlport/test/unit/
H A Dostmit_test.cpp38 ostringstream os; local
40 ostream_iterator<char> iter(os);
42 CPPUNIT_ASSERT(os.good());
43 os << ' ';
44 CPPUNIT_ASSERT(os.good());
46 ostream_iterator<int> iter2(os);
48 CPPUNIT_ASSERT(os.good());
49 CPPUNIT_ASSERT(os.str() == "hello 1524");
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dbuild_server.py8 import os namespace
13 SRC_DIR = os.path.join(sys.path[0], os.pardir, os.pardir, os.pardir, os.pardir,
14 os.pardir)
15 THIRD_PARTY_DIR = os.path.join(SRC_DIR, 'third_party')
16 LOCAL_THIRD_PARTY_DIR = os.path.join(sys.path[0], 'third_party')
17 TOOLS_DIR = os
[all...]
H A Dstart_dev_server.py6 import os namespace
15 SRC_PATH = os.path.join(SERVER_PATH, os.pardir, os.pardir, os.pardir, os.pardir,
16 os.pardir)
21 os.remove(os.path.join(SRC_PATH, filename))
31 shutil.copy(os
[all...]
/external/openssl/crypto/hmac/
H A Dhm_ameth.c77 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local
78 if (os)
80 if (os->data)
81 OPENSSL_cleanse(os->data, os->length);
82 ASN1_OCTET_STRING_free(os);
109 ASN1_OCTET_STRING *os; local
110 os = ASN1_OCTET_STRING_new();
111 if (!os || !ASN1_OCTET_STRING_set(os, *pde
120 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local
[all...]
/external/chromium_org/tools/gyp/test/compiler-override/
H A Dgyptest-compiler-env.py11 import os namespace
15 here = os.path.dirname(os.path.abspath(__file__))
24 if key in os.environ:
25 del os.environ[key]
44 oldenv = os.environ.copy()
46 os.environ['CC'] = 'python %s/my_cc.py FOO' % here
47 os.environ['CXX'] = 'python %s/my_cxx.py FOO' % here
48 os.environ['LINK'] = 'python %s/my_ld.py FOO_LINK' % here
52 os
[all...]
/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_org/build/
H A Ddownload_nacl_toolchains.py8 import os namespace
15 if 'disable_nacl=1' in os.environ.get('GYP_DEFINES', ''):
17 script_dir = os.path.dirname(os.path.abspath(__file__))
18 src_dir = os.path.dirname(script_dir)
19 nacl_dir = os.path.join(src_dir, 'native_client')
20 nacl_build_dir = os.path.join(nacl_dir, 'build')
21 package_version_dir = os.path.join(nacl_build_dir, 'package_version')
22 package_version = os.path.join(package_version_dir, 'package_version.py')
23 if not os
[all...]
H A Dinverse_depth.py6 import os namespace
12 return os.path.relpath(os.getcwd(), os.path.abspath(depth))
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
H A Dcommon.py5 import os, sys namespace
6 dirname = os.path.dirname(sys.modules[__name__].__file__)
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/
H A Dcommon.py5 import os, sys namespace
6 dirname = os.path.dirname(sys.modules[__name__].__file__)
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/
H A Dcommon.py5 import os, sys namespace
6 dirname = os.path.dirname(sys.modules[__name__].__file__)
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/pyauto_dep/
H A Dcommon.py5 import os, sys namespace
6 dirname = os.path.dirname(sys.modules[__name__].__file__)
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/
H A Dcommon.py5 import os, sys namespace
6 dirname = os.path.dirname(sys.modules[__name__].__file__)
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
/external/chromium_org/content/test/gpu/gpu_tests/
H A D__init__.py5 import os namespace
9 telemetry_path = os.path.join(
10 os.path.dirname(__file__),
12 absolute_telemetry_path = os.path.abspath(telemetry_path)
/external/chromium_org/content/test/gpu/page_sets/
H A Dpage_set_unittest.py5 import os namespace
13 page_sets_dir = os.path.dirname(os.path.realpath(__file__))
14 top_level_dir = os.path.dirname(page_sets_dir)
/external/chromium_org/mojo/spy/ui/
H A Dspy_project.py5 import os namespace
13 spy_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
H A Dspy_shell_to_html6 import os namespace
10 top_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
/external/chromium_org/third_party/angle/build/
H A Dgyp_angle10 import os
13 script_dir = os.path.dirname(__file__)
14 angle_dir = os.path.normpath(os.path.join(script_dir, os.pardir))
16 sys.path.append(os.path.join(angle_dir, 'third_party', 'gyp', 'pylib'))
30 args.append('-I' + os.path.join(script_dir, 'common.gypi'))
33 args.append(os.path.join(script_dir, 'all.gyp'))
/external/chromium_org/third_party/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/chromium_org/tools/gyp/test/ios/app-bundle/TestApp/
H A Dcheck_no_signature.py3 import os namespace
7 p = os.path.join(os.environ['BUILT_PRODUCTS_DIR'],os.environ['EXECUTABLE_PATH'])
/external/chromium_org/tools/gyp/test/msvs/config_attrs/
H A Dgyptest-config_attrs.py14 import os namespace
20 if os.getenv('GYP_MSVS_VERSION'):
21 vc_version = ['VC90','VC100'][int(os.getenv('GYP_MSVS_VERSION')) >= 2010]
23 expected_exe_file = os.path.join(test.workdir, vc_version, 'hello.exe')
/external/chromium_org/tools/metrics/histograms/
H A Dvalidate_format.py9 import os.path namespace
14 xml_file = os.path.join(os.path.dirname(os.path.realpath(__file__)),
/external/chromium_org/tools/perf/
H A Dgenerate_profile5 import os namespace
8 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'telemetry'))

Completed in 1426 milliseconds

1234567891011>>