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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/webkit/
array-iterate-backwards.js 38 function verify(nbytes) { function
49 shouldBeTrue('verify(32768)');
52 shouldBeTrue('verify(65536)');
55 shouldBeTrue('verify(120000)');
  /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/autotest/client/cros/video/
histogram_verifier.py 12 def verify(cr, histogram_name, histogram_bucket_value): function
59 verify(cr,histogram_name, histogram_bucket_value)
  /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();
  /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/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...]
  /external/mockito/src/org/mockito/verification/
VerificationMode.java 16 * verify(mock, times(5)).someMethod(&quot;was called five times&quot;);
18 * verify(mock, never()).someMethod(&quot;was never called&quot;);
20 * verify(mock, atLeastOnce()).someMethod(&quot;was called at least once&quot;);
22 * verify(mock, atLeast(2)).someMethod(&quot;was called at least twice&quot;);
24 * verify(mock, atMost(3)).someMethod(&quot;was called at most 3 times&quot;);
30 * See examples in javadoc for {@link Mockito#verify(Object, VerificationMode)}
34 void verify(VerificationData data); method in interface:VerificationMode
  /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/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
InvertVerifier.java 29 public boolean verify(int[] bitmap, int offset, int stride, int width, int height) { method in class:InvertVerifier
30 boolean success = mBitmapVerifier.verify(bitmap, offset, stride, width, height);

Completed in 306 milliseconds

1 2 3 4 5 6 7 8 91011>>