/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntity.java | 72 private Set<String> branches; field in TestAcknowledgmentEntity 99 List<String> branches, in TestAcknowledgmentEntity() argument 105 if (branches != null) this.branches = new HashSet(branches); in TestAcknowledgmentEntity() 106 else this.branches = new HashSet<>(); in TestAcknowledgmentEntity() 136 List<String> branches, in TestAcknowledgmentEntity() argument 140 this(null, -1, test, userObj, branches, devices, testCaseNames, note); in TestAcknowledgmentEntity() 161 if (this.branches != null && this.branches.size() > 0) in toEntity() 162 ackEntity.setUnindexedProperty(BRANCHES, new ArrayList<>(this.branches)); in toEntity() 195 List<String> branches; in fromEntity() local 196 if (e.hasProperty(BRANCHES)) branches = (List<String>) e.getProperty(BRANCHES); in fromEntity() [all …]
|
/test/vti/dashboard/src/main/webapp/js/ |
D | test_acknowledgments.js | 167 var branches = Array.from(branchSet); 168 branches.sort(); 176 'branches' : branches, property 182 var newAck = createAcknowledgment(newKey, test, branches, devices, testCaseNames, note); 207 function showModal(ack, key, test, branches, devices, testCases, note) { argument 225 addChips(branchSet, branchChips, branches, allBranchesLabel); 326 function createAcknowledgment(key, test, branches, devices, testCases, note) { argument 334 showModal(wrapper, key, test, branches, devices, testCases, note); 337 if (!!branches && branches.length == 1) { 338 branchesSummary = branches[0]; [all …]
|
/test/vti/dashboard/src/test/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntityTest.java | 58 List<String> branches = new ArrayList<>(); in testEntitySerialization() local 59 branches.add("branch1"); in testEntitySerialization() 66 new TestAcknowledgmentEntity(key, user, branches, devices, testCaseNames, note); in testEntitySerialization() 74 .containsAll(branches)); in testEntitySerialization() 87 Assert.assertTrue(deserialized.getBranches().containsAll(branches)); in testEntitySerialization() 125 List<String> branches = new ArrayList<>(); in testJsonSerialization() local 126 branches.add("branch1"); in testJsonSerialization() 133 new TestAcknowledgmentEntity(key, user, branches, devices, testCaseNames, note); in testJsonSerialization() 142 Assert.assertTrue(deserialized.getBranches().containsAll(branches)); in testJsonSerialization()
|
/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsAlertJobServletTest.java | 108 List<String> branches = new ArrayList<>(); in testSeparateAcknowledgedSpecific() local 109 branches.add("branch1"); in testSeparateAcknowledgedSpecific() 119 testKey, user, branches, devices, testCaseNames, null); in testSeparateAcknowledgedSpecific() 134 List<String> branches = new ArrayList<>(); in testSeparateAcknowledgedSpecificMismatch() local 135 branches.add("branch1"); in testSeparateAcknowledgedSpecificMismatch() 145 testKey, user, branches, devices, testCaseNames, null); in testSeparateAcknowledgedSpecificMismatch()
|
/test/vti/dashboard/src/main/java/com/android/vts/job/ |
D | VtsProfilingStatsJobServlet.java | 133 Set<String> branches = new HashSet<>(); in updateSummaries() local 136 branches.add(ProfilingPointSummaryEntity.ALL); in updateSummaries() 140 branches.add(d.getBranch()); in updateSummaries() 145 for (String branch : branches) { in updateSummaries() 173 for (String branch : branches) { in updateSummaries()
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | DatastoreHelper.java | 147 List<String> branches = new ArrayList<>(); in getAllBranches() local 149 branches.add(e.getKey().getName()); in getAllBranches() 151 return branches; in getAllBranches()
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_test_acknowledgments.jsp | 34 ${allTests}, ${branches}, ${devices}, ${testAcknowledgments}, ${readOnly});
|
D | show_plan_release.jsp | 44 corpus: ${branches}
|
D | show_profiling_overview.jsp | 41 corpus: ${branches}
|
D | show_table.jsp | 43 corpus: ${branches}
|
D | show_tree.jsp | 39 corpus: ${branches}
|
/test/app_compat/csuite/ |
D | pylintrc | 127 too-many-branches,
|