Home
last modified time | relevance | path

Searched refs:branches (Results 1 – 12 of 12) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestAcknowledgmentEntity.java72 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/
Dtest_acknowledgments.js167 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/
DTestAcknowledgmentEntityTest.java58 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/
DVtsAlertJobServletTest.java108 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/
DVtsProfilingStatsJobServlet.java133 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/
DDatastoreHelper.java147 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/
Dshow_test_acknowledgments.jsp34 ${allTests}, ${branches}, ${devices}, ${testAcknowledgments}, ${readOnly});
Dshow_plan_release.jsp44 corpus: ${branches}
Dshow_profiling_overview.jsp41 corpus: ${branches}
Dshow_table.jsp43 corpus: ${branches}
Dshow_tree.jsp39 corpus: ${branches}
/test/app_compat/csuite/
Dpylintrc127 too-many-branches,