OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReplaceExtension
(Results
1 - 13
of
13
) sorted by null
/build/blueprint/pathtools/
lists.go
36
result[i] =
ReplaceExtension
(path, extension)
41
func
ReplaceExtension
(path string, extension string) string {
/build/soong/python/
proto.go
24
outDir := srcsZipFile.
ReplaceExtension
(ctx, "tmp")
25
depFile := srcsZipFile.
ReplaceExtension
(ctx, "srcszip.d")
/build/soong/cc/
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")
50
depFile := ccFile.
ReplaceExtension
(ctx, "d")
library.go
690
tocPath = pathtools.
ReplaceExtension
(tocPath, flags.Toolchain.ShlibSuffix()[1:]+".toc")
[
all
...]
/build/soong/java/
proto.go
24
outDir := srcJarFile.
ReplaceExtension
(ctx, "tmp")
25
depFile := srcJarFile.
ReplaceExtension
(ctx, "srcjar.d")
sdk.go
282
aidl := android.PathForOutput(ctx, "aidl", pathtools.
ReplaceExtension
(jar.Base(), "aidl"))
296
tempPath := combinedAidl.
ReplaceExtension
(ctx, "aidl.tmp")
dexpreopt_bootjars.go
213
oatLocation := pathtools.
ReplaceExtension
(dexpreopt.PathToLocation(outputPath, arch), "oat")
239
invocationPath := outputPath.
ReplaceExtension
(ctx, "invocation")
265
FlagWithOutput("--oat-file=", outputPath.
ReplaceExtension
(ctx, "oat")).
/build/soong/dexpreopt/
dexpreopt.go
208
pathtools.
ReplaceExtension
(filepath.Base(path), "odex"))
211
odexPath := module.BuildPath.InSameDir(ctx, "oat", arch.String(), pathtools.
ReplaceExtension
(base, "odex"))
217
vdexPath := odexPath.
ReplaceExtension
(ctx, "vdex")
218
vdexInstallPath := pathtools.
ReplaceExtension
(odexInstallPath, "vdex")
220
invocationPath := odexPath.
ReplaceExtension
(ctx, "invocation")
410
dmInstalledPath := pathtools.
ReplaceExtension
(module.DexLocation, "dm")
460
appImagePath := odexPath.
ReplaceExtension
(ctx, "art")
461
appImageInstallPath := pathtools.
ReplaceExtension
(odexInstallPath, "art")
/external/libchrome/base/files/
file_path.h
301
FilePath
ReplaceExtension
(StringPieceType extension) const WARN_UNUSED_RESULT;
file_path_unittest.cc
[
all
...]
file_path.cc
449
FilePath FilePath::
ReplaceExtension
(StringPieceType extension) const {
[
all
...]
/build/soong/android/
paths.go
833
//
ReplaceExtension
creates a new OutputPath with the extension replaced with ext.
834
func (p OutputPath)
ReplaceExtension
(ctx PathContext, ext string) OutputPath {
838
ret := PathForOutput(ctx, pathtools.
ReplaceExtension
(p.path, ext))
839
ret.rel = pathtools.
ReplaceExtension
(p.rel, ext)
944
return PathForModuleGen(ctx, subdir, pathtools.
ReplaceExtension
(p.path, ext))
948
return PathForModuleObj(ctx, subdir, pathtools.
ReplaceExtension
(p.path, ext))
1041
return PathForModuleGen(ctx, subdir, pathtools.
ReplaceExtension
(p.path, ext))
1045
return PathForModuleObj(ctx, subdir, pathtools.
ReplaceExtension
(p.path, ext))
[
all
...]
paths_test.go
1020
p2 := p.
ReplaceExtension
(ctx, "oat")
Completed in 756 milliseconds