Searched refs:ack (Results 1 – 7 of 7) sorted by relevance
/test/vti/dashboard/src/main/webapp/js/ |
D | test_acknowledgments.js | 47 function removeAcknowledgment(ack, key) { argument 48 if (ack.hasClass('disabled')) { 51 ack.addClass('disabled'); 56 ack.removeClass('disabled'); 58 ack.slideUp(150, function() { 59 ack.remove(); 154 function saveCallback(ack, modal, key, test, branchSet, deviceSet, testCaseSet, note) { argument 184 ack.replaceWith(newAck.hide()); 187 ack.replaceWith(newAck); 207 function showModal(ack, key, test, branches, devices, testCases, note) { argument [all …]
|
/test/vti/dashboard/src/test/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntityTest.java | 65 TestAcknowledgmentEntity ack = in testEntitySerialization() local 67 Entity e = ack.toEntity(); in testEntitySerialization() 98 TestAcknowledgmentEntity ack = in testEntitySerializationWithNulls() local 100 Entity e = ack.toEntity(); in testEntitySerializationWithNulls() 132 TestAcknowledgmentEntity ack = in testJsonSerialization() local 135 e.setPropertiesFrom(ack.toEntity()); in testJsonSerialization() 153 TestAcknowledgmentEntity ack = in testJsonSerializationWithNulls() local 156 e.setPropertiesFrom(ack.toEntity()); in testJsonSerializationWithNulls()
|
/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsAlertJobServletTest.java | 91 TestAcknowledgmentEntity ack = in testSeparateAcknowledgedAll() local 93 acks.add(ack); in testSeparateAcknowledgedAll() 117 TestAcknowledgmentEntity ack = in testSeparateAcknowledgedSpecific() local 120 acks.add(ack); in testSeparateAcknowledgedSpecific() 143 TestAcknowledgmentEntity ack = in testSeparateAcknowledgedSpecificMismatch() local 146 acks.add(ack); in testSeparateAcknowledgedSpecificMismatch()
|
/test/vti/dashboard/src/main/java/com/android/vts/job/ |
D | VtsAlertJobServlet.java | 125 TestAcknowledgmentEntity ack = TestAcknowledgmentEntity.fromEntity(ackEntity); in getTestCaseAcknowledgments() local 126 if (ack == null) continue; in getTestCaseAcknowledgments() 127 acks.add(ack); in getTestCaseAcknowledgments() 181 for (TestAcknowledgmentEntity ack : acks) { in separateAcknowledged() 182 boolean allDevices = ack.getDevices() == null || ack.getDevices().size() == 0; in separateAcknowledged() 183 boolean allBranches = ack.getBranches() == null || ack.getBranches().size() == 0; in separateAcknowledged() 190 allDevices || ack.getDevices().contains(device.getBuildFlavor()); in separateAcknowledged() 192 allBranches || ack.getBranches().contains(device.getBranch()); in separateAcknowledged() 200 ack.getTestCaseNames() == null || ack.getTestCaseNames().size() == 0; in separateAcknowledged() 205 for (String testCase : ack.getTestCaseNames()) { in separateAcknowledged()
|
/test/vti/dashboard/src/main/java/com/android/vts/api/ |
D | TestAcknowledgmentRestServlet.java | 62 TestAcknowledgmentEntity ack = TestAcknowledgmentEntity.fromEntity(ackEntity); in doGet() local 63 if (ack == null) continue; in doGet() 64 testAcks.add(ack.toJson()); in doGet() 97 TestAcknowledgmentEntity ack = TestAcknowledgmentEntity.fromJson(currentUser, json); in doPost() local 100 Key key = datastore.put(ack.toEntity()); in doPost()
|
/test/vti/dashboard/src/main/webapp/css/ |
D | test_acknowledgments.css | 43 .ack-entry .col.card { 49 .ack-entry span.info-icon.right { 55 .ack-entry span.info-icon.right i { 61 .ack-entry .btn-container > .btn-flat { 66 .ack-entry .count-indicator {
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowTestAcknowledgmentServlet.java | 60 TestAcknowledgmentEntity ack = TestAcknowledgmentEntity.fromEntity(ackEntity); in doGetHandler() local 61 if (ack == null) continue; in doGetHandler() 62 testAcks.add(ack.toJson()); in doGetHandler()
|