type go/build.Context

27 uses

	go/build (current package)
		build.go#L34: type Context struct {
		build.go#L116: func (ctxt *Context) joinPath(elem ...string) string {
		build.go#L124: func (ctxt *Context) splitPathList(s string) []string {
		build.go#L132: func (ctxt *Context) isAbsPath(path string) bool {
		build.go#L140: func (ctxt *Context) isDir(path string) bool {
		build.go#L150: func (ctxt *Context) hasSubdir(root, dir string) (rel string, ok bool) {
		build.go#L190: func (ctxt *Context) readDir(path string) ([]fs.FileInfo, error) {
		build.go#L199: func (ctxt *Context) openFile(path string) (io.ReadCloser, error) {
		build.go#L214: func (ctxt *Context) isFile(path string) bool {
		build.go#L224: func (ctxt *Context) gopath() []string {
		build.go#L257: func (ctxt *Context) SrcDirs() []string {
		build.go#L277: var Default Context = defaultContext()
		build.go#L300: func defaultContext() Context {
		build.go#L301: 	var c Context
		build.go#L484: func (ctxt *Context) ImportDir(dir string, mode ImportMode) (*Package, error) {
		build.go#L536: func (ctxt *Context) Import(path string, srcDir string, mode ImportMode) (*Package, error) {
		build.go#L1076: func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode) error {
		build.go#L1232: func hasGoFiles(ctxt *Context, dir string) bool {
		build.go#L1354: func (ctxt *Context) MatchFile(dir, name string) (match bool, err error) {
		build.go#L1396: func (ctxt *Context) matchFile(dir, name string, allTags map[string]bool, binaryOnly *bool, fset *token.FileSet) (*fileInfo, error) {
		build.go#L1520: func (ctxt *Context) shouldBuild(content []byte, allTags map[string]bool) (shouldBuild, binaryOnly bool, err error) {
		build.go#L1638: func (ctxt *Context) saveCgo(filename string, di *Package, cg *ast.CommentGroup) error {
		build.go#L1746: func (ctxt *Context) makePathsAbsolute(args []string, srcDir string) {
		build.go#L1853: func (ctxt *Context) matchAuto(text string, allTags map[string]bool) bool {
		build.go#L1866: func (ctxt *Context) eval(x constraint.Expr, allTags map[string]bool) bool {
		build.go#L1881: func (ctxt *Context) matchTag(name string, allTags map[string]bool) bool {
		build.go#L1938: func (ctxt *Context) goodOSArchFile(name string, allTags map[string]bool) bool {