Searched defs:imp (Results 1 - 25 of 51) sorted by relevance

123

/external/autotest/client/cros/
H A Dfactory_setup_modules.py9 import imp, logging, os, sys namespace
22 cros = imp.load_module('cros', None, '', ('', '', imp.PKG_DIRECTORY))
25 cros.factory = imp.load_module(
27 *imp.find_module('cros/factory', sys.path + extra_path))
/external/autotest/site_utils/autoupdate/
H A Dimport_common.py7 import imp namespace
21 return imp.load_module(module_name, *imp.find_module(module_name))
30 return imp.load_module(module_name, *imp.find_module(module_name))
/external/autotest/client/cros/cellular/mbim_compliance/
H A Dmbim_test_runner.py11 import imp namespace
43 test_module = imp.load_source(subtest_name, module_name)
/external/boringssl/src/util/bot/go/
H A Denv.py24 import imp namespace
30 bootstrap = imp.load_source(
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/
H A Dgenerator_unittest.py5 import imp namespace
21 imp.find_module("mojom")
H A Dmodule_unittest.py5 import imp namespace
21 imp.find_module("mojom")
H A Ddata_unittest.py5 import imp namespace
21 imp.find_module("mojom")
H A Dpack_unittest.py5 import imp namespace
23 imp.find_module("mojom")
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
H A Dutil.py4 import imp namespace
27 same as imp.find_module, but handles dotted names
34 result = imp.find_module(name, path)
57 return imp.find_module(name, [path_item])
71 yield name, (None, None, ("", "", imp.C_BUILTIN))
81 res = (fp, res.path, ('.py', 'rU', imp.PY_SOURCE))
84 fp = BytesIO(imp.get_magic() + b'\0\0\0\0' + marshal.dumps(co))
85 res = (fp, res.path, ('.pyc', 'rb', imp.PY_COMPILED))
88 res = (None, loader.path, (os.path.splitext(loader.path)[-1], 'rb', imp.C_EXTENSION))
H A Dfind_modules.py14 import imp namespace
302 _triple[0] for _triple in imp.get_suffixes()
303 if _triple[2] == imp.C_EXTENSION
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp47 auto imp = m.getImplementation<int, int, int>(); local
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dtemplate_expander.py8 import imp namespace
26 imp.find_module("jinja2")
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/
H A Dfileutil_unittest.py5 import imp namespace
23 imp.find_module("mojom")
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/parse/
H A Dtranslate_unittest.py5 import imp namespace
21 imp.find_module("mojom")
H A Dast_unittest.py5 import imp namespace
21 imp.find_module("mojom")
H A Dlexer_unittest.py5 import imp namespace
21 imp.find_module("ply")
27 imp.find_module("mojom")
/external/avb/test/
H A Dimage_handler_unittest.py29 import imp namespace
36 avbtool = imp.load_source('avbtool', './avbtool')
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py91 import imp namespace
110 = imp.find_module(testID, [testDir])
112 testMod = imp.load_module(
179 import imp namespace
244 = imp.find_module(testID, [testDir])
246 testMod = imp.load_module(
/external/clang/tools/scan-view/bin/
H A Dscan-view7 import imp namespace
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py2 import imp namespace
304 = imp.find_module(name, [self.baseDir])
306 return imp.load_module(
/external/autotest/client/cros/cellular/pseudomodem/
H A Dpseudomodem.py15 import imp namespace
273 module_file, filepath, data = imp.find_module(name, [path])
275 module = imp.load_module(name, module_file, filepath, data)
/external/chromium-trace/catapult/devil/devil/utils/
H A Dmarkdown.py7 import imp namespace
167 r = imp.find_module(package_name, d)
169 module = imp.load_module(full_module_name, *r)
/external/chromium-trace/catapult/telemetry/telemetry/core/
H A Dutil.py5 import imp namespace
57 return imp.load_source(_GetUniqueModuleName(), file_path)
/external/libcxx/test/std/strings/basic.string/string.cons/
H A Dcopy_alloc.pass.cpp46 alloc_imp<T> *imp; member in struct:poca_alloc
48 poca_alloc(alloc_imp<T> *imp_) : imp (imp_) {}
51 poca_alloc(const poca_alloc<U>& other) : imp(other.imp) {}
53 T* allocate (std::size_t n) { return imp->allocate(n);}
54 void deallocate(T* p, std::size_t n) { imp->deallocate(p, n); }
60 return lhs.imp == rhs.imp;
66 return lhs.imp != rhs.imp;
[all...]
/external/libmojo/mojo/public/tools/bindings/
H A Dmojom_bindings_generator.py10 import imp namespace
67 generator_module = imp.load_source(os.path.basename(generator_name)[:-3],

Completed in 420 milliseconds

123