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

1 2

  /prebuilts/go/darwin-x86/src/go/importer/
importer.go 63 return m.ImportFrom(path, "" /* no vendoring */, 0)
66 func (m gcimports) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) {
81 return m.ImportFrom(path, "" /* no vendoring */, 0)
84 func (m *gccgoimports) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) {
  /prebuilts/go/linux-x86/src/go/importer/
importer.go 63 return m.ImportFrom(path, "" /* no vendoring */, 0)
66 func (m gcimports) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) {
81 return m.ImportFrom(path, "" /* no vendoring */, 0)
84 func (m *gccgoimports) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
future.c 22 names = s->v.ImportFrom.names;
88 identifier modname = s->v.ImportFrom.module;
compile.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
future.c 22 names = s->v.ImportFrom.names;
95 if (s->v.ImportFrom.module == future) {
compile.c     [all...]
  /external/python/cpython2/Python/
future.c 22 names = s->v.ImportFrom.names;
88 identifier modname = s->v.ImportFrom.module;
compile.c     [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
__init__.py 34 ImportFrom,
import_statement.py 18 'ImportFrom',
216 class ImportFrom(Import):
  /prebuilts/go/darwin-x86/src/go/types/
resolver_test.go 29 func (imp *resolveTestImporter) ImportFrom(path, srcDir string, mode ImportMode) (*Package, error) {
37 pkg, err := imp.importer.ImportFrom(path, srcDir, mode)
api.go 75 // Import(path) is the same as calling ImportFrom(path, "", 0);
81 // ImportFrom returns the imported package for the given import
85 // Two calls to ImportFrom with the same path and srcDir return
87 ImportFrom(path, srcDir string, mode ImportMode) (*Package, error)
118 // checker calls ImportFrom instead of Import.
resolver.go 196 imp, err = importerFrom.ImportFrom(path, srcDir, 0)
198 err = fmt.Errorf("Config.Importer.ImportFrom(%s, %s, 0) returned nil but no error", path, pkg.path)
  /prebuilts/go/linux-x86/src/go/types/
resolver_test.go 29 func (imp *resolveTestImporter) ImportFrom(path, srcDir string, mode ImportMode) (*Package, error) {
37 pkg, err := imp.importer.ImportFrom(path, srcDir, mode)
api.go 75 // Import(path) is the same as calling ImportFrom(path, "", 0);
81 // ImportFrom returns the imported package for the given import
85 // Two calls to ImportFrom with the same path and srcDir return
87 ImportFrom(path, srcDir string, mode ImportMode) (*Package, error)
118 // checker calls ImportFrom instead of Import.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 166 } ImportFrom;
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 166 } ImportFrom;
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
  /external/python/cpython2/Include/
Python-ast.h 166 } ImportFrom;
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 166 } ImportFrom;
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
  /prebuilts/gdb/linux-x86/include/python2.7/
Python-ast.h 166 } ImportFrom;
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 166 } ImportFrom;
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 166 } ImportFrom;
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
  /external/python/cpython2/Lib/test/
test_ast.py 67 # ImportFrom
236 self.assertIsInstance(mod.body[0], ast.ImportFrom)
533 ('Module', [('ImportFrom', (1, 0), 'sys', [('alias', 'v', None)], 0)]),
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_ast.py 67 # ImportFrom
236 self.assertIsInstance(mod.body[0], ast.ImportFrom)
533 ('Module', [('ImportFrom', (1, 0), 'sys', [('alias', 'v', None)], 0)]),
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_ast.py 67 # ImportFrom
236 self.assertIsInstance(mod.body[0], ast.ImportFrom)
533 ('Module', [('ImportFrom', (1, 0), 'sys', [('alias', 'v', None)], 0)]),

Completed in 1193 milliseconds

1 2