HomeSort by relevance Sort by last modified time
    Searched refs:pkgname (Results 1 - 25 of 42) sorted by null

1 2

  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
ClassEnumerator.java 32 private static void processDirectory(File directory, String pkgname, SortedSet<String> classes) {
42 String className = pkgname + '.' + fileName.substring(0, fileName.length() - 6);
49 processDirectory(subdir, pkgname + '.' + fileName, classes);
54 private static void processJarfile(URL resource, String pkgname, SortedSet<String> classes) {
55 String relPath = pkgname.replace('.', '/');
110 String pkgname = pkg.getName(); local
111 String relPath = pkgname.replace('.', '/');
124 processJarfile(resource, pkgname, classes);
126 processDirectory(new File(resource.getPath()), pkgname, classes);
  /external/e2fsprogs/contrib/
build-rpm 12 pkgname=`grep Name: e2fsprogs.spec | awk '{print $2;}'`
14 builddir=${pkgname}-${pkgvers}
  /external/python/cpython3/Lib/test/
test_pkgutil.py 236 def create_init(self, pkgname):
240 pkgdir = os.path.join(dirname, pkgname)
247 def create_submodule(self, dirname, pkgname, submodule_name, value):
248 module_name = os.path.join(dirname, pkgname, submodule_name + '.py')
253 pkgname = 'foo'
254 dirname_0 = self.create_init(pkgname)
255 dirname_1 = self.create_init(pkgname)
256 self.create_submodule(dirname_0, pkgname, 'bar', 0)
257 self.create_submodule(dirname_1, pkgname, 'baz', 1)
266 sorted([os.path.join(dirname_0, pkgname),
    [all...]
test_pkg.py 50 self.pkgname = None
63 if self.pkgname:
65 if self.pkgname in name.split('.')]
92 self.pkgname = descr[0][0]
test_reprlib.py 227 self.pkgname = os.path.join(self.longname)
230 shutil.rmtree(self.pkgname, ignore_errors=True)
231 os.mkdir(self.pkgname)
232 create_empty_file(os.path.join(self.pkgname, '__init__.py'))
245 for dirpath, dirnames, filenames in os.walk(self.pkgname):
248 actions.append(self.pkgname)
278 self._check_path_limitations(self.pkgname)
279 create_empty_file(os.path.join(self.subpkgname, self.pkgname + '.py'))
  /external/selinux/libselinux/include/selinux/
android.h 38 const char *pkgname,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ihooks.py 418 pkgname = globals.get('__package__')
419 if pkgname is not None:
420 if not pkgname and level > 0:
429 pkgname = modname
438 pkgname = modname.rpartition('.')[0]
439 globals['__package__'] = pkgname
441 dot = len(pkgname)
444 dot = pkgname.rindex('.', 0, dot)
448 pkgname = pkgname[:dot]
    [all...]
modulefinder.py 553 pkgname = name[:i]
554 pkg = self.modules.get(pkgname)
556 if pkgname in self.badmodules[name]:
  /external/python/cpython2/Lib/
ihooks.py 418 pkgname = globals.get('__package__')
419 if pkgname is not None:
420 if not pkgname and level > 0:
429 pkgname = modname
438 pkgname = modname.rpartition('.')[0]
439 globals['__package__'] = pkgname
441 dot = len(pkgname)
444 dot = pkgname.rindex('.', 0, dot)
448 pkgname = pkgname[:dot
    [all...]
modulefinder.py 561 pkgname = name[:i]
562 pkg = self.modules.get(pkgname)
564 if pkgname in self.badmodules[name]:
  /external/python/setuptools/setuptools/tests/
test_integration.py 71 def _install_one(requirement, cmd, pkgname, modulename):
76 dest_path = glob.glob(os.path.join(target, pkgname + '*.egg'))
78 assert os.path.exists(os.path.join(dest_path[0], pkgname, modulename))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_repr.py 218 self.pkgname = os.path.join(longname)
221 shutil.rmtree(self.pkgname, ignore_errors=True)
222 os.mkdir(self.pkgname)
223 touch(os.path.join(self.pkgname, '__init__'+os.extsep+'py'))
233 for dirpath, dirnames, filenames in os.walk(self.pkgname):
236 actions.append(self.pkgname)
248 touch(os.path.join(self.subpkgname, self.pkgname + os.extsep + 'py'))
test_pkg.py 49 self.pkgname = None
58 if self.pkgname:
60 if self.pkgname in name.split('.')]
87 self.pkgname = descr[0][0]
  /external/python/cpython2/Lib/test/
test_repr.py 225 self.pkgname = os.path.join(longname)
228 shutil.rmtree(self.pkgname, ignore_errors=True)
229 os.mkdir(self.pkgname)
230 touch(os.path.join(self.pkgname, '__init__'+os.extsep+'py'))
240 for dirpath, dirnames, filenames in os.walk(self.pkgname):
243 actions.append(self.pkgname)
255 touch(os.path.join(self.subpkgname, self.pkgname + os.extsep + 'py'))
test_pkg.py 49 self.pkgname = None
58 if self.pkgname:
60 if self.pkgname in name.split('.')]
87 self.pkgname = descr[0][0]
  /external/selinux/libselinux/src/android/
android_platform.c 904 const char *pkgname,
935 __FUNCTION__, uid, seinfo, pkgname);
1000 if(!pkgname)
1004 if (strncasecmp(pkgname, cur->name.str, cur->name.len-1))
1007 if (strcasecmp(pkgname, cur->name.str))
1087 __FUNCTION__, uid, seinfo, pkgname);
1101 const char *pkgname,
1122 rc = seapp_context_lookup(SEAPP_TYPE, uid, 0, seinfo, pkgname, NULL, ctx);
1174 const char *pkgname)
1192 rc = seapp_context_lookup(SEAPP_DOMAIN, uid, isSystemServer, seinfo, pkgname, NULL, ctx)
1345 char *pkgname = NULL, *end = NULL; local
    [all...]
  /external/python/cpython2/Lib/plat-mac/
pimp.py     [all...]
  /external/python/cpython2/Mac/BuildScript/
build-installer.py     [all...]
  /external/python/cpython3/Mac/BuildScript/
build-installer.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 2218 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
import.c 2319 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
import.c 2218 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /external/python/cpython2/Python/
import.c 2361 PyObject *pkgname, *modname, *modpath, *modules, *parent; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
modulefinder.py 555 pkgname = name[:i]
556 pkg = self.modules.get(pkgname)
558 if pkgname in self.badmodules[name]:
  /external/python/cpython3/Lib/
modulefinder.py 514 pkgname = name[:i]
515 pkg = self.modules.get(pkgname)
517 if pkgname in self.badmodules[name]:

Completed in 748 milliseconds

1 2