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

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/go/ast/
resolve.go 7 package ast
54 // An Importer resolves import paths to package Objects.
56 // indexed by package id (canonical import path).
60 // Importer should load the package data for the given path into
65 // NewPackage creates a new Package node from a set of File nodes. It resolves
68 // used to resolve identifiers not declared in any of the package files. Any
70 // belong to different packages, one package name is selected and files with
71 // different package names are reported and then ignored.
72 // The result is a package node and a scanner.ErrorList if there were errors.
74 func NewPackage(fset *token.FileSet, files map[string]*File, importer Importer, universe *Scope) (*Package, error)
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/
filter.go 5 package doc
99 func (p *Package) Filter(f Filter) {
104 p.Doc = "" // don't show top-level package doc
  /prebuilts/go/darwin-x86/src/go/types/
typestring.go 7 package types
14 // A Qualifier controls how named package-level objects are printed in
18 // package-level object O, and if the Qualifier returns a non-empty
22 // Using a nil Qualifier is equivalent to using (*Package).Path: the
25 type Qualifier func(*Package) string
29 func RelativeTo(pkg *Package) Qualifier {
33 return func(other *Package) string {
35 return "" // same package; unqualified
56 // This flag is exported in the x/tools/go/types package. We don't
63 // package-level objects, and may be nil
    [all...]
  /prebuilts/go/darwin-x86/src/hash/
hash.go 5 // Package hash provides interfaces for hash functions.
6 package hash
  /prebuilts/go/darwin-x86/src/html/template/
error.go 5 package template
82 // Package html/template statically examines each path through an
119 // Package html/template looks through template calls to compute the
142 // Package html/template does not support interpolation into regular
150 // Package html/template does not support actions following a
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/sysdll/
sysdll.go 5 // Package sysdll is an internal leaf package that records and reports
8 package sysdll
  /prebuilts/go/darwin-x86/src/net/http/httputil/
httputil.go 5 // Package httputil provides HTTP utility functions, complementing the
6 // more common ones in the net/http package.
7 package httputil
18 // NewChunkedReader is not needed by normal applications. The http package
29 // package adds chunking automatically if handlers don't set a
  /prebuilts/go/darwin-x86/src/strconv/
doc.go 5 // Package strconv implements conversions to and from string representations
57 package strconv
  /prebuilts/go/darwin-x86/src/testing/internal/testdeps/
deps.go 5 // Package testdeps provides access to dependencies needed by test execution.
7 // This package is imported by the generated main package, which passes
9 // without making those packages direct dependencies of package testing.
10 // Direct dependencies of package testing are harder to write tests for.
11 package testdeps
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
poly1305.go 6 Package poly1305 implements Poly1305 one-time message authentication code as specified in http://cr.yp.to/mac/poly1305-20050329.pdf.
16 However, in this package AES isn't used and the one-time key is specified
19 package poly1305 // import "golang.org/x/crypto/poly1305"
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/
idna.go 5 // Package idna implements IDNA2008 (Internationalized Domain Names for
8 package idna // import "golang.org/x/net/idna"
  /prebuilts/go/linux-x86/src/cmd/asm/internal/flags/
flags.go 5 // Package flags implements top-level flags and the usage message for the assembler.
6 package flags
  /prebuilts/go/linux-x86/src/cmd/go/
list.go 5 package main
22 The default output shows the package import path:
30 syntax of package template. The default output is equivalent to -f
33 type Package struct {
34 Dir string // directory containing package sources
35 ImportPath string // import path of package in dir
36 ImportComment string // path in import comment on package statement
37 Name string // package name
38 Doc string // package documentation string
40 Shlib string // the shared library that contains this package (only set when -linkshared
    [all...]
vet.go 5 package main
36 // Vet expects to be given a set of files all from the same package.
37 // Run once for package p and once for package p_test.
47 func runVetFiles(p *Package, files []string) {
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/svg/
svg.go 5 // Package svg provides tools related to handling of SVG files
6 package svg
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/tempfile/
tempfile.go 5 // Package tempfile provides tools to create and delete temporary files
6 package tempfile
  /prebuilts/go/linux-x86/src/crypto/des/
const.go 5 // Package des implements the Data Encryption Standard (DES) and the
8 package des
  /prebuilts/go/linux-x86/src/crypto/rc4/
rc4.go 5 // Package rc4 implements RC4 encryption, as defined in Bruce Schneier's
7 package rc4
  /prebuilts/go/linux-x86/src/crypto/subtle/
constant_time.go 5 // Package subtle implements functions that are often useful in cryptographic
7 package subtle
  /prebuilts/go/linux-x86/src/go/ast/
resolve.go 7 package ast
54 // An Importer resolves import paths to package Objects.
56 // indexed by package id (canonical import path).
60 // Importer should load the package data for the given path into
65 // NewPackage creates a new Package node from a set of File nodes. It resolves
68 // used to resolve identifiers not declared in any of the package files. Any
70 // belong to different packages, one package name is selected and files with
71 // different package names are reported and then ignored.
72 // The result is a package node and a scanner.ErrorList if there were errors.
74 func NewPackage(fset *token.FileSet, files map[string]*File, importer Importer, universe *Scope) (*Package, error)
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/
filter.go 5 package doc
99 func (p *Package) Filter(f Filter) {
104 p.Doc = "" // don't show top-level package doc
  /prebuilts/go/linux-x86/src/go/types/
typestring.go 7 package types
14 // A Qualifier controls how named package-level objects are printed in
18 // package-level object O, and if the Qualifier returns a non-empty
22 // Using a nil Qualifier is equivalent to using (*Package).Path: the
25 type Qualifier func(*Package) string
29 func RelativeTo(pkg *Package) Qualifier {
33 return func(other *Package) string {
35 return "" // same package; unqualified
56 // This flag is exported in the x/tools/go/types package. We don't
63 // package-level objects, and may be nil
    [all...]
  /prebuilts/go/linux-x86/src/hash/
hash.go 5 // Package hash provides interfaces for hash functions.
6 package hash
  /prebuilts/go/linux-x86/src/html/template/
error.go 5 package template
82 // Package html/template statically examines each path through an
119 // Package html/template looks through template calls to compute the
142 // Package html/template does not support interpolation into regular
150 // Package html/template does not support actions following a
  /prebuilts/go/linux-x86/src/internal/syscall/windows/sysdll/
sysdll.go 5 // Package sysdll is an internal leaf package that records and reports
8 package sysdll

Completed in 487 milliseconds

<<11121314151617181920>>