Home | History | Annotate | Download | only in android

Lines Matching defs:subdir

68 	subdir, inGoRoot := subdir()
69 deviceCwd := filepath.Join(deviceGoroot, subdir)
71 deviceCwd = filepath.Join(deviceGopath, subdir)
117 // subdir determines the package based on the current working directory,
119 func subdir() (pkgpath string, underGoRoot bool) {
125 subdir, err := filepath.Rel(root, cwd)
129 return subdir, true
136 subdir, err := filepath.Rel(p, cwd)
138 return subdir, false