HomeSort by relevance Sort by last modified time
    Searched refs:expectedSize (Results 26 - 50 of 457) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestCase.java 236 * @param expectedSize
243 int expectedSize,
245 framework.assertSize(this, assertID, expectedSize, collection);
253 * @param expectedSize
260 int expectedSize,
262 framework.assertSize(this, assertID, expectedSize, collection);
270 * @param expectedSize
277 int expectedSize,
279 framework.assertSize(this, assertID, expectedSize, collection);
JUnitTestCaseAdapter.java 226 public void assertSize(DOMTestCase test, String assertID, int expectedSize, NodeList collection) {
227 assertEquals(assertID,expectedSize, collection.getLength());
230 public void assertSize(DOMTestCase test, String assertID, int expectedSize, NamedNodeMap collection) {
231 assertEquals(assertID, expectedSize, collection.getLength());
234 public void assertSize(DOMTestCase test, String assertID, int expectedSize, Collection collection) {
235 assertEquals(assertID, expectedSize, collection.size());
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.0/
dagger-2.0.jar 
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
AbstractTableReadTest.java 48 protected void assertSize(int expectedSize) {
49 assertEquals(expectedSize, table.size());
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractTableReadTest.java 50 protected void assertSize(int expectedSize) {
51 assertEquals(expectedSize, table.size());
MinMaxPriorityQueueTest.java 71 .expectedSize(8)
81 .expectedSize(8)
109 .expectedSize(8)
141 .expectedSize(8)
164 .expectedSize(8)
189 MinMaxPriorityQueue.expectedSize(heapSize).create();
471 MinMaxPriorityQueue.expectedSize(5).create();
503 Ordering.natural().reverse()).expectedSize(5).create();
551 MinMaxPriorityQueue.expectedSize(heapSize).create();
  /external/guava/guava/src/com/google/common/io/
Files.java 162 InputStream in, long expectedSize) throws IOException {
163 if (expectedSize > Integer.MAX_VALUE) {
165 + expectedSize + " bytes");
170 return expectedSize == 0
172 : ByteStreams.toByteArray(in, (int) expectedSize);
ByteStreams.java 126 InputStream in, int expectedSize) throws IOException {
127 byte[] bytes = new byte[expectedSize];
128 int remaining = expectedSize;
131 int off = expectedSize - remaining;
134 // end of stream before reading expectedSize bytes
  /external/guava/guava/src/com/google/common/collect/
HashBiMap.java 64 * @param expectedSize the expected number of entries
67 public static <K, V> HashBiMap<K, V> create(int expectedSize) {
68 return new HashBiMap<K, V>(expectedSize);
106 private HashBiMap(int expectedSize) {
107 init(expectedSize);
110 private void init(int expectedSize) {
111 checkNonnegative(expectedSize, "expectedSize");
112 int tableSize = Hashing.closedTableSize(expectedSize, LOAD_FACTOR);
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
SliceOpTest.java 268 int expectedSize) {
277 assertEquals(actual.size(), expectedSize);
287 int expectedSize,
299 testSliceMulti(data, expectedSize, ms);
304 int expectedSize,
311 .resultAsserter(sliceResultAsserter(data, expectedSize))
313 assertEquals(sr.size(), expectedSize);
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationGeometryPointSizeTests.cpp 110 bool verifyImage (tcu::TestLog& log, const tcu::ConstPixelBufferAccess image, const int expectedSize)
112 log << tcu::TestLog::Message << "Verifying rendered point size. Expecting " << expectedSize << " pixels." << tcu::TestLog::EndMessage;
154 if (pointSize.x() != expectedSize)
156 log << tcu::TestLog::Message << "ERROR! Point size invalid, expected " << expectedSize << ", got " << pointSize.x() << tcu::TestLog::EndMessage;
  /external/icu/icu4c/source/test/iotest/
filetst.c 445 int32_t expectedSize = (int32_t)strlen(testStr);
464 u_uastrncpy(buffer, testStr, expectedSize+1);
466 u_file_write(buffer, expectedSize, myFile);
484 if (readSize != expectedSize*repetitions) {
485 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions);
487 if (buffer[(expectedSize*repetitions) + 1] != 0xBEEF) {
506 u_uastrncpy(buffer, testStr, expectedSize+1);
508 u_file_write(buffer, expectedSize, myFile);
529 if (readSize != expectedSize*repetitions) {
530 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions)
    [all...]
  /frameworks/base/core/java/android/os/
HwParcel.java 212 public native final HwBlob readBuffer(long expectedSize);
215 long expectedSize, long parentHandle, long offset,
  /external/icu/icu4c/source/test/cintltst/
usettest.c 363 int32_t expectedSize = 0;
390 ++expectedSize;
468 if (uset_size(set) == expectedSize) {
469 log_verbose("Ok: %s size is %d\n", pat, expectedSize);
472 pat, uset_size(set), expectedSize);
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerBaseTest.java 474 long expectedSize = getBytesDownloaded(id) + bytesToReceive;
476 while ((currentSize = getBytesDownloaded(id)) <= expectedSize) {
478 expectedSize, currentSize));
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraTestUtils.java     [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/
DashboardDataTest.java 138 final int expectedSize = expectedObjects.length;
140 assertThat(mDashboardDataWithOneConditions.getItemList()).hasSize(expectedSize);
142 for (int i = 0; i < expectedSize; i++) {
  /device/google/contexthub/firmware/os/core/
bl.c 472 uint32_t expectedSize = 0;
615 expectedSize = sizeof(*hdr) + hdr->size + 2 * RSA_BYTES;
617 if (addr + len > expectedSize)
647 expectedSize = 0;
  /frameworks/base/core/tests/coretests/src/android/widget/
RemoteViewsTest.java 140 int expectedSize = getParcelSize(original) + getParcelSize(child);
144 assertTrue(getParcelSize(original) < expectedSize);
149 expectedSize = getParcelSize(original) + getParcelSize(child);
153 assertTrue(getParcelSize(original) > expectedSize);
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderBase.h 95 uint32_t expectedSize, uint32_t *outsize, uint32_t *stride, uint8_t **usrptr);
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpManager.java 149 byte[] getObject(int deviceId, int objectHandle, int expectedSize)
154 device.getObject(objectHandle, expectedSize),
  /frameworks/base/core/jni/
android_os_HwParcel.cpp 802 jlong expectedSize) {
809 if (expectedSize < 0) {
814 status_t status = parcel->readBuffer(expectedSize, &handle, &ptr);
825 JNIEnv *env, jobject thiz, jlong expectedSize,
834 parcel->readNullableEmbeddedBuffer(expectedSize,
837 if (expectedSize < 0) {
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.6/
dagger-2.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/
dagger-2.7.jar 
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/
CameraTestUtils.java     [all...]

Completed in 1148 milliseconds

12 3 4 5 6 7 8 91011>>