Home
last modified time | relevance | path

Searched refs:fmt (Results 1 – 21 of 21) sorted by relevance

/development/vndk/tools/elfcheck/bpflatten/
Dmain.go77 flattened.Name = fmt.Sprintf("anonymous@<%d>", anonymousModuleCount)
98 fmt.Fprintln(os.Stderr, err)
100 return nil, fmt.Errorf("%d parsing errors", len(errs))
122 fmt.Fprintf(w, "declare -a MODULE_NAMES\n")
123 fmt.Fprintf(w, "declare -A MODULE_TYPE_DICT\n")
124 fmt.Fprintf(w, "declare -A MODULE_PROP_KEYS_DICT\n")
125 fmt.Fprintf(w, "declare -A MODULE_PROP_VALUES_DICT\n")
126 fmt.Fprintf(w, "\n")
134 fmt.Fprintf(w, "MODULE_TYPE_DICT[%q]=%q\n", name, quoteBashString(module.Type))
135 fmt.Fprintf(w, "MODULE_PROP_KEYS_DICT[%q]=%q\n", name,
[all …]
/development/tools/repo_diff/service/repodiff/repositories/
Ddenormalizer.go27 fmt.Sprintf(
35 fmt.Sprintf(
94 fmt.Sprintf(
102 fmt.Sprintf(
164 fmt.Sprintf(
218 fmt.Sprintf(
249 fmt.Sprintf(
278 fmt.Sprintf(
302 return fmt.Sprintf("Error inserting rows into %s", tableName)
Dsource.go74 return 0, errors.New(fmt.Sprintf("No ID found for %s %s", url, branch))
104 return "", "", errors.New(fmt.Sprintf("No matching records for ID %d", id))
135 return fmt.Sprintf("%s:%s", url, branch)
Dhelpers_test.go55 fmt.Sprintf("TRUNCATE TABLE %s", tableName),
Ddenormalizer_test.go41 fmt.Sprintf("SELECT COUNT(*) FROM %s", tableName),
/development/tools/repo_diff/service/repodiff/utils/
Dtime.go16 return fmt.Sprintf("%04d-%02d-%02d", year, month, day)
22 return fmt.Sprintf(
/development/tools/repo_diff/service/repodiff/persistence/filesystem/
Dcsv.go20 fmt.Sprintf("Could not open %s", filePath),
35 fmt.Sprintf("Could not read line from file %s", filePath),
Dunix.go31 return nil, errors.Wrap(errReading, fmt.Sprintf("Error reading %s file from filesystem", csvFile))
42 findProjectsCmd := fmt.Sprintf("find %s | grep %s", directory, filename)
/development/tools/repo_diff/service/repodiff/handlers/
Dhttp.go45 ElapsedTime: fmt.Sprintf("%s", time.Now().Sub(globalStartTime)),
65 fmt.Sprintf(":%d", servePort),
/development/tools/repo_diff/service/repodiff/controllers/
Ddifferential.go41fmt.Printf("Processing differential from %s to %s\n", target.Upstream.Branch, target.Downstream.Br…
63 fmt.Sprintf(
88 fmt.Printf("Finished '%s' in %s\n", fnLabel, time.Now().Sub(start))
95 fmt.Sprintf("rm -rf %s/*", config.OutputDirectory),
139 fmt.Printf("Executing command:\n\n%s\n\n", displayStr)
143 fmt.Sprintf(
Dreporter.go62 return fmt.Sprintf(
/development/tools/repo_diff/service/repodiff/
Drepodiff.go66 fmt.Println(formattedError(err))
79 return fmt.Sprintf("%+v", err)
DMakefile69 go fmt .
/development/vndk/tools/elfcheck/elfcheck/
Drewriter.py30 def _report_error(line, fmt, *args): argument
32 fmt = '{}: error: ' + fmt
33 print(fmt.format(line, *args), file=sys.stderr)
/development/tools/repo_diff/service/repodiff/mappers/
Dcsv.go45 copied[i] = fmt.Sprintf("%q", val)
Dmappers.go24 …return nil, errors.New(fmt.Sprintf("Got %d columns but expected %d", len(csvColumns), expectedDiff…
51 …return nil, errors.New(fmt.Sprintf("Got %d columns but expected %d", len(csvColumns), expectedComm…
68 return nil, errors.Wrap(err, fmt.Sprintf("Could not convert from %s", val))
/development/tools/repo_diff/service/repodiff/constants/
Dconstants.go58 fmt.Sprintf("No matching enum for %s", displayStatus),
/development/tools/repo_diff/service/repodiff/persistence/sql/
Dsql.go117 fmt.Sprintf("TRUNCATE TABLE %s", tableName),
/development/vndk/tools/definition-tool/tools/
Dremove_dt_needed.py135 def parse_struct(cls, fmt, offset, error_msg): argument
137 return cls._make(struct.unpack_from(fmt, buf, offset))
/development/scripts/
Dcargo2android.py519 def dump_list(fmt, values): argument
521 self.write(fmt % v)
759 def dump_android_property_list_items(self, fmt, values): argument
762 self.write(' ' + (fmt % escape_quotes(v)) + ',')
764 def dump_android_property_list(self, name, fmt, values): argument
769 self.dump_android_property_list_items(fmt, values)
773 (fmt % escape_quotes(values[0])) + '],')
/development/vndk/tools/definition-tool/
Dvndk_definition_tool.py671 def parse_struct(cls, fmt, offset, error_msg): argument
673 return cls._make(struct.unpack_from(fmt, buf, offset))