Home
last modified time | relevance | path

Searched refs:modulename (Results 1 – 16 of 16) sorted by relevance

/external/chromium-trace/catapult/third_party/coverage/coverage/
Dexecfile.py30 def find_module(modulename): argument
37 spec = importlib_util_find_spec(modulename)
41 raise NoSource("No module named %r" % (modulename,))
44 if pathname.endswith("__init__.py") and not modulename.endswith("__init__"):
45 mod_main = modulename + ".__main__"
51 % (mod_main, modulename)
58 def find_module(modulename): argument
69 if '.' in modulename:
70 packagename, name = modulename.rsplit('.', 1)
74 packagename, name = None, modulename
[all …]
Dcontrol.py546 modulename = self._name_for_module(frame.f_globals, filename)
553 if self.source_pkgs_match.match(modulename):
554 if modulename in self.source_pkgs:
555 self.source_pkgs.remove(modulename)
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
Drules_parser.py153 modulename, classname = fullname.rsplit('.', 1)
154 if '*' not in allowed_imports and modulename not in allowed_imports:
155 raise Error('%s: Package %r is not in allowed_imports', i, modulename)
157 module = __import__(modulename, fromlist=[classname])
/external/opencv3/modules/ts/include/opencv2/ts/
Dcuda_perf.hpp112 #define CV_PERF_TEST_CUDA_MAIN(modulename) \ argument
116 CV_PERF_TEST_MAIN_INTERNALS(modulename, impls, perf::printCudaInfo())\
119 #define CV_PERF_TEST_CUDA_MAIN(modulename) \ argument
123 CV_PERF_TEST_MAIN_INTERNALS(modulename, plain_only)\
Dts_perf.hpp620 #define CV_PERF_TEST_MAIN_INTERNALS(modulename, impls, ...) \ argument
621 ::perf::Regression::Init(#modulename); \
626 ::testing::Test::RecordProperty("cv_module_name", #modulename); \
633 #define CV_PERF_TEST_MAIN_WITH_IMPLS(modulename, impls, ...) \ argument
636 CV_PERF_TEST_MAIN_INTERNALS(modulename, impls, __VA_ARGS__)\
639 #define CV_PERF_TEST_MAIN(modulename, ...) \ argument
643 CV_PERF_TEST_MAIN_INTERNALS(modulename, plain_only, __VA_ARGS__)\
/external/autotest/client/common_lib/
Dtest.py762 modulename = '%s.%s' % (re.sub('/', '.', testgroup), testname)
763 classname = '%s.%s' % (modulename, testname)
771 modulename = os.path.basename(path)
772 classname = '%s.%s' % (modulename, modulename)
804 exec ('import %s' % modulename, local_namespace, global_namespace)
/external/valgrind/coregrind/
Dpub_core_debuglog.h76 void VG_(debugLog) ( Int level, const HChar* modulename,
Dm_debuglog.c1242 void VG_(debugLog) ( Int level, const HChar* modulename, in VG_()
1272 (void)myvprintf_str ( add_to_buf, &buf, 0, 8, modulename, False ); in VG_()
/external/valgrind/memcheck/tests/
Dunit_libcbase.c13 void VG_(debugLog) ( Int level, const HChar* modulename, in VG_()
18 fprintf(stderr, "debuglog: %s: ", modulename); in VG_()
/external/bison/m4/
Dgnulib-common.m480 # gl_MODULE_INDICATOR_SET_VARIABLE([modulename])
123 # gl_MODULE_INDICATOR([modulename])
145 # gl_MODULE_INDICATOR_FOR_TESTS([modulename])
/external/opencv3/modules/ts/src/
Dts.cpp451 void TS::init( const string& modulename ) in init() argument
460 sprintf( buf, "%s%s%s/", datapath_dir, haveSlash ? "" : "/", modulename.c_str() ); in init()
/external/opencv3/doc/tutorials/introduction/documenting_opencv/
Ddocumentation_tutorial.markdown82 │   └── <modulename>
109 └── <modulename>
110 ├── doc - documentation pages and images, BibTeX file (<modulename>.bib)
/external/opencv3/modules/ts/include/opencv2/
Dts.hpp317 virtual void init( const string& modulename );
/external/selinux/sepolgen/src/sepolgen/
Dyacc.py1817 def lr_write_tables(modulename=tab_module,outputdir=''): argument
1818 filename = os.path.join(outputdir,modulename) + ".py"
/external/chromium-trace/catapult/third_party/coverage/
DCHANGES.rst786 - When running a module with ``coverage run -m <modulename>``, certain details
788 ``python -m <modulename>``. This had the unfortunate side-effect of making
888 - Modules can now be run directly using ``coverage run -m modulename``, to
/external/v8/tools/
Dgrokdump.py943 def TryLoadSymbolsFor(self, modulename, module): argument
946 modulename.replace('.', '_') + ".pdb.sym")