Lines Matching defs:String
58 rootPrefix, relativeRoot, file string
62 dest, src string
67 func (l *fileArgs) String() string {
71 func (l *fileArgs) Set(s string) error {
88 out = flag.String("o", "", "file to write zip file to")
89 manifest = flag.String("m", "", "input jar manifest file name")
91 rootPrefix = flag.String("P", "", "path prefix within the zip at which to place files")
92 relativeRoot = flag.String("C", "", "path to use as relative root of files in next -f or -l argument")
99 cpuProfile = flag.String("cpuprofile", "", "write cpu profile to file")
100 traceFile = flag.String("trace", "", "write trace to file")
116 createdDirs map[string]bool
171 createdDirs: make(map[string]bool),
177 set := make(map[string]string)
186 srcs := strings.Split(string(list), "\n")
210 func fillPathPairs(prefix, rel, src string, set map[string]string, pathMappings *[]pathMapping) error {
235 func (z *zipWriter) write(out string, pathMappings []pathMapping, manifest string) error {
374 func (z *zipWriter) writeFile(dest, src string) error {
592 func (z *zipWriter) writeDirectory(dir string) error {
619 func (z *zipWriter) writeSymlink(rel, file string) error {