Home
last modified time | relevance | path

Searched refs:load_source (Results 1 – 19 of 19) sorted by relevance

/external/libabigail/tests/
Dmockfedabipkgdiff.in71 def load_source(name, path):
93 module = imp.load_source(name, path)
98 fedabipkgdiff_mod = load_source('fedabipkgdiff', FEDABIPKGDIFF)
/external/tensorflow/tensorflow/python/autograph/pyct/
Dloader.py44 def load_source(source, delete_on_exit): function
94 module, _ = load_source(source, delete_on_exit)
Dloader_test.py110 module, _ = loader.load_source(test_source, delete_on_exit=True)
117 _, filename = loader.load_source(test_source, delete_on_exit=True)
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_test_runner.py43 test_module = imp.load_source(subtest_name, module_name)
/external/tensorflow/tensorflow/python/debug/lib/
Dsource_utils_test.py279 source_lines, _ = source_utils.load_source(source_path)
288 source_utils.load_source(bad_path)
300 source_lines, _ = source_utils.load_source(source_path)
316 source_utils.load_source(source_path)
Dsource_utils.py82 def load_source(source_file_path): function
Ddumping_callback.py239 lines, _ = source_utils.load_source(file_path)
/external/python/cpython3/Lib/
Dimp.py166 def load_source(name, pathname, file=None): function
235 return load_source(name, filename, file)
/external/python/cpython2/Lib/
Dihooks.py169 def load_source(self, name, filename, file=None): member in Hooks
170 return imp.load_source(name, filename, file)
272 m = self.hooks.load_source(name, filename, file)
Drexec.py101 def load_source(self, *args): raise SystemError, "don't use this" member in RHooks
/external/libchrome/build/
Dprint_python_deps.py93 imp.load_source('NAME', options.module)
/external/skia/tests/
DSkSLTest.cpp197 static SkString load_source(skiatest::Reporter* r, in load_source() function
214 SkString shaderString = load_source(r, testFile, permutationSuffix); in test_one_permutation()
316 SkString shaderString = load_source(r, testFile, ""); in test_clone()
363 SkString shaderString = load_source(r, testFile, ""); in test_raster_pipeline()
/external/python/cpython3/Lib/test/
Dtest_imp.py175 mod = imp.load_source(temp_mod_name, temp_mod_name + '.py')
324 imp.load_source(modname, __file__ + "\0")
/external/avb/test/
Dimage_handler_unittest.py36 avbtool = imp.load_source('avbtool', './avbtool.py')
/external/cronet/components/cronet/tools/generators/
Dcronet_bindings_generator.py70 generator_module = imp.load_source(os.path.basename(generator_name)[:-3],
/external/tensorflow/tensorflow/python/debug/cli/
Dprofile_analyzer_cli.py645 source_lines, line_num_width = source_utils.load_source(
Danalyzer_cli.py1118 source_lines, line_num_width = source_utils.load_source(
/external/python/cpython2/Doc/library/
Dimp.rst252 .. function:: load_source(name, pathname[, file])
/external/python/cpython3/Misc/
DHISTORY5024 - Issue #17358: Modules loaded by imp.load_source() and load_compiled() (and by
7633 imp.load_source()/load_package()/load_compiled().