go/build.Context.isDir (method)

13 uses

	go/build (current package)
		build.go#L136: func (ctxt *Context) isDir(path string) bool {
		build.go#L256: 		if ctxt.isDir(dir) {
		build.go#L262: 		if ctxt.isDir(dir) {
		build.go#L589: 					if dir := ctxt.joinPath(ctxt.GOROOT, "src", sub); ctxt.isDir(dir) {
		build.go#L595: 					if dir := ctxt.joinPath(earlyRoot, "src", sub); ctxt.isDir(dir) {
		build.go#L640: 					if ctxt.isDir(vendor) {
		build.go#L642: 						if ctxt.isDir(dir) && hasGoFiles(ctxt, dir) {
		build.go#L683: 					isDir := ctxt.isDir(dir)
		build.go#L703: 			isDir := ctxt.isDir(dir)
		build.go#L719: 				isDir := ctxt.isDir(dir)
		build.go#L770: 	if IsLocalImport(path) && !ctxt.isDir(p.Dir) {
		build.go#L813: 			if ctxt.isDir(ctxt.joinPath(p.Dir, d.Name())) {
		build.go#L1100: 		if ctxt.isDir(dir) {