Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 31) sorted by relevance

12

/build/make/tools/
Dsoong_to_convert.py64 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))
Dparsedeps.py24 self.count = 0
36 self.count = self.count + 1
109 print "Read %d dependencies. %d targets." % (deps.count, len(deps.lines))
Dfindleaves.py31 rootdepth = rootdir.count("/")
48 depth = 1 + root.count("/") - rootdepth
Dmk2bp_catalog.py190 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
Dproduct_debug.py61 href = ("../" * variables["FILE"].count("/")) + href + ".html"
Dfat16copy.py427 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/
DZipFile.cpp179 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/
Dclass.cs185 <?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 ?>
Dpackages.cs27 <?cs set:count = #1 ?>
34 <?cs set:count = count + #1 ?>
Dmacros_override.cs23 <?cs set:count = #1 ?>
33 <?cs set:count = count + #1 ?>
Dclasses.cs29 <?cs set:count = #1 ?>
41 <?cs set:count = count + #1 ?>
/build/soong/ui/terminal/
Dutil.go67 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/
Dlogs_test.go82 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/
Dkati.go34 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/
Dwriter.go42 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)
Dandroid.go43 offset: uint64(w.cw.count),
147 offset: uint64(w.cw.count),
190 fh.CompressedSize64 = uint64(w.compCount.count)
/build/make/tools/warn/
Dwarn_common.py234 count = 0
238 count += 1
239 if count > 9999:
243 if count < 100:
249 if count > 10:
/build/soong/cmd/multiproduct_kati/
Dmain.go498 count := each
500 count += 1
503 ret = append(ret, list[:count])
504 list = list[count:]
/build/soong/ui/build/
Dproc_sync_test.go57 func newCountWaiter(count int) (waiter *countWaiter) {
58 return &countWaiter{0, count}
/build/soong/finder/
Dfinder.go529 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/
Dchecktree23 spaces = ((s.count(" ") + 1) / 3) * 2
/build/soong/android/
Dvariable.go508 count := strings.Count(s, "%")
509 if count == 0 {
513 if count > 1 {
Dnamespace_test.go684 count := 0
686 count++
689 return count
/build/soong/android/soongconfig/
Dmodules.go578 count := strings.Count(s, "%")
579 if count == 0 {
583 if count > 1 {
/build/soong/finder/fs/
Dfs.go242 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)

12