HomeSort by relevance Sort by last modified time
    Searched defs:Import (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/go/types/
resolver_test.go 7 import (
25 func (imp *resolveTestImporter) Import(string) (*Package, error) {
51 import "fmt"
52 import "math"
61 import "fmt"
71 import . "go/parser"
72 import "sync"
api_test.go 7 import (
342 {`package m0; import "os"; func _() { _ = os.Stdout }`, `os`, `<missing>`},
343 {`package m1; import p "os"; func _() { _ = p.Stdout }`, `p`, `<missing>`},
383 {`package p1; import ( "fmt"; m "math"; _ "os" ); var ( _ = fmt.Println; _ = m.Pi )`, []string{
726 func (m testImporter) Import(path string) (*Package, error) {
761 import "lib"
914 import "missing"
921 import "a"
1034 import "lib"
1035 import . "lib
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
resolver_test.go 7 import (
25 func (imp *resolveTestImporter) Import(string) (*Package, error) {
51 import "fmt"
52 import "math"
61 import "fmt"
71 import . "go/parser"
72 import "sync"
api_test.go 7 import (
342 {`package m0; import "os"; func _() { _ = os.Stdout }`, `os`, `<missing>`},
343 {`package m1; import p "os"; func _() { _ = p.Stdout }`, `p`, `<missing>`},
383 {`package p1; import ( "fmt"; m "math"; _ "os" ); var ( _ = fmt.Println; _ = m.Pi )`, []string{
726 func (m testImporter) Import(path string) (*Package, error) {
761 import "lib"
914 import "missing"
921 import "a"
1034 import "lib"
1035 import . "lib
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/
IPO.h 222 Import, ///< Import information from summary.
232 /// - Otherwise, if ImportSummary is non-null, this pass will import type
248 /// - Otherwise, if ImportSummary is non-null, this pass will import type
  /external/libchrome/crypto/
symmetric_key.cc 88 std::unique_ptr<SymmetricKey> SymmetricKey::Import(Algorithm algorithm,
symmetric_key_nss.cc 98 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
rsa_private_key.cc 39 // Helper for error handling during key import.
131 bool PrivateKeyInfoCodec::Import(const std::vector<uint8_t>& input) {
  /prebuilts/go/darwin-x86/src/go/importer/
importer.go 8 import (
17 // a given import path, or an error if no matching package is found.
28 panic("gc importer for custom import path lookup not yet implemented")
35 panic("gccgo importer for custom import path lookup not yet implemented")
62 func (m gcimports) Import(path string) (*types.Package, error) {
70 return gcimporter.Import(m, path, srcDir)
80 func (m *gccgoimports) Import(path string) (*types.Package, error) {
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter.go 5 // Package gcimporter implements Import for gc-generated object files.
6 package gcimporter // import "go/internal/gcimporter"
8 import (
25 // FindPkg returns the filename and unique package id for an import
26 // path based on package information provided by build.Import (using
44 bp, _ := build.Import(path, srcDir, build.FindOnly|build.AllowBinary)
57 // for completeness only - go/build.Import
82 // Import imports a gc-generated package given its import path and srcDir, adds
86 func Import(packages map[string]*types.Package, path, srcDir string) (pkg *types.Package, err error)
    [all...]
  /prebuilts/go/linux-x86/src/go/importer/
importer.go 8 import (
17 // a given import path, or an error if no matching package is found.
28 panic("gc importer for custom import path lookup not yet implemented")
35 panic("gccgo importer for custom import path lookup not yet implemented")
62 func (m gcimports) Import(path string) (*types.Package, error) {
70 return gcimporter.Import(m, path, srcDir)
80 func (m *gccgoimports) Import(path string) (*types.Package, error) {
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter.go 5 // Package gcimporter implements Import for gc-generated object files.
6 package gcimporter // import "go/internal/gcimporter"
8 import (
25 // FindPkg returns the filename and unique package id for an import
26 // path based on package information provided by build.Import (using
44 bp, _ := build.Import(path, srcDir, build.FindOnly|build.AllowBinary)
57 // for completeness only - go/build.Import
82 // Import imports a gc-generated package given its import path and srcDir, adds
86 func Import(packages map[string]*types.Package, path, srcDir string) (pkg *types.Package, err error)
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
import_statement.py 5 import itertools
6 import keyword
7 import symbol
8 import token
10 from py_utils.refactor.annotated_symbol import base_symbol
11 from py_utils.refactor import snippet
17 'Import',
99 class Import(base_symbol.AnnotatedSymbol):
100 """An import statement.
103 import a.b.c as
    [all...]
  /frameworks/native/libs/vr/libbufferhub/
ion_buffer.cpp 40 Import(handle, width, height, layer_count, stride, format, usage);
98 Import(handle, width, height, layer_count, stride, format, usage);
101 int IonBuffer::Import(buffer_handle_t handle, uint32_t width, uint32_t height,
106 "IonBuffer::Import: handle=%p width=%u height=%u layer_count=%u "
114 ALOGE("IonBuffer::Import: Failed to import buffer");
122 int IonBuffer::Import(const int* fd_array, int fd_count, const int* int_array,
128 "IonBuffer::Import: fd_count=%d int_count=%d width=%u height=%u "
134 ALOGE("IonBuffer::Import: invalid arguments.");
140 ALOGE("IonBuffer::Import: failed to create new native handle.")
    [all...]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 177 class Import(NodeBase):
178 """Represents an import statement."""
182 super(Import, self).__init__(**kwargs)
186 return super(Import, self).__eq__(other) and \
191 """Represents a list (i.e., sequence) of import statements."""
193 _list_item_type = Import
  /external/v8/src/js/
prologue.js 29 // to normal natives that import using utils.ImportFromExperimental.
35 // Import from other scripts. The actual importing happens in PostNatives and
36 // PostExperimental so that we can import from scripts executed later. However,
37 // that means that the import is not available until the very end. If the
38 // import needs to be available immediate, use ImportNow.
42 function Import(f) {
48 // Import immediately from exports of previous scripts. We need this for
56 // In normal natives, import from experimental natives.
227 utils.Import = UNDEFINED;
248 utils.Import = Import
    [all...]
  /build/blueprint/
package_ctx.go 17 import (
35 // import (
57 Import(pkgPath string)
92 // pkgPath argument should always be set to the full path used to import the
188 // Import enables access to the exported Ninja pools, rules, and variables
192 // init() function. The Go package path passed to Import must have already
193 // been imported into the Go package using a Go import statement. The
198 // import (
206 // pctx.Import("foo/bar")
220 // from Go's import declaration, which derives the local name from the packag
    [all...]
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 74 auto *Import = cast<ImportDecl>(D);
75 if (!Import->getImportedOwningModule())
76 DI.EmitImportDecl(*Import);

Completed in 646 milliseconds

1 2 3 4 5 6