Home
last modified time | relevance | path

Searched refs:results (Results 1 – 23 of 23) sorted by relevance

/build/make/tools/
Dsoong_to_convert.py90 results = []
99 results.append((count_deps(reverse_deps, module, []), module + extra, module_types[module]))
101 return sorted(results, key=lambda result: (-result[0], result[1]))
103 def filter(results, module_type): argument
104 return [x for x in results if x[2] == module_type]
106 def display(results): argument
111 for (count, module, module_type) in results:
117 results = process(csv.reader(csvfile))
119 native_results = filter(results, "native")
120 java_results = filter(results, "java")
Dfindleaves.py121 results = list(set(perform_find(mindepth, prune, dirlist, filenames)))
122 results.sort()
123 for r in results:
Dmk2bp_catalog.py231 results = set()
234 if not dep in results:
235 results.add(dep)
238 return results
/build/make/tools/droiddoc/templates-pdk/assets/
Dandroid-developer-resource-browser.css3 #resource-browser-results .no-results {
8 #resource-browser-results .result {
15 #resource-browser-results .tagged-article {
19 #resource-browser-results .tagged-sample {
23 #resource-browser-results .tagged-tutorial {
27 #resource-browser-results .resource-meta {
Dandroid-developer-resource-browser.js131 var results = [];
148 results.push(resource);
152 results.push(resource);
156 if (results.length) {
158 for (i = 0; i < results.length; i++) {
159 var result = results[i];
Dandroid-developer-core.css574 #leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
594 .gsc-cursor-box .gsc-trailing-more-results a.gsc-trailing-more-results,
/build/bazel/
Dcommon.bazelrc75 build:results --remote_instance_name=projects/bazel-untrusted/instances/default_instance
76 build:results --project_id=bazel-untrusted
77 build:results --remote_timeout=600
78 build:results --google_default_credentials
79 build:results --test_summary=detailed
80 build:results --bes_backend=buildeventservice.googleapis.com
81 build:results --bes_results_url=https://source.cloud.google.com/results/invocations
82 build:results --show_progress_rate_limit=5
Dbazel.BUILD5 # (this is not an intentional feature but accidentally results from the fact
/build/make/tools/warn/
Dwarn.py40 results = []
42 common.classify_one_warning(line, link, results, args['project_patterns'],
49 return results
Dwarn_common.py125 def classify_one_warning(warning, link, results, project_patterns, argument
132 results.append([warning, link, idx, project_idx])
/build/soong/cuj/
Dcuj.go40 results TestResults member
84 t.results.err = err
120 t.results.metrics = met
228 if t.results.err != nil {
229 fmt.Printf("error running test %q: %s\n", t.name, t.results.err)
232 if t.results.metrics != nil {
233 cujMetrics.Add(t.name, t.results.metrics)
/build/blueprint/bootstrap/bpglob/
Dbpglob.go201 var results pathtools.MultipleGlobResults
207 results = append(results, result)
211 err := pathtools.WriteFileIfChanged(fileListFile, results.FileList(), 0666)
218 err = deptools.WriteDepFile(depFile, fileListFile, results.Deps())
/build/blueprint/
Dmodule_ctx_test.go71 func addVariantDepsResultMutator(variants []Variation, tag DependencyTag, from, to string, results
75 results[ctx.ModuleName()] = ret
384 results := make(map[string][]Module)
385 depsMutator := addVariantDepsResultMutator(nil, nil, "foo", "bar", results)
397 if g, w := results["foo"], []Module{bar.logicModule}; !reflect.DeepEqual(g, w) {
405 results := make(map[string][]Module)
406 depsMutator := addVariantDepsResultMutator(nil, nil, "foo", "bar", results)
417 if g, w := results["foo"], []Module{nil}; !reflect.DeepEqual(g, w) {
425 results := make(map[string][]Module)
426 depsMutator := addVariantDepsResultMutator(nil, nil, "foo", "baz", results)
[all …]
/build/blueprint/pathtools/
Dglob.go60 func (results MultipleGlobResults) FileList() []byte {
61 multipleMatches := make([][]string, len(results))
62 for i, result := range results {
73 func (results MultipleGlobResults) Deps() []string {
75 for _, result := range results {
/build/soong/finder/
Dfinder.go314 results := f.findInCacheMultithreaded(node, filter, f.numSearchingThreads)
318 for i := 0; i < len(results); i++ {
319 results[i] = strings.Replace(results[i], workingDir+"/", "", 1)
322 sort.Strings(results)
324 len(results), rootPath, time.Since(scanStart))
325 return results
563 results := []dirFullInfo{}
564 m.dumpInto("", &results)
565 return results
568 func (m *pathMap) dumpInto(path string, results *[]dirFullInfo) {
[all …]
Dfinder_test.go532 results := make(chan []string, numTests)
537 results <- foundPaths
543 foundPaths := <-results
/build/soong/scripts/
Dcheck_do_not_merge.sh19 DO NOT MERGE and RESTRICT AUTOMERGE very often lead to unintended results
/build/soong/finder/fs/
Dfs.go537 results := []DirEntryInfo{}
552 results = append(results, dirInfo)
556 results = append(results, info)
560 results = append(results, info)
562 return results, nil
/build/soong/java/
Djava_test.go265 results []Result
270 results: []Result{{library: "exports", processors: "-proc:none"}},
279 results: []Result{
291 results: []Result{
303 results: []Result{
315 results: []Result{
326 results: []Result{
347 for _, want := range test.results {
/build/soong/android/
Dbazel_handler.go109 results map[cqueryKey]string // Results of cquery requests after Bazel invocations member
276 if result, ok := context.results[key]; ok {
582 context.results = make(map[cqueryKey]string)
649 context.results[val] = string(cqueryResult)
/build/make/tools/fs_config/
DREADME.md15 results. The Target files are used by filesystem and adb tools to ensure that the file and directory
/build/soong/docs/
Dbest_practices.md152 Over-use of conditionals in the build files results in an untestable number
/build/make/
DChanges.md584 build. This will help ensure that build results are reproducible across