HomeSort by relevance Sort by last modified time
    Searched full:importer (Results 51 - 75 of 491) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/
pkgutil.py 105 for importer, name, ispkg in iter_modules(path, prefix):
106 yield importer, name, ispkg
154 def iter_importer_modules(importer, prefix=''):
155 if not hasattr(importer, 'iter_modules'):
157 return importer.iter_modules(prefix)
163 """PEP 302 Importer that wraps Python's "classic" import algorithm
165 ImpImporter(dirname) produces a PEP 302 importer that searches that
166 directory. ImpImporter(None) produces a PEP 302 importer that searches
331 def iter_zipimport_modules(importer, prefix=''):
332 dirlist = zipimport._zip_directory_cache[importer.archive].keys(
    [all...]
  /hardware/interfaces/graphics/composer/2.2/utils/hal/include/composer-hal/2.2/
ComposerResources.h 37 ComposerDisplayResource(DisplayType type, ComposerHandleImporter& importer,
39 : V2_1::hal::ComposerDisplayResource(type, importer, outputBufferCacheSize),
40 mReadbackBufferCache(importer, ComposerHandleCache::HandleType::BUFFER, 1) {}
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pkgutil.py 105 for importer, name, ispkg in iter_modules(path, prefix):
106 yield importer, name, ispkg
154 def iter_importer_modules(importer, prefix=''):
155 if not hasattr(importer, 'iter_modules'):
157 return importer.iter_modules(prefix)
163 """PEP 302 Importer that wraps Python's "classic" import algorithm
165 ImpImporter(dirname) produces a PEP 302 importer that searches that
166 directory. ImpImporter(None) produces a PEP 302 importer that searches
331 def iter_zipimport_modules(importer, prefix=''):
332 dirlist = zipimport._zip_directory_cache[importer.archive].keys(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pkgutil.py 105 for importer, name, ispkg in iter_modules(path, prefix):
106 yield importer, name, ispkg
154 def iter_importer_modules(importer, prefix=''):
155 if not hasattr(importer, 'iter_modules'):
157 return importer.iter_modules(prefix)
163 """PEP 302 Importer that wraps Python's "classic" import algorithm
165 ImpImporter(dirname) produces a PEP 302 importer that searches that
166 directory. ImpImporter(None) produces a PEP 302 importer that searches
331 def iter_zipimport_modules(importer, prefix=''):
332 dirlist = zipimport._zip_directory_cache[importer.archive].keys(
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
self_test.go 11 "go/importer"
30 conf := Config{Importer: importer.Default()}
  /prebuilts/go/linux-x86/src/go/types/
self_test.go 11 "go/importer"
30 conf := Config{Importer: importer.Default()}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pkgutil.py 105 for importer, name, ispkg in iter_modules(path, prefix):
106 yield importer, name, ispkg
154 def iter_importer_modules(importer, prefix=''):
155 if not hasattr(importer, 'iter_modules'):
157 return importer.iter_modules(prefix)
163 """PEP 302 Importer that wraps Python's "classic" import algorithm
165 ImpImporter(dirname) produces a PEP 302 importer that searches that
166 directory. ImpImporter(None) produces a PEP 302 importer that searches
331 def iter_zipimport_modules(importer, prefix=''):
332 dirlist = zipimport._zip_directory_cache[importer.archive].keys(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pkgutil.py 105 for importer, name, ispkg in iter_modules(path, prefix):
106 yield importer, name, ispkg
154 def iter_importer_modules(importer, prefix=''):
155 if not hasattr(importer, 'iter_modules'):
157 return importer.iter_modules(prefix)
163 """PEP 302 Importer that wraps Python's "classic" import algorithm
165 ImpImporter(dirname) produces a PEP 302 importer that searches that
166 directory. ImpImporter(None) produces a PEP 302 importer that searches
331 def iter_zipimport_modules(importer, prefix=''):
332 dirlist = zipimport._zip_directory_cache[importer.archive].keys(
    [all...]
  /external/drm_hwcomposer/
platformdrmgeneric.h 27 class DrmGenericImporter : public Importer {
glworker.h 47 Importer *importer);
  /external/python/cpython3/Lib/test/test_importlib/import_/
test_caching.py 74 with self.create_mock('pkg.__init__', 'pkg.module') as importer:
75 with util.import_state(meta_path=[importer]):
84 with self.create_mock('pkg.__init__', 'pkg.module') as importer:
85 with util.import_state(meta_path=[importer]):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /external/python/cpython2/Lib/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
importer.go 133 // An Importer resolves import paths to Packages. The imports map records
135 // An importer must determine the canonical package path and check imports
136 // to see if it is already present in the map. If so, the Importer can return
137 // the map entry. Otherwise, the importer must load the package data for the
140 type Importer func(imports map[string]*types.Package, path, srcDir string, lookup func(string) (io.ReadCloser, error)) (*types.Package, error)
142 func GetImporter(searchpaths []string, initmap map[*types.Package]InitData) Importer {
165 return nil, fmt.Errorf("gccgo importer requires lookup to return an io.ReadSeeker, have %T", rc)
216 // n, pkg, err = importer.ImportData(imports, data)
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
importer.go 133 // An Importer resolves import paths to Packages. The imports map records
135 // An importer must determine the canonical package path and check imports
136 // to see if it is already present in the map. If so, the Importer can return
137 // the map entry. Otherwise, the importer must load the package data for the
140 type Importer func(imports map[string]*types.Package, path, srcDir string, lookup func(string) (io.ReadCloser, error)) (*types.Package, error)
142 func GetImporter(searchpaths []string, initmap map[*types.Package]InitData) Importer {
165 return nil, fmt.Errorf("gccgo importer requires lookup to return an io.ReadSeeker, have %T", rc)
216 // n, pkg, err = importer.ImportData(imports, data)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fork1.py 36 def importer(): function in function:ForkTest.test_import_lock_fork
43 t = threading.Thread(target=importer)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bimport.go 27 type importer struct { type
60 p := importer{
244 func (p *importer) formatErrorf(format string, args ...interface{}) {
254 func (p *importer) verifyTypes() {
270 func (p *importer) pkg() *types.Pkg {
335 func (p *importer) obj(tag int) {
398 func (p *importer) pos() src.XPos {
435 func (p *importer) path() string {
452 func (p *importer) newtyp(etype types.EType) *types.Type {
461 func (p *importer) importtype(pt, t *types.Type)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bimport.go 27 type importer struct { type
60 p := importer{
244 func (p *importer) formatErrorf(format string, args ...interface{}) {
254 func (p *importer) verifyTypes() {
270 func (p *importer) pkg() *types.Pkg {
335 func (p *importer) obj(tag int) {
398 func (p *importer) pos() src.XPos {
435 func (p *importer) path() string {
452 func (p *importer) newtyp(etype types.EType) *types.Type {
461 func (p *importer) importtype(pt, t *types.Type)
    [all...]
  /prebuilts/go/darwin-x86/src/go/internal/srcimporter/
srcimporter_test.go 22 var importer = New(&build.Default, token.NewFileSet(), make(map[string]*types.Package)) var
26 if _, err := importer.ImportFrom(path, srcDir, 0); err != nil {
117 pkg, err := importer.ImportFrom(importPath, ".", 0)
145 importer := New(&build.Default, token.NewFileSet(), map[string]*types.Package{mathPkg.Path(): mathPkg})
146 _, err := importer.ImportFrom("math", ".", 0)
157 pkg, err := importer.ImportFrom("go/internal/srcimporter/testdata/issue20855", ".", 0)
  /prebuilts/go/linux-x86/src/go/internal/srcimporter/
srcimporter_test.go 22 var importer = New(&build.Default, token.NewFileSet(), make(map[string]*types.Package)) var
26 if _, err := importer.ImportFrom(path, srcDir, 0); err != nil {
117 pkg, err := importer.ImportFrom(importPath, ".", 0)
145 importer := New(&build.Default, token.NewFileSet(), map[string]*types.Package{mathPkg.Path(): mathPkg})
146 _, err := importer.ImportFrom("math", ".", 0)
157 pkg, err := importer.ImportFrom("go/internal/srcimporter/testdata/issue20855", ".", 0)
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
bimport.go 21 type importer struct { type
63 p := importer{
165 func (p *importer) pkg() *types.Package {
237 func (p *importer) declare(obj types.Object) {
247 // method importer.obj, switch case importing functions).
255 func (p *importer) obj(tag int) {
295 func (p *importer) pos() token.Pos {
358 func (p *importer) qualifiedName() (pkg *types.Package, name string) {
364 func (p *importer) record(t types.Type) {
370 // the importer
    [all...]
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
bimport.go 21 type importer struct { type
63 p := importer{
165 func (p *importer) pkg() *types.Package {
237 func (p *importer) declare(obj types.Object) {
247 // method importer.obj, switch case importing functions).
255 func (p *importer) obj(tag int) {
295 func (p *importer) pos() token.Pos {
358 func (p *importer) qualifiedName() (pkg *types.Package, name string) {
364 func (p *importer) record(t types.Type) {
370 // the importer
    [all...]

Completed in 1070 milliseconds

1 23 4 5 6 7 8 91011>>