/build/make/tools/ |
D | soong_to_convert.py | 64 count = 0 70 count += 1 + count_deps(depsdb, dep, seen) 71 return count 111 for (count, module, module_type) in results: 112 print("{:>{}} {}".format(count, count_width, module))
|
D | parsedeps.py | 24 self.count = 0 36 self.count = self.count + 1 109 print "Read %d dependencies. %d targets." % (deps.count, len(deps.lines))
|
D | findleaves.py | 31 rootdepth = rootdir.count("/") 48 depth = 1 + root.count("/") - rootdepth
|
D | mk2bp_catalog.py | 190 self.count = 0 194 self.count += 1 195 return self.count-1 231 count = 0 237 count += 1 + count_deps(depsdb, dep, seen) 238 return count
|
D | product_debug.py | 61 href = ("../" * variables["FILE"].count("/")) + href + ".html"
|
D | fat16copy.py | 427 def read(self, count): argument 431 if self.idx + count > self.size: 432 count = self.size - self.idx 434 ret = f.read(count)
|
/build/make/tools/zipalign/ |
D | ZipFile.cpp | 179 int count = mEntries.size(); in discardEntries() local 181 while (--count >= 0) in discardEntries() 182 delete mEntries[count]; in discardEntries() 757 size_t count; in copyFpToFp() local 762 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp); in copyFpToFp() 765 if (count == 0) in copyFpToFp() 768 *pCRC32 = crc32(*pCRC32, tmpBuf, count); in copyFpToFp() 770 if (fwrite(tmpBuf, 1, count, dstFp) != count) { in copyFpToFp() 771 ALOGD("fwrite %d bytes failed\n", (int) count); in copyFpToFp() 811 size_t count; in copyPartialFpToFp() local [all …]
|
/build/make/tools/droiddoc/templates-ndk/ |
D | class.cs | 185 <?cs set:count = #1 ?> 206 <?cs set:count = count + #1 ?> 211 <?cs set:count = #1 ?> 225 <?cs set:count = count + #1 ?> 230 <?cs set:count = #1 ?> 240 <?cs set:count = count + #1 ?> 245 <?cs set:count = #1 ?> 263 <?cs set:count = count + #1 ?> 268 <?cs set:count = #1 ?> 283 <?cs set:count = count + #1 ?>
|
D | packages.cs | 27 <?cs set:count = #1 ?> 34 <?cs set:count = count + #1 ?>
|
D | macros_override.cs | 23 <?cs set:count = #1 ?> 33 <?cs set:count = count + #1 ?>
|
D | classes.cs | 29 <?cs set:count = #1 ?> 41 <?cs set:count = count + #1 ?>
|
/build/soong/ui/terminal/ |
D | util.go | 67 advance := func(write, read []byte, count int) ([]byte, []byte) { 68 copy(write, read[:count]) 69 return write[count:], read[count:]
|
/build/soong/ui/build/paths/ |
D | logs_test.go | 82 count := 0 86 if count != 10 { 87 t.Errorf("Expected 10 logs, got %d", count) 99 count++ 101 if count == 10 {
|
/build/soong/ui/status/ |
D | kati.go | 34 count int member 72 k.count += 1 78 if err == nil && idx+k.extra != k.count { 79 k.extra = k.count - idx
|
/build/soong/third_party/zip/ |
D | writer.go | 42 if w.cw.count != 0 { 45 w.cw.count = n 69 start := w.cw.count 124 end := w.cw.count 248 offset: uint64(w.cw.count), 358 fh.CompressedSize64 = uint64(w.compCount.count) 359 fh.UncompressedSize64 = uint64(w.rawCount.count) 401 count int64 member 406 w.count += int64(n)
|
D | android.go | 43 offset: uint64(w.cw.count), 147 offset: uint64(w.cw.count), 190 fh.CompressedSize64 = uint64(w.compCount.count)
|
/build/make/tools/warn/ |
D | warn_common.py | 234 count = 0 238 count += 1 239 if count > 9999: 243 if count < 100: 249 if count > 10:
|
/build/soong/cmd/multiproduct_kati/ |
D | main.go | 498 count := each 500 count += 1 503 ret = append(ret, list[:count]) 504 list = list[count:]
|
/build/soong/ui/build/ |
D | proc_sync_test.go | 57 func newCountWaiter(count int) (waiter *countWaiter) { 58 return &countWaiter{0, count}
|
/build/soong/finder/ |
D | finder.go | 529 count := 1 531 count += child.approximateNumDescendents 533 m.approximateNumDescendents = count 534 return count 710 count := 0 715 nodes[count] = dirFullInfo{ 722 count++
|
/build/make/core/ |
D | checktree | 23 spaces = ((s.count(" ") + 1) / 3) * 2
|
/build/soong/android/ |
D | variable.go | 508 count := strings.Count(s, "%") 509 if count == 0 { 513 if count > 1 {
|
D | namespace_test.go | 684 count := 0 686 count++ 689 return count
|
/build/soong/android/soongconfig/ |
D | modules.go | 578 count := strings.Count(s, "%") 579 if count == 0 { 583 if count > 1 {
|
/build/soong/finder/fs/ |
D | fs.go | 242 func (m *MockFs) followLinks(path string, followLastLink bool, count int) (canonicalPath string, er… 253 parentPath, err = m.followLinks(parentPath, true, count) 272 if count <= 0 { 290 return m.followLinks(target, followLastLink, count-1)
|