Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for splitPkg (0.55 sec)

  1. src/cmd/compile/internal/ir/func.go

    			'a' <= r && r <= 'z'
    	}
    	return false
    }
    
    func escapedImportPathOK(r rune) bool {
    	return modPathOK(r) || r == '+' || r == '/' || r == '%'
    }
    
    // splitPkg splits the full linker symbol name into package and local symbol
    // name.
    func splitPkg(name string) (pkgpath, sym string) {
    	// package-sym split is at first dot after last the / that comes before
    	// any characters illegal in a package path.
    
    	lastSlashIdx := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top