Searched defs:verify (Results 126 - 150 of 308) sorted by relevance

1234567891011>>

/external/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp96 void LiveIntervalUnion::verify(LiveVirtRegBitSet& VisitedVRegs) { function in class:LiveIntervalUnion
/external/ltp/testcases/kernel/syscalls/fstat/
H A Dfstat02.c50 static void verify(void) function
103 verify();
/external/ltp/testcases/kernel/syscalls/perf_event_open/
H A Dperf_event_open01.c78 static void verify(struct test_case_t *tc);
93 verify(&event_types[i]);
142 static void verify(struct test_case_t *tc) function
/external/ltp/testcases/kernel/syscalls/stat/
H A Dstat01.c50 static void verify(void) function
103 verify();
/external/mockito/src/main/java/org/mockito/internal/
H A DMockitoCore.java82 public <T> T verify(T mock, VerificationMode mode) { method in class:MockitoCore
127 noMoreInteractions().verify(data);
/external/mockito/src/main/java/org/mockito/internal/verification/
H A DVerificationOverTimeImpl.java14 * (before timeoutMillis has passed, measured from the call to verify()), and either returns immediately
25 * Create this verification mode, to be used to verify invocation ongoing data later.
27 * @param pollingPeriodMillis The frequency to poll delegate.verify(), to check whether the delegate has been satisfied
40 * Create this verification mode, to be used to verify invocation ongoing data later.
42 * @param pollingPeriodMillis The frequency to poll delegate.verify(), to check whether the delegate has been satisfied
72 public void verify(VerificationData data) { method in class:VerificationOverTimeImpl
78 delegate.verify(data);
/external/mockito/src/test/java/org/mockitousage/debugging/
H A DVerificationListenerCallBackTest.java42 verify(foo, never).doSomething("");
60 verify(foo, never).doSomething("");
75 verify(foo).doSomething("");
79 verify(listener, never()).onVerification(any(VerificationEvent.class));
93 verify(foo).doSomething("");
111 verify(foo, new RuntimeExceptionVerificationMode()).doSomething("");
140 verify(foo).doSomething("");
177 public void verify(VerificationData data) { method in class:VerificationListenerCallBackTest.RuntimeExceptionVerificationMode
/external/oauth/core/src/main/java/net/oauth/signature/
H A DRSA_SHA1.java51 * A service provider that wishes to verify signatures made by such a
65 * Alternatively, a service provider that wishes to verify signatures made
206 return verify(decodeBase64(signature),
227 private boolean verify(byte[] signature, byte[] message) method in class:RSA_SHA1
237 return verifier.verify(signature);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DOkHostnameVerifier.java62 public boolean verify(String host, SSLSession session) { method in class:OkHostnameVerifier
65 return verify(host, (X509Certificate) certificates[0]);
71 public boolean verify(String host, X509Certificate certificate) { method in class:OkHostnameVerifier
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
H A DHostnameVerifierTest.java41 @Test public void verify() throws Exception { method in class:HostnameVerifierTest
43 assertFalse(verifier.verify("localhost", session));
74 assertTrue(verifier.verify("foo.com", session));
75 assertFalse(verifier.verify("a.foo.com", session));
76 assertFalse(verifier.verify("bar.com", session));
107 assertTrue(verifier.verify("\u82b1\u5b50.co.jp", session));
108 assertFalse(verifier.verify("a.\u82b1\u5b50.co.jp", session));
140 assertFalse(verifier.verify("foo.com", session));
141 assertFalse(verifier.verify("a.foo.com", session));
142 assertTrue(verifier.verify("ba
[all...]
/external/selinux/libselinux/utils/
H A Dmatchpathcon.c71 int verify = 0; local
92 verify = 1;
159 if (verify) {
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/dummyExt/
H A DXLoggerTest.java61 void verify(LoggingEvent le, String expectedMsg) { method in class:XLoggerTest
67 verify(le, expectedMsg);
72 verify(le, expectedMsg);
87 verify((LoggingEvent) listAppender.list.get(0), "entry");
88 verify((LoggingEvent) listAppender.list.get(1), "entry with (1)");
89 verify((LoggingEvent) listAppender.list.get(2), "entry with (test)");
99 verify((LoggingEvent) listAppender.list.get(0), "exit");
100 verify((LoggingEvent) listAppender.list.get(1), "exit with (0)");
101 verify((LoggingEvent) listAppender.list.get(2), "exit with (false)");
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveIntervalUnion.cpp96 void LiveIntervalUnion::verify(LiveVirtRegBitSet& VisitedVRegs) { function in class:LiveIntervalUnion
/external/testng/src/test/java/test/
H A DParameterConstructorTest.java42 public void verify() { method in class:ParameterConstructorTest
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaContentVerifierProviderBuilder.java218 public boolean verify(byte[] expected) method in class:JcaContentVerifierProviderBuilder.SigVerifier
222 return stream.verify(expected);
243 public boolean verify(byte[] expected) method in class:JcaContentVerifierProviderBuilder.RawSigVerifier
247 return super.verify(expected);
252 // raw signature will not be freed if verify is not called on it.
255 rawSignature.verify(expected);
264 public boolean verify(byte[] digest, byte[] expected) method in class:JcaContentVerifierProviderBuilder.RawSigVerifier
270 return rawSignature.verify(expected);
279 // standard signature will not be freed if verify is not called on it.
282 stream.verify(expecte
341 boolean verify(byte[] expected) method in class:JcaContentVerifierProviderBuilder.SignatureOutputStream
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
H A DPKCS10CertificationRequest.java463 * verify the request using the BC provider.
465 public boolean verify() method in class:PKCS10CertificationRequest
469 return verify(BouncyCastleProvider.PROVIDER_NAME);
473 * verify the request using the passed in provider.
475 public boolean verify( method in class:PKCS10CertificationRequest
480 return verify(this.getPublicKey(provider), provider);
484 * verify the request using the passed in public key and the provider..
486 public boolean verify( method in class:PKCS10CertificationRequest
542 return sig.verify(sigBits.getOctets());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/netscape/
H A DNetscapeCertRequest.java194 public boolean verify(String challenge) throws NoSuchAlgorithmException, method in class:NetscapeCertRequest
211 return sig.verify(sigBits);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509V2AttributeCertificate.java170 public final void verify( method in class:X509V2AttributeCertificate
196 if (!signature.verify(this.getSignature()))
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_clock_test.cc234 bool verify(const SyncClock *other) const { function in struct:__tsan::SimpleSyncClock
291 bool verify(const ThreadClock *other) const { function in struct:__tsan::SimpleThreadClock
393 if (!thr0[tid]->verify(thr1[tid]) || !sync0[cid]->verify(sync1[cid])) {
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLX509CRL.java220 if (!sig.verify(getSignature())) {
221 throw new SignatureException("signature did not verify");
226 public void verify(PublicKey key) throws CRLException, NoSuchAlgorithmException, method in class:OpenSSLX509CRL
238 public void verify(PublicKey key, String sigProvider) throws CRLException, method in class:OpenSSLX509CRL
/external/e2fsprogs/lib/ext2fs/
H A Dtst_badblocks.c93 static void print_list(badblocks_list bb, int verify) argument
112 if (verify) {
/external/easymock/src/org/easymock/internal/
H A DIMocksControlState.java54 void verify(); method in interface:IMocksControlState
H A DMocksBehavior.java100 if (!behaviorLists.get(position).verify()) {
164 public void verify() { method in class:MocksBehavior
169 if (!behaviorList.verify()) {
181 errorMessage.append("\n Expectation failure on verify:");
/external/guava/guava-testlib/test/com/google/common/collect/testing/
H A DIteratorTesterTest.java188 @Override protected void verify(List<Integer> elements) { method in class:IteratorTesterTest.TesterThatCountsCalls
190 super.verify(elements);
205 final String message = "Important info about why verify failed";
213 @Override protected void verify(List<Integer> elements) {
223 assertNotNull("verify() should be able to cause test failure", actual);
/external/guava/guava-tests/test/com/google/common/collect/
H A DPeekingIteratorTest.java52 * later verify that {@link PeekingIterator#remove()} removes the
65 // make copy from master to verify later
70 @Override protected void verify(List<T> elements) { method in class:PeekingIteratorTest.PeekingIteratorTester
71 // verify same objects were removed from reference and target

Completed in 848 milliseconds

1234567891011>>