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

1234567891011>>

/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.java46 verify(foo, never).doSomething("");
64 verify(foo, never).doSomething("");
79 verify(foo).doSomething("");
83 verify(listener, never()).onVerification(any(VerificationEvent.class));
97 verify(foo).doSomething("");
115 verify(foo, new RuntimeExceptionVerificationMode()).doSomething("");
144 verify(foo).doSomething("");
181 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.java61 public boolean verify(String host, SSLSession session) { method in class:OkHostnameVerifier
64 return verify(host, (X509Certificate) certificates[0]);
70 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));
75 // assertTrue(verifier.verify("foo.com", session));
76 assertFalse(verifier.verify("foo.com", session));
77 assertFalse(verifier.verify("a.foo.com", session));
78 assertFalse(verifier.verify("bar.com", session));
110 // assertTrue(verifier.verify("\u82b1\u5b50.co.jp", session));
111 assertFalse(verifier.verify("\u82b1\u5b50.co.jp", session));
112 assertFalse(verifier.verify("a.\u82b1\u5b50.co.jp", session));
144 assertFalse(verifier.verify("fo
[all...]
/external/selinux/gui/
H A DsemanagePage.py108 def verify(self, message, title=""): member in class:semanagePage
130 if (it is not None) and (self.verify(_("Are you sure you want to delete %s '%s'?" % (self.description, store.get_value(it, 0))), _("Delete %s" % self.description)) == Gtk.ResponseType.YES):
/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/autotest/client/common_lib/hosts/
H A Drepair.py8 The framework provides implementation code in support of `Host.verify()`
41 Instances of this exception can be raised when a `verify()`
130 Both repair and verify operations have the notion of dependencies
196 when `verify()` originally fails. The additional data gathered
280 that all dependencies run and pass before invoking the `verify()`
284 `verify()`. Subsequent calls return the cached result, without
289 * `verify()`: This is the method to perform the actual
312 super(Verifier, self).__init__(tag, 'verify', dependencies)
332 check dependencies, and if they pass, run `verify()`. Log
334 call `verify()`, lo
360 def verify(self, host): member in class:Verifier
571 def verify(self, host): member in class:_RootVerifier
748 def verify(self, host, silent=False): member in class:RepairStrategy
[all...]
/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.java460 * verify the request using the BC provider.
462 public boolean verify() method in class:PKCS10CertificationRequest
466 return verify(BouncyCastleProvider.PROVIDER_NAME);
470 * verify the request using the passed in provider.
472 public boolean verify( method in class:PKCS10CertificationRequest
477 return verify(this.getPublicKey(provider), provider);
481 * verify the request using the passed in public key and the provider..
483 public boolean verify( method in class:PKCS10CertificationRequest
539 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/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
H A DTreeRangeMapTest.java242 verify(model, test);
255 verify(model, test);
272 verify(model, test);
293 verify(model, test);
308 verify(model, test);
325 verify(model, test);
449 private void verify(Map<Integer, Integer> model, RangeMap<Integer, Integer> test) { method in class:TreeRangeMapTest
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DIntlTestDecimalFormatAPIC.java292 verify(message, resultStr, result[i++]);
300 verify(message, resultStr, result[i++]);
536 public void verify(String message, String got, double expected) { method in class:IntlTestDecimalFormatAPIC
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDecimalFormatAPIC.java289 verify(message, resultStr, result[i++]);
297 verify(message, resultStr, result[i++]);
533 public void verify(String message, String got, double expected) { method in class:IntlTestDecimalFormatAPIC
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
H A DDuplicateFrameEliminatorTest.java56 public void verify() { method in class:DuplicateFrameEliminatorTest

Completed in 941 milliseconds

1234567891011>>