HomeSort by relevance Sort by last modified time
    Searched defs:verify (Results 1 - 25 of 1190) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/interfaces/broadcastradio/common/tests/
ProgramIdentifier_test.cpp 27 auto verify = [](std::string name, uint64_t nameId) { local
32 verify("", 0);
33 verify("Abc", 0x434241);
34 verify("Some Station 1", 0x54415453454d4f53);
35 verify("Station1", 0x314e4f4954415453);
36 verify("!@#$%^&*()_+", 0);
37 verify("-=[]{};':\"0", 0x30);
  /external/testng/src/test/java/test/tmp/verify/
VerifyTest.java 1 package test.tmp.verify;
17 @Verify
18 public void verify() { method in class:VerifyTest
20 // System.out.println("verify()");
Verify.java 1 package test.tmp.verify;
8 public @interface Verify {
  /external/testng/src/test/java/test/verify/
VerifyNoListenersSampleTest.java 1 package test.verify;
10 @Verify
16 @Verify
24 public void verify() { method in class:VerifyNoListenersSampleTest
VerifySampleTest.java 1 package test.verify;
7 * Illustrate the implementation of a @Verify/@Verifier test.
10 * annotated with @Verify will be followed with a call to the @Verifier
16 @Verify
22 @Verify
30 public void verify() { method in class:VerifySampleTest
Verifier.java 1 package test.verify;
Verify.java 1 package test.verify;
11 public @interface Verify {
Verify3Base.java 1 package test.verify;
Verify3SampleTest.java 1 package test.verify;
Verify2SampleTest.java 1 package test.verify;
9 * Illustrate the implementation of a @Verify/@Verifier test.
12 * annotated with @Verify will be followed with a call to the @Verifier
20 @Verify
26 @Verify
34 public void verify() { method in class:Verify2SampleTest
  /external/autotest/client/cros/image_comparison/
verifier.py 49 def verify(self, golden_image_paths, test_image_paths): member in class:Verifier
  /external/testng/src/test/java/test/classgroup/
Second.java 9 public void verify() { method in class:Second
  /external/testng/src/test/java/test/configuration/
VerifySuiteTest.java 11 public void verify() { method in class:VerifySuiteTest
  /external/testng/src/test/java/test/hook/
HookSuccessWithListenerTest.java 11 public void verify() { method in class:HookSuccessWithListenerTest
  /external/testng/src/test/java/test/sample/
PartialGroupVerification.java 14 public void verify() { method in class:PartialGroupVerification
  /external/testng/src/test/java/test/uniquesuite/
TestAfter1.java 8 public void verify() { method in class:TestAfter1
TestAfter2.java 8 public void verify() { method in class:TestAfter2
  /system/core/gatekeeperd/
SoftGateKeeperDevice.cpp 71 int SoftGateKeeperDevice::verify(uint32_t uid, function in class:android::SoftGateKeeperDevice
91 impl_->Verify(request, &response);
  /external/testng/src/test/java/test/methods/
VerifyMethod1.java 20 public void verify() { method in class:VerifyMethod1
21 SampleMethod1.verify();
  /device/generic/goldfish/gatekeeper/
SoftGateKeeperDevice.cpp 76 int SoftGateKeeperDevice::verify(uint32_t uid, function in class:goldfish::SoftGateKeeperDevice
96 impl_->Verify(request, &response);
  /device/google/cuttlefish_common/guest/hals/gatekeeper/
SoftGateKeeperDevice.cpp 76 int SoftGateKeeperDevice::verify(uint32_t uid, function in class:cuttlefish::SoftGateKeeperDevice
96 impl_->Verify(request, &response);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
RawContentVerifier.java 10 * Verify that the expected signature value was derived from the passed in digest.
16 boolean verify(byte[] digest, byte[] expected); method in interface:RawContentVerifier
  /external/mockito/src/main/java/org/mockito/
InOrder.java 16 * inOrder.verify(firstMock).add("was called first");
17 * inOrder.verify(secondMock).add("was called second");
29 * Alias to <code>inOrder.verify(mock, times(1))</code>
35 * inOrder.verify(firstMock).someMethod("was called first");
36 * inOrder.verify(secondMock).someMethod("was called second");
45 <T> T verify(T mock); method in interface:InOrder
53 * inOrder.verify(firstMock, times(2)).someMethod("was called first two times");
54 * inOrder.verify(secondMock, atLeastOnce()).someMethod("was called second at least once");
64 <T> T verify(T mock, VerificationMode mode); method in interface:InOrder
79 * inOrder.verify(mock).bar(); //2
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
HostnameVerifier.java 48 * Verify that the host name is an acceptable match with
55 public boolean verify(String hostname, SSLSession session); method in interface:HostnameVerifier
  /cts/tools/vm-tests-tf/src/dot/junit/verify/a1/
Test_a1.java 17 package dot.junit.verify.a1;
31 Class.forName("dot.junit.verify.a1.d.T_a1_1");

Completed in 1027 milliseconds

1 2 3 4 5 6 7 8 91011>>