/test/vts/utils/python/coverage/ |
D | function_summary_test.py | 37 self.count = 5 57 self.arcs[0].count = self.count 62 self.assertEqual(self.count, arc.count) 63 self.assertEqual(self.count, arc.src_block.count) 64 self.assertEqual(self.count, arc.dst_block.count) 73 self.arcs[-1].count = self.count 78 self.assertEqual(self.count, arc.count) 79 self.assertEqual(self.count, arc.src_block.count) 80 self.assertEqual(self.count, arc.dst_block.count)
|
D | arc_summary.py | 53 self.count = 0 75 in_flow = sum(a.count for a in self.src_block.entry_arcs) 76 out_flow = sum(a.count for a in self.src_block.exit_arcs 78 self.count = in_flow - out_flow 83 out_flow = sum(a.count for a in self.dst_block.exit_arcs) 84 in_flow = sum(a.count for a in self.dst_block.entry_arcs 86 self.count = out_flow - in_flow
|
D | arc_summary_test.py | 58 arc.count = 1 67 arc.count = 1 78 self.assertEqual(arc.count, 1) 95 arc.count = 1 104 arc.count = 1 115 self.assertEqual(arc.count, 1)
|
D | function_summary.py | 86 block.count = sum(arc.count for arc in block.entry_arcs) 88 block.count = sum(arc.count for arc in block.exit_arcs)
|
D | gcda_parser.py | 163 count = self.ReadInt64() 164 arc.count = count
|
D | gcda_parser_test.py | 79 self.assertEqual(i, arc.count) 117 self.assertEqual(i, arc.count) 133 self.assertEqual(summary.functions[3].blocks[index].count, 139 self.assertEqual(summary.functions[4].blocks[index].count,
|
/test/vts/utils/python/common/ |
D | timeout_utils_test.py | 31 self.count = 0 37 self.count += 1; 40 self.assertEqual(self.count, 1) 47 self.count += 1; 50 self.assertEqual(self.count, 0) 57 self.count += 1; 64 self.assertEqual(self.count, 0) 70 self.count += 1; 74 self.assertEqual(self.count, 1)
|
/test/vti/test_serving/gae/frontend/src/app/menu/device/ |
D | device.component.ts | 89 if (this.count >= 0) { 98 } else if (this.count <= total) { 102 if (this.count !== total) { 103 if (length !== this.count) { 105 } else if (this.count > total) { 108 this.pageIndex = Math.floor(this.count / this.pageSize);
|
/test/vti/test_serving/gae/frontend/src/app/menu/build/ |
D | build.component.ts | 78 if (this.count >= 0) { 87 } else if (this.count <= total) { 91 if (this.count !== total) { 92 if (length !== this.count) { 94 } else if (this.count > total) { 97 this.pageIndex = Math.floor(this.count / this.pageSize);
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | BoxPlot.java | 48 private int count; field in BoxPlot 55 this.count = 0; in BoxPlot() 108 return this.count; in size() 135 count += stats.getCount(); in addSeriesData() 162 Integer count = null; in toJson() local 170 count = stat.getCount(); in toJson() 174 statSummary.addProperty(COUNT_KEY, count); in toJson()
|
/test/vti/test_serving/gae/frontend/src/app/menu/schedule/ |
D | schedule.component.ts | 92 if (this.count >= 0) { 101 } else if (this.count <= total) { 105 if (this.count !== total) { 106 if (length !== this.count) { 108 } else if (this.count > total) { 111 this.pageIndex = Math.floor(this.count / this.pageSize);
|
/test/vti/test_serving/gae/frontend/src/app/menu/job/ |
D | job.component.ts | 121 if (this.count >= 0) { 130 } else if (this.count <= total) { 134 if (this.count !== total) { 135 if (length !== this.count) { 137 } else if (this.count > total) { 140 this.pageIndex = Math.floor(this.count / this.pageSize);
|
/test/mlts/benchmark/src/com/android/nn/benchmark/evaluators/ |
D | MelCepLogF0.java | 94 int count = 0; in calculateLogF0Error() local 104 ++count; in calculateLogF0Error() 109 if (count > 0) { in calculateLogF0Error() 110 logF0Error = (float)Math.sqrt(squared_error / count); in calculateLogF0Error()
|
/test/vti/dashboard/src/main/webapp/js/ |
D | common.js | 95 var count = column.data.length; 101 .text(count) 114 if (count > maxLines) { 115 maxLines = count;
|
/test/vti/test_serving/gae/webapp/src/endpoint/ |
D | build_info.py | 89 def count(self, request): member in BuildInfoApi 93 count = self.Count(metaclass=model.BuildModel, filters=filters) 95 return model.CountResponseMessage(count=count)
|
D | host_info.py | 127 def count(self, request): member in HostInfoApi 132 count = self.Count(metaclass=model.DeviceModel, filters=filters) 134 return model.CountResponseMessage(count=count)
|
D | lab_info.py | 175 def count(self, request): member in LabInfoApi 180 count = self.Count(metaclass=model.LabModel, filters=filters) 182 return model.CountResponseMessage(count=count)
|
D | job_queue.py | 200 def count(self, request): member in JobQueueApi 204 count = self.Count(metaclass=model.JobModel, filters=filters) 206 return model.CountResponseMessage(count=count)
|
D | schedule_info.py | 131 def count(self, request): member in ScheduleInfoApi 136 count = self.Count(metaclass=model.ScheduleModel, filters=filters) 138 return model.CountResponseMessage(count=count)
|
/test/mlts/benchmark/src/com/android/nn/benchmark/app/ |
D | NNControls.java | 116 int count = 0; in btnRun() local 120 count++; in btnRun() 123 if (count == 0) { in btnRun() 127 int testList[] = new int[count]; in btnRun() 128 count = 0; in btnRun() 131 testList[count++] = i; in btnRun()
|
/test/vti/test_serving/gae/frontend/src/app/menu/ |
D | menu_base.ts | 26 count = -1; property in MenuBaseClass 45 this.count = response.count;
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_coverage.jsp | 131 var count = coverageVectors[j]; 133 if (typeof count == 'undefined' || count < 0) { 134 count = "--"; 135 } else if (count == 0) { 142 row.append('<td class="count">' + String(count) + '</td>'); 177 … <div class="right total-count">${coverageEntity.coveredCount}/${coverageEntity.totalCount}</div>
|
/test/app_compat/csuite/tools/script/ |
D | generate_module_test.py | 88 count = 0 92 count += 1 94 count -= 1 96 if count < 0: 99 self.assertEqual(count, 0,
|
/test/vts-testcase/kernel/encryption/ |
D | metadata_encryption_tests.cpp | 99 static bool ReadBlockDevice(const std::string &blk_device, size_t count, in ReadBlockDevice() argument 101 GTEST_LOG_(INFO) << "Reading " << count << " bytes from " << blk_device; in ReadBlockDevice() 103 aligned_alloc(kDirectIOAlignment, count), free); in ReadBlockDevice() 116 if (!android::base::ReadFully(fd, buffer, count)) { in ReadBlockDevice() 121 *data = std::vector<uint8_t>(buffer, buffer + count); in ReadBlockDevice()
|
D | utils.cpp | 387 for (size_t count = 0; count < (output_key_size / kAesBlockSize); count++) { in AesCmacKdfHelper() local 389 GetFixedInputString(count + 1, label, context, (output_key_size * 8), in AesCmacKdfHelper() 391 if (!AES_CMAC(output_data->data() + (kAesBlockSize * count), key.data(), in AesCmacKdfHelper()
|