Searched refs:seen (Results 1 – 18 of 18) sorted by relevance
/build/kati/ |
D | query.go | 22 func showDeps(w io.Writer, n *DepNode, indent int, seen map[string]int) { 23 id, present := seen[n.Output] 25 id = len(seen) 26 seen[n.Output] = id 33 showDeps(w, d, indent+1, seen) 38 showDeps(w, d, indent+1, seen) 62 seen := make(map[string]int) 64 showDeps(w, n, 1, seen)
|
D | pathutil.go | 397 func (c *fsCacheT) find(w evalWriter, fc findCommand, path string, id fileid, depth int, seen map[f… 411 if p, ok := seen[ent.id]; ok { 416 seen[ent.id] = lpath 432 c.find(w, fc, filepathJoin(path, ent.name), ent.id, depth+1, seen) 492 seen := make(map[fileid]string) 503 fsCache.find(w, fc, dir, id, 1, seen) 840 seen := make(map[fileid]string) 842 fc.walk(w, dir, id, 1, seen) 846 func (fc findleavesCommand) walk(w evalWriter, dir string, id fileid, depth int, seen map[fileid]st… 873 if p, ok := seen[subdir.id]; ok { [all …]
|
D | depgraph.go | 43 seen := make(map[*DepNode]bool) 46 if seen[n] { 49 seen[n] = true
|
D | evalcmd.go | 71 seen := make(map[string]bool) 73 if !seen[input] { 74 seen[input] = true
|
D | ninja.go | 408 seen := make(map[string]bool) 411 if seen[t] { 415 seen[t] = true 420 if seen[t] { 424 seen[t] = true
|
D | command.cc | 103 unordered_set<StringPiece> seen; in Eval() local 106 if (seen.insert(ai.str()).second) in Eval()
|
D | INTERNALS.md | 180 doesn't. As we've seen in the previous subsection, sometimes kati cannot tell
|
/build/make/tools/ |
D | soong_to_convert.py | 59 def count_deps(depsdb, module, seen): argument 65 seen.append(module) 68 if dep in seen: 70 count += 1 + count_deps(depsdb, dep, seen)
|
D | findleaves.py | 29 seen = set() 62 if key in seen: 66 seen.add(key)
|
/build/soong/cmd/zipsync/ |
D | zipsync.go | 78 seen := make(map[string]string) 99 if prev, exists := seen[f.Name]; exists { 102 seen[f.Name] = input
|
/build/soong/android/ |
D | defaults.go | 134 seen := make(map[Defaults]bool) 139 if !seen[defaults] { 140 seen[defaults] = true
|
/build/make/core/ |
D | node_fns.mk | 224 $(if $($(1).$(_in).seen), \ 227 $(eval $(1).$(_in).seen := true) \
|
/build/soong/cmd/zip2zip/ |
D | zip2zip.go | 180 seen := make(map[string]*zip.File) 196 if prev, exists := seen[match.newName]; exists { 202 seen[match.newName] = match.File
|
/build/soong/cc/ |
D | test.go | 160 seen := make(map[string]string) 162 if duplicate, found = seen[v]; found { 165 seen[v] = v
|
/build/soong/python/ |
D | python.go | 604 seen := make(map[android.Module]bool) 611 if seen[child] { 614 seen[child] = true
|
/build/make/tools/fs_config/ |
D | fs_config_generator.py | 889 def _handle_dup_and_add(name, file_name, section_name, seen): argument 902 if section_name in seen: 903 dups = '"' + seen[section_name] + '" and ' 908 seen[section_name] = file_name
|
/build/soong/bpfix/bpfix/ |
D | bpfix.go | 766 seen := make(map[string]*parser.Property) 769 if prev, exists := seen[property.Name]; exists { 776 seen[property.Name] = property
|
/build/make/ |
D | Changes.md | 164 One common pattern (mostly outside AOSP) that we've seen hit these warning is 272 In every case we've seen, the fix is relatively simple: move the directory into
|