Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 34) sorted by relevance

12

/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DLinearPartition.java58 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/
Dcompatibility_result.css25 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/
Dbenchmark_parser.py90 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/
Dstyles.scss17 .statistics-table {
20 table {
29 .entity-table {
32 table {
/test/vti/dashboard/src/main/webapp/css/
Dshow_table.css16 table { selector
21 .table-header-cell {
26 .table-header-cell:hover {
30 .table-header-content.table-header-legend {
33 .table-header-content {
Dshow_graph.css59 .percentile-table {
65 .percentile-table td, th{
Dshow_performance_digest.css49 .summary table {
57 .summary table td, th {
Dshow_coverage.css20 .table {
Ddatepicker.css15 .ui-datepicker table {
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_coverage.jsp104 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>
Dshow_table.jsp30 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>
Dshow_green_suite_release.jsp44 <table class="bordered highlight">
95 </table>
Dshow_green_plan_release.jsp43 <table class="bordered highlight">
98 </table>
Dshow_graph.jsp29 google.charts.load('current', {packages:['corechart', 'table', 'line']});
209 var tableHtml = '<table class="percentile-table"><thead><tr>';
217 tableHtml += '</tbody></table>';
Dshow_performance_digest.jsp82 <c:forEach items='${tables}' var='table' varStatus='loop'>
90 ${table}
/test/vts-testcase/kernel/bow/
DBowTest.cpp132 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/
Dbigtable_client.py36 def __init__(self, table, project_id): argument
42 self._table_name = table
55 self._table_instance = self._client_instance.table(
Dsetup.txt1 Instructions for Setup for writing data to Big table:
/test/vti/test_serving/gae/frontend/src/app/menu/lab/
Dlab.component.scss1 .mat-table {
5 .entity-table {
/test/vts-testcase/kernel/encryption/
Dmetadata_encryption_tests.cpp198 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()
Dutils.cpp224 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/
DVtsMultiDeviceTestResultParser.java342 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/
DShowPerformanceDigestServlet.java230 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/
DCompatibilityConsole.java409 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/
DVtsSecurityAvbTest.cpp626 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()

12