Home | History | Annotate | Download | only in android

Lines Matching defs:Ext

95 	// Ext returns the extension of the last element of the path
96 Ext() string
117 genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath
120 objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath
128 func GenPathWithExt(ctx ModuleContext, subdir string, p Path, ext string) ModuleGenPath {
130 return path.genPathWithExt(ctx, subdir, ext)
138 func ObjPathWithExt(ctx ModuleContext, subdir string, p Path, ext string) ModuleObjPath {
140 return path.objPathWithExt(ctx, subdir, ext)
307 func (p basePath) Ext() string {
308 return filepath.Ext(p.path)
558 func (p ModuleSrcPath) genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath {
559 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
562 func (p ModuleSrcPath) objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath {
563 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
596 var ext string
598 ext = ".lsdump.gz"
601 ext = ".bdump.gz"
610 archName + "/" + sourceOrBinaryDir + "/" + fileName + ext
642 func (p ModuleGenPath) genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath {
644 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
647 func (p ModuleGenPath) objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath {
648 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))