/development/vndk/tools/elfcheck/bpflatten/ |
D | main.go | 77 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/ |
D | denormalizer.go | 27 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)
|
D | source.go | 74 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)
|
D | helpers_test.go | 55 fmt.Sprintf("TRUNCATE TABLE %s", tableName),
|
D | denormalizer_test.go | 41 fmt.Sprintf("SELECT COUNT(*) FROM %s", tableName),
|
/development/tools/repo_diff/service/repodiff/utils/ |
D | time.go | 16 return fmt.Sprintf("%04d-%02d-%02d", year, month, day) 22 return fmt.Sprintf(
|
/development/tools/repo_diff/service/repodiff/persistence/filesystem/ |
D | csv.go | 20 fmt.Sprintf("Could not open %s", filePath), 35 fmt.Sprintf("Could not read line from file %s", filePath),
|
D | unix.go | 31 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/ |
D | http.go | 45 ElapsedTime: fmt.Sprintf("%s", time.Now().Sub(globalStartTime)), 65 fmt.Sprintf(":%d", servePort),
|
/development/tools/repo_diff/service/repodiff/controllers/ |
D | differential.go | 41 …fmt.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(
|
D | reporter.go | 62 return fmt.Sprintf(
|
/development/tools/repo_diff/service/repodiff/ |
D | repodiff.go | 66 fmt.Println(formattedError(err)) 79 return fmt.Sprintf("%+v", err)
|
D | Makefile | 69 go fmt .
|
/development/vndk/tools/elfcheck/elfcheck/ |
D | rewriter.py | 30 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/ |
D | csv.go | 45 copied[i] = fmt.Sprintf("%q", val)
|
D | mappers.go | 24 …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/ |
D | constants.go | 58 fmt.Sprintf("No matching enum for %s", displayStatus),
|
/development/tools/repo_diff/service/repodiff/persistence/sql/ |
D | sql.go | 117 fmt.Sprintf("TRUNCATE TABLE %s", tableName),
|
/development/vndk/tools/definition-tool/tools/ |
D | remove_dt_needed.py | 135 def parse_struct(cls, fmt, offset, error_msg): argument 137 return cls._make(struct.unpack_from(fmt, buf, offset))
|
/development/scripts/ |
D | cargo2android.py | 519 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/ |
D | vndk_definition_tool.py | 671 def parse_struct(cls, fmt, offset, error_msg): argument 673 return cls._make(struct.unpack_from(fmt, buf, offset))
|