/external/chromium-trace/catapult/third_party/coverage/coverage/ |
D | execfile.py | 30 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 …]
|
D | control.py | 546 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/ |
D | rules_parser.py | 153 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/ |
D | cuda_perf.hpp | 112 #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)\
|
D | ts_perf.hpp | 620 #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/ |
D | test.py | 762 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/ |
D | pub_core_debuglog.h | 76 void VG_(debugLog) ( Int level, const HChar* modulename,
|
D | m_debuglog.c | 1242 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/ |
D | unit_libcbase.c | 13 void VG_(debugLog) ( Int level, const HChar* modulename, in VG_() 18 fprintf(stderr, "debuglog: %s: ", modulename); in VG_()
|
/external/bison/m4/ |
D | gnulib-common.m4 | 80 # gl_MODULE_INDICATOR_SET_VARIABLE([modulename]) 123 # gl_MODULE_INDICATOR([modulename]) 145 # gl_MODULE_INDICATOR_FOR_TESTS([modulename])
|
/external/opencv3/modules/ts/src/ |
D | ts.cpp | 451 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/ |
D | documentation_tutorial.markdown | 82 │ └── <modulename> 109 └── <modulename> 110 ├── doc - documentation pages and images, BibTeX file (<modulename>.bib)
|
/external/opencv3/modules/ts/include/opencv2/ |
D | ts.hpp | 317 virtual void init( const string& modulename );
|
/external/selinux/sepolgen/src/sepolgen/ |
D | yacc.py | 1817 def lr_write_tables(modulename=tab_module,outputdir=''): argument 1818 filename = os.path.join(outputdir,modulename) + ".py"
|
/external/chromium-trace/catapult/third_party/coverage/ |
D | CHANGES.rst | 786 - 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/ |
D | grokdump.py | 943 def TryLoadSymbolsFor(self, modulename, module): argument 946 modulename.replace('.', '_') + ".pdb.sym")
|