Home
last modified time | relevance | path

Searched refs:foundSize (Results 1 – 4 of 4) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/verification/
DAtMost.java37 int foundSize = found.size(); in verify() local
38 if (foundSize > maxNumberOfInvocations) { in verify()
39 throw wantedAtMostX(maxNumberOfInvocations, foundSize); in verify()
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
DEnvironmentCheck.java745 String foundSize = (String) jarVersions.get(new Long(jarSize)); in getApparentVersion() local
747 if ((null != foundSize) && (foundSize.startsWith(jarName))) in getApparentVersion()
749 return foundSize; in getApparentVersion()
/external/webrtc/webrtc/examples/objc/AppRTCDemo/third_party/SocketRocket/
DSRWebSocket.m1196 size_t foundSize = 0;
1199 foundSize = consumer.consumer(tempView);
1203 foundSize = bytesNeeded;
1205 foundSize = curSize;
1210 if (consumer.readToCurrentFrame || foundSize) {
1211 NSRange sliceRange = NSMakeRange(_readBufferOffset, foundSize);
1214 _readBufferOffset += foundSize;
1263 consumer.bytesNeeded -= foundSize;
1271 } else if (foundSize) {
/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java502 public static MockitoAssertionError wantedAtMostX(int maxNumberOfInvocations, int foundSize) { in wantedAtMostX() argument
503 …ertionError(join("Wanted at most " + pluralize(maxNumberOfInvocations) + " but was " + foundSize)); in wantedAtMostX()