HomeSort by relevance Sort by last modified time
    Searched defs:violations (Results 1 - 6 of 6) sorted by null

  /cts/tests/tests/deviceconfig/src/android/deviceconfig/cts/
DeviceConfigApiPermissionTests.java 64 StringBuilder violations = new StringBuilder(); local
68 violations.append("DeviceConfig.setProperty() must not be accessible without "
75 violations.append("DeviceConfig.getProperty() must not be accessible without "
83 violations.append("DeviceConfig.addOnPropertiesChangedListener() must not be accessible"
88 // Bail if we found any violations
89 if (violations.length() > 0) {
90 fail(violations.toString());
102 StringBuilder violations = new StringBuilder(); local
109 violations.append("DeviceConfig.setProperty() must be accessible with"
115 violations.append("DeviceConfig.getProperty() must not be accessible without
141 StringBuilder violations = new StringBuilder(); local
181 StringBuilder violations = new StringBuilder(); local
226 StringBuilder violations = new StringBuilder(); local
    [all...]
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
CheckMojo.java 137 private boolean violations; field in class:CheckMojo
165 violations = false;
185 if (violations) {
199 violations = true;
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.hpp 218 std::vector<AllocationCallbackViolation> violations; member in struct:vk::AllocationCallbackValidationResults
  /cts/hostsidetests/appsecurity/test-apps/EncryptionApp/src/com/android/cts/encryptionapp/
EncryptionAppTest.java 413 final LinkedBlockingQueue<ViolationInfo> violations = new LinkedBlockingQueue<>(); local
414 StrictMode.setViolationLogger(violations::add);
420 consume.accept(violations.poll(5, TimeUnit.SECONDS));
  /cts/tests/tests/os/src/android/os/cts/
StrictModeTest.java 558 final BlockingQueue<Violation> violations = new ArrayBlockingQueue<>(1); local
562 violations.add(v);
567 final Violation v = violations.poll(5, TimeUnit.SECONDS);
573 final BlockingQueue<Violation> violations = new ArrayBlockingQueue<>(1); local
577 violations.add(v);
585 final Violation v = violations.poll(5, TimeUnit.SECONDS);
653 final LinkedBlockingQueue<ViolationInfo> violations = new LinkedBlockingQueue<>(); local
654 StrictMode.setViolationLogger(violations::add);
658 consume.accept(violations.poll(5, TimeUnit.SECONDS));
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
ReportTask.java 351 private boolean violations = false; field in class:ReportTask.CheckFormatterElement
397 violations = true;
408 if (violations && failOnViolation) {

Completed in 181 milliseconds