Searched refs:newName (Results 1 – 6 of 6) sorted by relevance
/build/soong/cmd/zip2zip/ |
D | zip2zip.go | 109 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/ |
D | name_interface.go | 65 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/ |
D | logger.go | 81 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/ |
D | androidmk.go | 289 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
|
D | values.go | 235 if newName, ok := file.variableRenames[variableName]; ok { 236 variableName = newName
|
/build/soong/third_party/zip/ |
D | android.go | 25 func (w *Writer) CopyFrom(orig *File, newName string) error { 34 fileHeader.Name = newName
|