/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/ |
D | LinearPartition.java | 58 int[][] table = buildPartitionTable(seq, k); in split() local 64 for (int i = table[n - 1][k] + 1; i < n + 1; i++) { in split() 69 n = table[n - 1][k]; in split() 89 float[][] table = new float[n][k]; in buildPartitionTable() local 93 table[i][0] = seq.get(i).getRuntimeHint() + ((i > 0) ? table[i - 1][0] : 0); in buildPartitionTable() 97 table[0][j] = seq.get(0).getRuntimeHint(); in buildPartitionTable() 102 table[i][j] = Integer.MAX_VALUE; in buildPartitionTable() 104 float cost = Math.max(table[x][j - 1], table[i][0] - table[x][0]); in buildPartitionTable() 105 if (table[i][j] > cost) { in buildPartitionTable() 106 table[i][j] = cost; in buildPartitionTable()
|
/test/suite_harness/common/host-side/tradefed/res/report/ |
D | compatibility_result.css | 25 table.title { 33 table.summary { 41 table.summary th { 47 table.summary td { 54 table.testsummary { 61 table.testsummary th { 67 table.testsummary td { 73 table.testdetails { 85 table.testdetails th { 92 table.testdetails td { [all …]
|
/test/vts/utils/python/performance/ |
D | benchmark_parser.py | 90 table = [[self._NAME, self._REAL_TIME, self._CPU_TIME, 93 table.append([record[x] for x in table[0]]) 94 return table
|
/test/vti/test_serving/gae/frontend/src/ |
D | styles.scss | 17 .statistics-table { 20 table { 29 .entity-table { 32 table {
|
/test/vti/dashboard/src/main/webapp/css/ |
D | show_table.css | 16 table { selector 21 .table-header-cell { 26 .table-header-cell:hover { 30 .table-header-content.table-header-legend { 33 .table-header-content {
|
D | show_graph.css | 59 .percentile-table { 65 .percentile-table td, th{
|
D | show_performance_digest.css | 49 .summary table { 57 .summary table td, th {
|
D | show_coverage.css | 20 .table {
|
D | datepicker.css | 15 .ui-datepicker table {
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_coverage.jsp | 104 prev.find('.table-container').empty(); 107 var container = self.parent().find('.table-container'); 129 var table = $('<table class="table"></table>'); 147 row.appendTo(table); 150 container.append(table); 185 <div class="table-container"></div>
|
D | show_table.jsp | 30 google.charts.load('current', {'packages':['table', 'corechart']}); 179 // table for grid data 186 var classNames = 'table-header-content'; 187 if (i == 0) classNames += ' table-header-legend'; 219 var table = new google.visualization.Table(document.getElementById('grid-table-div')); 221 headerRow : 'table-header', 222 headerCell : 'table-header-cell' 232 table.draw(data, options); 304 <div id='grid-table-div'></div>
|
D | show_green_suite_release.jsp | 44 <table class="bordered highlight"> 95 </table>
|
D | show_green_plan_release.jsp | 43 <table class="bordered highlight"> 98 </table>
|
D | show_graph.jsp | 29 google.charts.load('current', {packages:['corechart', 'table', 'line']}); 209 var tableHtml = '<table class="percentile-table"><thead><tr>'; 217 tableHtml += '</tbody></table>';
|
D | show_performance_digest.jsp | 82 <c:forEach items='${tables}' var='table' varStatus='loop'> 90 ${table}
|
/test/vts-testcase/kernel/bow/ |
D | BowTest.cpp | 132 DmTable table; in SetUp() local 133 table.AddTarget(std::make_unique<DmTargetBow>(0, loop_size_ / 512, in SetUp() 137 ASSERT_TRUE(dm.CreateDevice("bow1", table)); in SetUp() 192 std::vector<TableEntry> table; in GetTable() local 221 table.push_back(te); in GetTable() 223 return table; in GetTable() 358 std::vector<TableEntry> table = { in TEST_F() local 366 EXPECT_EQ(GetTable(), table); in TEST_F()
|
/test/vts/utils/app_engine/ |
D | bigtable_client.py | 36 def __init__(self, table, project_id): argument 42 self._table_name = table 55 self._table_instance = self._client_instance.table(
|
D | setup.txt | 1 Instructions for Setup for writing data to Big table:
|
/test/vti/test_serving/gae/frontend/src/app/menu/lab/ |
D | lab.component.scss | 1 .mat-table { 5 .entity-table {
|
/test/vts-testcase/kernel/encryption/ |
D | metadata_encryption_tests.cpp | 198 DmTable table; in CreateTestDevice() local 199 if (!table.AddTarget(std::move(target))) { in CreateTestDevice() 203 if (!table.valid()) { in CreateTestDevice() 207 if (!dm_->CreateDevice(kTestDmDeviceName, table, &dm_device_path_, in CreateTestDevice()
|
D | utils.cpp | 224 std::vector<DeviceMapper::TargetInfo> table; in GetRawBlockDevice() local 225 if (!dm.GetTableInfo(*name, &table)) { in GetRawBlockDevice() 229 if (table.size() != 1) { in GetRawBlockDevice() 236 const std::string target_type = dm.GetTargetType(table[0].spec); in GetRawBlockDevice()
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/ |
D | VtsMultiDeviceTestResultParser.java | 342 private static void printJsonTable(String name, JSONArray table) throws JSONException { in printJsonTable() argument 344 for (int rowIndex = 0; rowIndex < table.length(); rowIndex++) { in printJsonTable() 345 JSONArray row = table.getJSONArray(rowIndex); in printJsonTable() 359 for (int rowIndex = 0; rowIndex < table.length(); rowIndex++) { in printJsonTable() 360 JSONArray row = table.getJSONArray(rowIndex); in printJsonTable()
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowPerformanceDigestServlet.java | 230 String table = in doGetHandler() local 236 if (table != null) { in doGetHandler() 237 tables.add(table); in doGetHandler()
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/command/ |
D | CompatibilityConsole.java | 409 List<List<String>> table = new ArrayList<>(); in listResults() local 439 table.add( in listResults() 457 table.add(0, Arrays.asList("Session", "Pass", "Fail", "Modules Complete", in listResults() 459 tableFormatter.displayTable(table, new PrintWriter(System.out, true)); in listResults()
|
/test/vts-testcase/security/avb/ |
D | VtsSecurityAvbTest.cpp | 626 std::vector<android::dm::DeviceMapper::TargetInfo> table; in TEST() local 627 bool ok = device_mapper.GetTableInfo("system-verity", &table); in TEST() 629 ASSERT_EQ(table.size(), 1); in TEST() 630 const android::dm::DeviceMapper::TargetInfo &target = table[0]; in TEST()
|