Home
last modified time | relevance | path

Searched refs:newName (Results 1 – 6 of 6) sorted by relevance

/build/soong/cmd/zip2zip/
Dzip2zip.go109 newName string member
121 return jar.EntryNamesLess(matches[i].newName, matches[j].newName)
125 return matches[i].newName < matches[j].newName
142 var newName string
147 newName = file.Name
157 newName = filepath.Join(output, rel)
160 newName = output
163 includeMatches = append(includeMatches, pair{file, newName, false})
196 if prev, exists := seen[match.newName]; exists {
198 return fmt.Errorf("multiple entries for %q with different contents", match.newName)
[all …]
/build/blueprint/
Dname_interface.go65 Rename(oldName string, newName string, namespace Namespace) []error
126 func (s *SimpleNameInterface) Rename(oldName string, newName string, namespace Namespace) (errs []e…
127 existingGroup, exists := s.modules[newName]
133 oldName, newName, existingGroup.modules.firstModule().pos),
139 return []error{fmt.Errorf("module %q to renamed to %q doesn't exist", oldName, newName)}
141 s.modules[newName] = group
143 group.name = newName
/build/soong/ui/logger/
Dlogger.go81 newName := baseName + "." + strconv.Itoa(cur) + ext
83 if _, err := os.Lstat(newName); err == nil {
85 fileRotation(newName, baseName, ext, cur+1, max)
89 if err := os.Rename(from, newName); err != nil {
90 return fmt.Errorf("Failed to rotate %s to %s. %s", from, newName, err)
/build/soong/androidmk/androidmk/
Dandroidmk.go289 if newName := renameVariableWithInvalidCharacters(name); newName != "" {
290 …iable names cannot contain: %s. Renamed \"%s\" to \"%s\"", invalidVariableStrings(), name, newName)
291 file.variableRenames[name] = newName
292 name = newName
Dvalues.go235 if newName, ok := file.variableRenames[variableName]; ok {
236 variableName = newName
/build/soong/third_party/zip/
Dandroid.go25 func (w *Writer) CopyFrom(orig *File, newName string) error {
34 fileHeader.Name = newName