HomeSort by relevance Sort by last modified time
    Searched full:unverified (Results 1 - 25 of 38) sorted by null

1 2

  /external/mockito/src/org/mockito/internal/verification/
NoMoreInteractions.java 22 Invocation unverified = new InvocationsFinder().findFirstUnverified(data.getAllInvocations()); local
23 if (unverified != null) {
24 new Reporter().noMoreInteractionsWanted(unverified, (List) data.getAllInvocations());
30 Invocation unverified = new InvocationsFinder().findFirstUnverifiedInOrder(data.getOrderingContext(), invocations); local
32 if (unverified != null) {
33 new Reporter().noMoreInteractionsWantedInOrder(unverified);
Only.java 29 Invocation unverified = finder.findFirstUnverified(invocations); local
30 reporter.noMoreInteractionsWanted(unverified, (List) invocations);
  /external/mockito/src/org/mockito/internal/invocation/
InvocationsFinder.java 24 List<Invocation> unverified = removeVerifiedInOrder(invocations, orderingContext); local
25 return ListUtil.filter(unverified, new RemoveNotMatching(wanted));
44 List<Invocation> unverified = removeVerifiedInOrder(invocations, context); local
45 List<Invocation> firstChunk = getFirstMatchingChunk(wanted, unverified);
54 private List<Invocation> getFirstMatchingChunk(InvocationMatcher wanted, List<Invocation> unverified) {
56 for (Invocation invocation : unverified) {
126 List<Invocation> unverified = new LinkedList<Invocation>(); local
129 unverified.clear();
131 unverified.add(i);
134 return unverified;
    [all...]
InvocationMatcher.java 74 * similar means the same method name, same mock, unverified
  /external/mockito/src/org/mockito/internal/exceptions/util/
ScenarioPrinter.java 19 "For your reference, here is the list of all invocations ([?] - means unverified).\n");
  /libcore/luni/src/main/java/java/net/
SecureCacheResponse.java 66 * if the peer is unverified.
78 * if the peer is unverified.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mfplay.h 62 #warning IMFPMediaItem is unverified.
127 #warning IMFPMediaPlayer is unverified.
226 #warning IMFPMediaPlayerCallback is unverified.
wsdhost.h 76 #warning IWSDDeviceHost is unverified.
_mingw.h 216 " has unverified layout."))
  /external/chromium_org/components/autofill/core/browser/
credit_card.h 86 // two wouldn't result in unverified data overwriting verified data,
personal_data_manager.h 344 // Prefers verified profiles over unverified ones.
personal_data_manager.cc 763 // Unverified profiles should always be updated with the newer data,
    [all...]
  /external/qemu/distrib/libsparse/src/
simg_dump.py 139 print("Unverified CRC32 0x%08X" % (crc))
  /external/tcpdump/
print-udld.c 116 printf("\n\tChecksum 0x%04x (unverified)", EXTRACT_16BITS(tptr+2));
print-cdp.c 105 printf(", checksum: %u (unverified), length %u", EXTRACT_16BITS(tptr), length);
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilder.java 28 * This class implements the functionality of a builder for an unverified
  /libcore/luni/src/main/java/java/util/jar/
JarEntry.java 118 * This method returns all the signers' unverified chains concatenated
  /system/core/libsparse/
simg_dump.py 139 print("Unverified CRC32 0x%08X" % (crc))
  /external/chromium_org/net/socket/
ssl_client_socket.h 193 // Returns the unverified certificate chain as presented by server.
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_profile_syncable_service.cc 324 // Verified profiles should never be overwritten by unverified ones.
514 // Unverified profiles should never overwrite verified ones.
519 // Ensure that a verified profile can never revert back to an unverified
  /frameworks/base/core/java/android/net/http/
HttpsConnection.java 354 // The user decided not to use this unverified connection
  /external/littlemock/src/com/google/testing/littlemock/
LittleMock.java 214 /** Assert that there are no unverified method calls on these mocks. */
222 /** Check that there are no unverified actions on the given mock. */
234 sb.append("\nWe found these unverified calls:");
    [all...]
  /dalvik/docs/
embedded-vm-control.html 138 <code>dexopt</code>, and unverified code will be loaded and executed.
  /external/chromium_org/components/policy/core/common/cloud/
user_cloud_policy_store.cc 105 // enough, we can update the code to reject unsigned policy or unverified
  /docs/source.android.com/src/devices/tech/security/
dm-verity.jd 236 <p>This makes sure you haven't elected to verify an unverified partition. If so,

Completed in 2657 milliseconds

1 2