Home
last modified time | relevance | path

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

12

/external/hamcrest/
Dbuild.xml.original20 <compile-module modulename="hamcrest-api"/>
21 <jar-module modulename="hamcrest-api"/>
22 <test-module modulename="hamcrest-api"/>
28 <compile-module modulename="hamcrest-generator"/>
29 <jar-module modulename="hamcrest-generator"/>
30 <test-module modulename="hamcrest-generator"/>
45 <compile-module modulename="hamcrest-core"/>
46 …<generate-module-factory modulename="hamcrest-core" configurationfile="hamcrest-core/core-matchers…
47 <jar-module modulename="hamcrest-core"/>
48 <test-module modulename="hamcrest-core"/>
[all …]
/external/python/cpython2/Lib/
Dtrace.py141 def names(self, filename, modulename): argument
142 if modulename in self._ignore:
143 return self._ignore[modulename]
150 if mod == modulename: # Identical names, so ignore
151 self._ignore[modulename] = 1
159 if mod == modulename[:n] and modulename[n] == '.':
160 self._ignore[modulename] = 1
166 self._ignore[modulename] = 1
179 self._ignore[modulename] = 1
183 self._ignore[modulename] = 0
[all …]
/external/python/cpython3/Lib/
Dtrace.py75 def names(self, filename, modulename): argument
76 if modulename in self._ignore:
77 return self._ignore[modulename]
81 if modulename in self._mods: # Identical names, so ignore
82 self._ignore[modulename] = 1
91 if modulename.startswith(mod + '.'):
92 self._ignore[modulename] = 1
98 self._ignore[modulename] = 1
111 self._ignore[modulename] = 1
115 self._ignore[modulename] = 0
[all …]
/external/python/cpython2/Mac/scripts/
Dbgenall.py13 modulename = 'CarbonEvtscan'
15 modulename = 'IBCarbonscan'
17 modulename = shortname + 'scan'
19 m = __import__(modulename)
/external/bcc/src/lua/src/
Dsquish.lua218 local modulename, path = module.name, module.path;
222 print_debug("Packing "..modulename.." ("..path..")...");
229 f:write("package.preload['", modulename, "'] = (function (...)\n");
234 modulename, modulename, "@"..path));
237 …print_err("Couldn't pack module '"..modulename.."': "..(err or "unknown error... path to module fi…
/external/python/cpython2/Tools/bgen/bgen/
DbgenObjectDefinition.py28 self.modulename = None
41 self.modulename = name
196 if self.modulename:
197 Output("\"%s.%s\", /*tp_name*/", self.modulename, self.name)
274 if self.modulename:
275 Output("\"%s.%s\", /*tp_name*/", self.modulename, self.name)
/external/python/cpython3/Lib/test/
Dtest_fileio.py160 (self.modulename, self.f.name, self.f.mode))
164 (self.modulename, self.f.fileno(), self.f.mode))
167 "<%s.FileIO [closed]>" % (self.modulename,))
175 (self.modulename, f.name, f.mode))
344 modulename = '_io' variable in CAutoFileTests
348 modulename = '_pyio' variable in PyAutoFileTests
570 modulename = '_io' variable in COtherFileTests
581 modulename = '_pyio' variable in PyOtherFileTests
Dtest_pkg.py56 for modulename in self.modules_to_cleanup:
57 if modulename in sys.modules:
58 del sys.modules[modulename]
/external/python/cpython2/Lib/plat-mac/
Dgensuitemodule.py841 self.modulename = None
864 if self.modulename and not self.star_imported:
865 qualname = '%s.%s'%(self.modulename, name)
868 return name, qualname, self.modulename
874 self.modulename = name
886 if not self.modulename:
887 self.modulename = name
897 self.modulename = modname
928 self.fp.write("import %s\n"%mapper.modulename)
944 if mapper.hasname(name) and mapper.modulename != self.modulename:
[all …]
Daepack.py347 def mkobjectfrommodule(dict, modulename): argument
353 module = __import__(modulename)
362 def mktype(typecode, modulename=None): argument
363 if modulename:
364 module = __import__(modulename)
/external/autotest/client/common_lib/
Dtest.py821 modulename = '%s.%s' % (re.sub('/', '.', testgroup), testname)
822 classname = '%s.%s' % (modulename, testname)
830 modulename = os.path.basename(path)
831 classname = '%s.%s' % (modulename, modulename)
863 exec ('import %s' % modulename, local_namespace, global_namespace)
/external/python/cpython2/Python/
Derrors.c580 PyObject *modulename = NULL; in PyErr_NewException() local
599 modulename = PyString_FromStringAndSize(name, in PyErr_NewException()
601 if (modulename == NULL) in PyErr_NewException()
603 if (PyDict_SetItemString(dict, "__module__", modulename) != 0) in PyErr_NewException()
622 Py_XDECREF(modulename); in PyErr_NewException()
/external/python/cpython3/Doc/extending/
Dbuilding.rst26 ``PyInit_<modulename>``, with ``<modulename>`` replaced by the name of the
29 ``PyInitU_<modulename>``, with ``<modulename>`` encoded using Python's
/external/python/setuptools/setuptools/tests/
Dtest_integration.py71 def _install_one(requirement, cmd, pkgname, modulename): argument
78 assert os.path.exists(os.path.join(dest_path[0], pkgname, modulename))
/external/u-boot/scripts/
Dkernel-doc254 my $modulename = "Bootloader API";
358 $modulename = shift @ARGV;
453 'module' => $modulename,
1764 'module' => $modulename,
1805 'module' => $modulename,
1835 'module' => $modulename,
2160 'module' => $modulename,
/external/python/cpython3/Python/
Derrors.c862 PyObject *modulename = NULL; in PyErr_NewException() local
881 modulename = PyUnicode_FromStringAndSize(name, in PyErr_NewException()
883 if (modulename == NULL) in PyErr_NewException()
885 if (PyDict_SetItemString(dict, "__module__", modulename) != 0) in PyErr_NewException()
904 Py_XDECREF(modulename); in PyErr_NewException()
/external/python/cpython2/PC/bdist_wininst/
Dinstall.c116 char modulename[MAX_PATH]; variable
329 Py_SetProgramName(modulename); in compile_filelist()
819 Py_SetProgramName(modulename); in do_run_simple_script()
1761 fprintf(logfile, "Source: %s\n", modulename); in OpenLogfile()
2194 int ret = (int)ShellExecute(0, "runas", modulename, "", NULL, in SpawnUAC()
2630 GetModuleFileName(NULL, modulename, sizeof(modulename)); in WinMain()
2633 arc_data = MapExistingFile(modulename, &arc_size); in WinMain()
2660 basename = strrchr(modulename, '\\'); in WinMain()
/external/swiftshader/third_party/LLVM/include/llvm/
DLinker.h74 StringRef modulename, ///< name of linker's end-result module
/external/python/cpython2/Doc/library/
Drexec.rst143 .. method:: RExec.r_import(modulename[, globals[, locals[, fromlist]]])
145 Import the module *modulename*, raising an :exc:`ImportError` exception if the
172 .. method:: RExec.s_import(modulename[, globals[, locals[, fromlist]]])
174 Import the module *modulename*, raising an :exc:`ImportError` exception if the
/external/python/cpython3/PC/bdist_wininst/
Dinstall.c115 char modulename[MAX_PATH]; variable
1805 fprintf(logfile, "Source: %s\n", modulename); in OpenLogfile()
2221 int ret = (int)ShellExecute(0, "runas", modulename, "", NULL, in SpawnUAC()
2659 GetModuleFileName(NULL, modulename, sizeof(modulename)); in WinMain()
2663 arc_data = MapExistingFile(modulename, &arc_size); in WinMain()
2690 basename = strrchr(modulename, '\\'); in WinMain()
/external/python/cpython3/Doc/howto/
Dinstrumentation.rst319 .. c:function:: import__find__load__start(str modulename)
326 .. c:function:: import__find__load__done(str modulename, int found)
/external/python/cpython2/Doc/c-api/
Dcapsule.rst55 be specified as ``modulename.attributename``. This will enable other modules
/external/python/cpython3/Doc/c-api/
Dcapsule.rst55 be specified as ``modulename.attributename``. This will enable other modules
/external/python/cpython3/Doc/faq/
Dextending.rst186 module = PyImport_ImportModule("<modulename>");
190 the value of ``sys.modules["<modulename>"]``. Note that it doesn't enter the
/external/python/cpython2/Doc/faq/
Dextending.rst181 module = PyImport_ImportModule("<modulename>");
185 the value of ``sys.modules["<modulename>"]``. Note that it doesn't enter the

12