HomeSort by relevance Sort by last modified time
    Searched refs:Package (Results 201 - 225 of 953) sorted by null

1 2 3 4 5 6 7 891011>>

  /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"
25 // FindPkg returns the filename and unique package id for an import
26 // path based on package information provided by build.Import (using
82 // Import imports a gc-generated package given its import path and srcDir, adds
83 // the corresponding package object to the packages map, and returns the object.
86 func Import(packages map[string]*types.Package, path, srcDir string) (pkg *types.Package, err error) {
96 // no need to re-import if the package was imported completely before
128 // Or, define a new standard go/types/gcexportdata package
    [all...]
bimport.go 5 package gcimporter
22 imports map[string]*types.Package
30 pkgList []*types.Package // in order of appearance
46 // BImportData imports a package from the serialized package data
47 // and returns the number of bytes consumed and a reference to the package.
50 func BImportData(fset *token.FileSet, imports map[string]*types.Package, data []byte, path string) (_ int, _ *types.Package, err error) {
54 // The package (filename) causing the problem is added to this
56 err = fmt.Errorf("cannot import, possibly version skew (%v) - reinstall package", e
    [all...]
  /prebuilts/go/darwin-x86/src/log/syslog/
doc.go 5 // Package syslog provides a simple interface to the system log
13 // The syslog package is frozen and is not accepting new features.
17 package syslog
19 // BUG(brainman): This package is not implemented on Windows. As the
20 // syslog package is frozen, Windows users are encouraged to
21 // use a package outside of the standard library. For background,
24 // BUG(akumar): This package is not implemented on Plan 9.
26 // BUG(minux): This package is not implemented on NaCl (Native Client).
  /prebuilts/go/darwin-x86/src/math/
const.go 5 // Package math provides basic constants and mathematical functions.
6 package math
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/curve25519/
doc.go 5 // Package curve25519 provides an implementation of scalar multiplication on
7 package curve25519 // import "golang.org/x/crypto/curve25519"
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
lif.go 7 // Package lif provides basic functions for the manipulation of
10 // The package supports Solaris 11 or above.
11 package lif
  /prebuilts/go/linux-x86/src/cmd/internal/browser/
browser.go 5 // Package browser provides utilities for interacting with users' browsers.
6 package browser
  /prebuilts/go/linux-x86/src/cmd/vet/internal/whitelist/
whitelist.go 5 // Package whitelist defines exceptions for the vet tool.
6 package whitelist
  /prebuilts/go/linux-x86/src/crypto/rand/
rand.go 5 // Package rand implements a cryptographically secure
7 package rand
  /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"
25 // FindPkg returns the filename and unique package id for an import
26 // path based on package information provided by build.Import (using
82 // Import imports a gc-generated package given its import path and srcDir, adds
83 // the corresponding package object to the packages map, and returns the object.
86 func Import(packages map[string]*types.Package, path, srcDir string) (pkg *types.Package, err error) {
96 // no need to re-import if the package was imported completely before
128 // Or, define a new standard go/types/gcexportdata package
    [all...]
bimport.go 5 package gcimporter
22 imports map[string]*types.Package
30 pkgList []*types.Package // in order of appearance
46 // BImportData imports a package from the serialized package data
47 // and returns the number of bytes consumed and a reference to the package.
50 func BImportData(fset *token.FileSet, imports map[string]*types.Package, data []byte, path string) (_ int, _ *types.Package, err error) {
54 // The package (filename) causing the problem is added to this
56 err = fmt.Errorf("cannot import, possibly version skew (%v) - reinstall package", e
    [all...]
  /prebuilts/go/linux-x86/src/log/syslog/
doc.go 5 // Package syslog provides a simple interface to the system log
13 // The syslog package is frozen and is not accepting new features.
17 package syslog
19 // BUG(brainman): This package is not implemented on Windows. As the
20 // syslog package is frozen, Windows users are encouraged to
21 // use a package outside of the standard library. For background,
24 // BUG(akumar): This package is not implemented on Plan 9.
26 // BUG(minux): This package is not implemented on NaCl (Native Client).
  /prebuilts/go/linux-x86/src/math/
const.go 5 // Package math provides basic constants and mathematical functions.
6 package math
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/curve25519/
doc.go 5 // Package curve25519 provides an implementation of scalar multiplication on
7 package curve25519 // import "golang.org/x/crypto/curve25519"
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
lif.go 7 // Package lif provides basic functions for the manipulation of
10 // The package supports Solaris 11 or above.
11 package lif
  /build/make/core/tasks/tools/
package-modules.mk 0 # Package up modules to a zip file.
62 @echo "Package $@"
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
Utility.h 21 This function returns a list of the package handles of the
23 pseudo-type EFI_HII_PACKAGE_TYPE_ALL will cause all package
34 @param PackageType Specifies the package type of the packages
67 Exports the contents of one or all package lists in the HII database into a buffer.
79 @retval EFI_SUCCESS Package exported.
94 Extract Hii package list GUID for given HII handle.
100 @param Guid Package list GUID
175 that is created when a package list registered by a module calling
204 Get the number of HII Package for a Package type.
    [all...]
  /external/guice/core/src/com/google/inject/matcher/
Matchers.java 17 package com.google.inject.matcher;
287 * Returns a matcher which matches classes in the given package. Packages are specific to their
288 * classloader, so classes with the same package name may not have the same package at runtime.
290 public static Matcher<Class> inPackage(final Package targetPackage) {
295 private final transient Package targetPackage;
298 public InPackage(Package targetPackage) {
299 this.targetPackage = checkNotNull(targetPackage, "package");
321 return inPackage(Package.getPackage(packageName));
328 * Returns a matcher which matches classes in the given package and its subpackages. Unlik
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
check.go 7 package types
52 decl *declInfo // package-level declaration whose init expression/function body is checked
63 // package information
67 pkg *Package
69 objMap map[Object]*declInfo // maps package-level object to declaration info
71 // information collected during type-checking of a set of package files
74 files []*ast.File // package files
75 unusedDotImports map[*Scope]map[*Package]token.Pos // positions of unused dot-imported packages for each file scope
92 // addUnusedImport adds the position of a dot-imported package
94 func (check *Checker) addUnusedDotImport(scope *Scope, pkg *Package, pos token.Pos)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
check.go 7 package types
52 decl *declInfo // package-level declaration whose init expression/function body is checked
63 // package information
67 pkg *Package
69 objMap map[Object]*declInfo // maps package-level object to declaration info
71 // information collected during type-checking of a set of package files
74 files []*ast.File // package files
75 unusedDotImports map[*Scope]map[*Package]token.Pos // positions of unused dot-imported packages for each file scope
92 // addUnusedImport adds the position of a dot-imported package
94 func (check *Checker) addUnusedDotImport(scope *Scope, pkg *Package, pos token.Pos)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
pkg.go 5 package main
29 // A Package describes a single package found in a directory.
30 type Package struct {
34 Dir string `json:",omitempty"` // directory containing package sources
35 ImportPath string `json:",omitempty"` // import path of package in dir
36 ImportComment string `json:",omitempty"` // path in import comment on package statement
37 Name string `json:",omitempty"` // package name
38 Doc string `json:",omitempty"` // package documentation string
40 Shlib string `json:",omitempty"` // the shared library that contains this package (only set when -linkshared
    [all...]
test.go 5 package main
50 followed by detailed output for each failed package.
52 'Go test' recompiles each package along with any files with names matching
57 Each listed package causes the execution of a separate test binary.
59 Test files that declare a package with the suffix "_test" will be compiled as a
60 separate package, and then linked and run with the main test binary.
65 By default, go test needs no arguments. It compiles and tests the package
68 The package is built in a temporary directory so it does not interfere with the
87 the package list (if present) must appear before this flag.
91 (where pkg is the last element of the package's import path)
    [all...]