HomeSort by relevance Sort by last modified time
    Searched defs:expectedSize (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/tests/
OSPathTest.cpp 34 size_t expectedSize = dir.size() + filename.size();
36 expectedSize++;
38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize);
  /external/skia/tests/
OSPathTest.cpp 34 size_t expectedSize = dir.size() + filename.size();
36 expectedSize++;
38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize);
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBufferBuilderTest.cpp 138 size_t expectedSize = sizeof(expected) - 1;
142 ASSERT_EQ(expectedSize, result->byteLength());
143 EXPECT_EQ(0, memcmp(expected, result->data(), expectedSize));
172 size_t expectedSize = sizeof(expected) - 1;
175 EXPECT_EQ(expectedSize, result.length());
  /external/guava/guava/src/com/google/common/collect/
HashBasedTable.java 57 final int expectedSize;
58 Factory(int expectedSize) {
59 this.expectedSize = expectedSize;
63 return Maps.newHashMapWithExpectedSize(expectedSize);
MinMaxPriorityQueue.java 121 * expectedSize} elements.
123 public static Builder<Comparable> expectedSize(int expectedSize) {
125 .expectedSize(expectedSize);
144 * MinMaxPriorityQueue#expectedSize(int)} or {@link
162 private int expectedSize = UNSET_EXPECTED_SIZE;
171 * expected size of {@code expectedSize}.
173 public Builder<B> expectedSize(int expectedSize) {
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/
InitDataParser.cpp 77 uint32_t expectedSize = initData.size();
78 expectedSize = htonl(expectedSize);
79 if (memcmp(&initData[readPosition], &expectedSize,
80 sizeof(expectedSize)) != 0) {
83 readPosition += sizeof(expectedSize);
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationScreenLayoutTest.java 46 int expectedSize = expectedScreenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
56 assertEquals("Expected screen size value of " + expectedSize + " but got " + actualSize
57 + " for orientation " + ORIENTATIONS[i], expectedSize, actualSize);
  /external/chromium_org/third_party/icu/source/test/cintltst/
usettest.c 362 int32_t expectedSize = 0;
389 ++expectedSize;
467 if (uset_size(set) == expectedSize) {
468 log_verbose("Ok: %s size is %d\n", pat, expectedSize);
471 pat, uset_size(set), expectedSize);
  /external/icu/icu4c/source/test/cintltst/
usettest.c 362 int32_t expectedSize = 0;
389 ++expectedSize;
467 if (uset_size(set) == expectedSize) {
468 log_verbose("Ok: %s size is %d\n", pat, expectedSize);
471 pat, uset_size(set), expectedSize);
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 296 long expectedSize = (sizeString != null) ? Long.parseLong(sizeString) : 0;
297 assertEquals(tag, expectedSize, actual.mSize);
  /external/chromium_org/third_party/icu/source/test/iotest/
filetst.c 436 int32_t expectedSize = (int32_t)strlen(testStr);
455 u_uastrncpy(buffer, testStr, expectedSize+1);
457 u_file_write(buffer, expectedSize, myFile);
475 if (readSize != expectedSize*repetitions) {
476 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions);
478 if (buffer[(expectedSize*repetitions) + 1] != 0xBEEF) {
497 u_uastrncpy(buffer, testStr, expectedSize+1);
499 u_file_write(buffer, expectedSize, myFile);
520 if (readSize != expectedSize*repetitions) {
521 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions)
    [all...]
  /external/icu/icu4c/source/test/iotest/
filetst.c 442 int32_t expectedSize = (int32_t)strlen(testStr);
461 u_uastrncpy(buffer, testStr, expectedSize+1);
463 u_file_write(buffer, expectedSize, myFile);
481 if (readSize != expectedSize*repetitions) {
482 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions);
484 if (buffer[(expectedSize*repetitions) + 1] != 0xBEEF) {
503 u_uastrncpy(buffer, testStr, expectedSize+1);
505 u_file_write(buffer, expectedSize, myFile);
526 if (readSize != expectedSize*repetitions) {
527 log_err("Buffer is the wrong size. Got %d Expected %d\n", u_strlen(buffer), expectedSize*repetitions)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraTestUtils.java     [all...]
StillCaptureTest.java     [all...]
  /cts/tests/tests/media/src/android/media/cts/
ImageReaderDecoderTest.java 361 int expectedSize = width * height * ImageFormat.getBitsPerPixel(format) / 8;
362 assertEquals("Yuv data doesn't match", expectedSize, yuvData.length);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
teximage.c     [all...]
  /external/mesa3d/src/mesa/main/
teximage.c     [all...]
  /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/unit/
CameraMetadataTest.java     [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderTextureFunctionTests.cpp     [all...]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderDef.h 501 uint32_t expectedSize;
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 

Completed in 692 milliseconds

1 2 3