Home | History | Annotate | Download | only in load

Lines Matching refs:paths

82 	Imports []string `json:",omitempty"` // import paths used by this package
176 // import paths. We do this resolution lazily both to avoid file system work
178 // can produce better error messages if it starts with the original paths.
180 // the vendored paths, so nothing should ever call p.vendored(p.Imports).
297 // An ImportStack is a stack of import paths.
391 // disallowVendor will reject direct use of paths containing /vendor/.
768 // Paths like x/vendor/y must be imported as y, never as x/vendor/y.
942 // Report an error when the old code.google.com/p/go.tools paths are used.
1191 // Check for case-insensitive collisions of import paths.
1208 // We accept leading . _ and / as likely in file system paths.
1283 // mkAbs rewrites list, which must be paths relative to p.Dir,
1284 // into a sorted list of absolute paths. It edits list in place but for
1295 // using absolute paths.
1301 // using absolute paths. "Possibly relevant" means that files are not excluded
1354 // not for paths found in import statements. In addition to ordinary import paths,
1355 // loadPackage accepts pseudo-paths beginning with cmd/ to denote commands
1356 // in the Go command directory, as well as paths to those directories.