Searched refs:dst (Results 1 – 4 of 4) sorted by relevance
/util/pregenerate/ |
A D | build.go | 102 dst := p.Dst 104 dst = strings.TrimSuffix(path.Base(p.Src), ".pl") 106 dst = path.Join("gen", name, dst+fileSuffix) 108 addTask(list, &PerlasmTask{Src: p.Src, Dst: dst, Args: args}) 188 func buildVariablesTask(targets map[string]build.Target, dst, comment string, writeVariable func(b … argument 189 return NewSimpleTask(dst, func() ([]byte, error) { 257 func jsonTask(targets map[string]build.Target, dst string) Task { 258 return NewSimpleTask(dst, func() ([]byte, error) { 263 func soongTask(targets map[string]build.Target, dst string) Task { 264 return NewSimpleTask(dst, func() ([]byte, error) {
|
A D | pregenerate.go | 48 dst := t.Destination() 49 dstPath := filepath.FromSlash(dst) 66 fmt.Printf("Would write %d bytes to %q\n", len(expected), dst) 77 dst string member 136 dst := t.Destination() 138 if strings.Contains(dst, arg) { 180 fmt.Fprintf(os.Stderr, "Error in file %q: %s\n", err.dst, err.err)
|
A D | task.go | 44 func NewSimpleTask(dst string, runFunc func() ([]byte, error)) *SimpleTask { 45 return &SimpleTask{Dst: dst, RunFunc: runFunc}
|
/util/ |
A D | run_android_tests.go | 252 func copyFile(dst, src string) error { argument 264 dir := filepath.Dir(dst) 269 dstFile, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, srcInfo.Mode())
|
Completed in 5 milliseconds