Searched refs:pathtools (Results 1 – 25 of 42) sorted by relevance
12
/build/blueprint/ |
D | Blueprints | 5 "blueprint-pathtools", 58 name: "blueprint-pathtools", 59 pkgPath: "github.com/google/blueprint/pathtools", 64 "pathtools/lists.go", 65 "pathtools/fs.go", 66 "pathtools/glob.go", 69 "pathtools/fs_test.go", 70 "pathtools/glob_test.go", 106 "blueprint-pathtools", 152 deps: ["blueprint-pathtools"],
|
D | singleton_ctx.go | 149 Fs() pathtools.FileSystem 350 func (s *singletonContext) Fs() pathtools.FileSystem {
|
D | glob.go | 64 files, deps, err := c.fs.Glob(pattern, excludes, pathtools.FollowSymlinks)
|
/build/soong/cmd/zip2zip/ |
D | zip2zip.go | 143 if match, err := pathtools.Match(input, file.Name); err != nil { 149 if pathtools.IsGlob(input) { 205 if uncompressMatch, err := pathtools.Match(u, match.newName); err != nil { 277 if match, err := pathtools.Match(f, s); err != nil { 291 if pathtools.IsGlob(first) {
|
D | Android.bp | 19 "blueprint-pathtools",
|
/build/soong/cc/ |
D | proto.go | 38 ccFile = android.PathForModuleGen(ctx, "proto", pathtools.ReplaceExtension(rel, "pb"+srcSuffix)) 39 headerFile = android.PathForModuleGen(ctx, "proto", pathtools.ReplaceExtension(rel, "pb.h")) 44 optionsFile := pathtools.ReplaceExtension(protoFile.String(), "options")
|
D | Android.bp | 6 "blueprint-pathtools",
|
/build/soong/dexpreopt/dexpreopt_gen/ |
D | Android.bp | 8 "blueprint-pathtools",
|
/build/soong/java/ |
D | java_resources.go | 69 args = append(args, "-f", pathtools.MatchEscape(path)) 112 args = append(args, "-f", pathtools.MatchEscape(path))
|
D | Android.bp | 6 "blueprint-pathtools",
|
/build/soong/dexpreopt/ |
D | Android.bp | 13 "blueprint-pathtools",
|
D | dexpreopt.go | 265 pathtools.ReplaceExtension(filepath.Base(path), "odex")) 268 …odexPath := module.BuildPath.InSameDir(ctx, "oat", arch.String(), pathtools.ReplaceExtension(base,… 275 vdexInstallPath := pathtools.ReplaceExtension(odexInstallPath, "vdex") 444 dmInstalledPath := pathtools.ReplaceExtension(module.DexLocation, "dm") 495 appImageInstallPath := pathtools.ReplaceExtension(odexInstallPath, "art")
|
/build/soong/genrule/ |
D | Android.bp | 6 "blueprint-pathtools",
|
/build/soong/xml/ |
D | Android.bp | 6 "blueprint-pathtools",
|
/build/blueprint/pathtools/ |
D | lists.go | 15 package pathtools package
|
/build/soong/zip/ |
D | zip.go | 79 fs pathtools.FileSystem 86 fs: pathtools.OsFs, 191 followSymlinks pathtools.ShouldFollowSymlinks 195 fs pathtools.FileSystem 224 Filesystem pathtools.FileSystem 276 followSymlinks := pathtools.ShouldFollowSymlinks(!args.StoreSymlinks) 291 z.fs = pathtools.OsFs 401 err := pathtools.WriteFileIfChanged(args.OutputFilePath, buf.Bytes(), 0666) 724 func (z *ZipWriter) writeFileContents(header *zip.FileHeader, r pathtools.ReaderAtSeekerCloser) (er…
|
D | Android.bp | 22 "blueprint-pathtools",
|
/build/soong/android/ |
D | paths.go | 413 } else if pathtools.IsGlob(s) { 783 files, deps, err = ctx.Config().fs.Glob(path.String(), nil, pathtools.FollowSymlinks) 803 if pathtools.IsGlob(path.String()) { 833 if pathtools.IsGlob(path.String()) { 884 if pathtools.IsGlob(dir) { 982 ret := PathForOutput(ctx, pathtools.ReplaceExtension(p.path, ext)) 983 ret.rel = pathtools.ReplaceExtension(p.rel, ext) 1088 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) 1092 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) 1108 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) [all …]
|
D | makevars.go | 218 if err := pathtools.WriteFileIfChanged(outFile, outBytes, 0666); err != nil { 224 if err := pathtools.WriteFileIfChanged(lateOutFile, lateOutBytes, 0666); err != nil {
|
/build/blueprint/bootstrap/bpglob/ |
D | bpglob.go | 74 _, err := pathtools.GlobWithDepFile(flag.Arg(0), *out, *out+".d", excludes)
|
/build/soong/cmd/extract_jar_packages/ |
D | Android.bp | 19 "blueprint-pathtools",
|
/build/soong/cmd/zipsync/ |
D | Android.bp | 19 "blueprint-pathtools",
|
/build/soong/cmd/merge_zips/ |
D | Android.bp | 19 "blueprint-pathtools",
|
/build/blueprint/bootstrap/ |
D | glob.go | 140 err := pathtools.WriteFileIfChanged(absolutePath(fileListFile), []byte(fileList), 0666)
|
/build/soong/rust/ |
D | builder.go | 189 gcnoFile = android.PathForModuleOut(ctx, pathtools.ReplaceExtension(outputFile.Base(), "gcno")) 191 ctx, pathtools.ReplaceExtension(outputFile.Base(), "gcda")).String())
|
12