func path/filepath.IsAbs

21 uses

	path/filepath (current package)
		path.go#L152: func IsAbs(path string) bool {
		path.go#L166: 	if IsAbs(path) {
		symlink.go#L109: 		if isWindowsDot && !IsAbs(link) {

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

	go/build
		build.go#L139: 	return filepath.IsAbs(path)
		build.go#L1167: 		if filepath.IsAbs(srcDir) {
		build.go#L1826: 			if !filepath.IsAbs(arg) {
		build.go#L1834: 				if !filepath.IsAbs(arg[2:]) {

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

	golang.org/x/tools/go/packages
		golist.go#L229: 	if filepath.IsAbs(path) {
		golist.go#L436: 		if filepath.IsAbs(p.ImportPath) && p.Error != nil {
		golist.go#L582: 		if p.Dir != "" && !filepath.IsAbs(p.Dir) {
		golist.go#L586: 		if p.Export != "" && !filepath.IsAbs(p.Export) {
		golist.go#L632: 				if !filepath.IsAbs(filename) {
		golist.go#L715: 	if !filepath.IsAbs(dir) {
		golist.go#L752: 			if !filepath.IsAbs(file) {

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

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

	os/exec
		exec.go#L451: 	} else if runtime.GOOS == "windows" && filepath.IsAbs(name) {
		lp_unix.go#L72: 			if !filepath.IsAbs(path) {

	testing
		testing.go#L1367: 		if !filepath.IsAbs(dir) {