func path/filepath.IsAbs

20 uses

	path/filepath (current package)
		path.go#L248: 	if IsAbs(path) {
		path_unix.go#L12: func IsAbs(path string) bool {
		symlink.go#L108: 		if isWindowsDot && !IsAbs(link) {

	go.uber.org/zap
		sink.go#L97: 	if filepath.IsAbs(rawURL) {

	go/build
		build.go#L136: 	return filepath.IsAbs(path)
		build.go#L1099: 		if filepath.IsAbs(srcDir) {
		build.go#L1750: 			if !filepath.IsAbs(arg) {
		build.go#L1758: 				if !filepath.IsAbs(arg[2:]) {

	go/scanner
		scanner.go#L285: 		if !filepath.IsAbs(filename) {

	golang.org/x/sys/execabs
		execabs.go#L59: 	if filepath.Base(file) == file && !filepath.IsAbs(path) {
		execabs.go#L66: 	if filepath.Base(name) == name && !filepath.IsAbs(cmd.Path) {

	golang.org/x/tools/go/packages
		golist.go#L493: 		if filepath.IsAbs(p.ImportPath) && p.Error != nil {
		golist.go#L632: 		if p.Dir != "" && !filepath.IsAbs(p.Dir) {
		golist.go#L636: 		if p.Export != "" && !filepath.IsAbs(p.Export) {
		golist.go#L686: 				if !filepath.IsAbs(filename) {
		golist.go#L807: 			if !filepath.IsAbs(file) {

	golang.org/x/tools/internal/gcimporter
		gcimporter.go#L118: 	case filepath.IsAbs(path):

	google.golang.org/grpc/internal/transport
		http2_client.go#L164: 			if filepath.IsAbs(address) {

	internal/execabs
		execabs.go#L39: 	if filepath.Base(file) == file && !filepath.IsAbs(path) {
		execabs.go#L46: 	if filepath.Base(name) == name && !filepath.IsAbs(cmd.Path) {