/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
HashBiMap.java | 48 * @param expectedSize the expected number of entries 52 public static <K, V> HashBiMap<K, V> create(int expectedSize) { 53 return new HashBiMap<K, V>(expectedSize); 72 private HashBiMap(int expectedSize) { 74 Maps.<K, V>newHashMapWithExpectedSize(expectedSize), 75 Maps.<V, K>newHashMapWithExpectedSize(expectedSize));
|
Maps.java | 87 * that it <i>should</i> hold {@code expectedSize} elements without growth. 92 * @param expectedSize the number of elements you expect to add to the 95 * expectedSize} elements without resizing 96 * @throws IllegalArgumentException if {@code expectedSize} is negative 99 int expectedSize) { 100 return new HashMap<K, V>(capacity(expectedSize)); 105 * long as it grows no larger than expectedSize and the load factor is >= its 108 static int capacity(int expectedSize) { 109 if (expectedSize < 3) { 110 checkArgument(expectedSize >= 0) [all...] |
Sets.java | 179 * that it <i>should</i> hold {@code expectedSize} elements without growth. 184 * @param expectedSize the number of elements you expect to add to the 187 * expectedSize} elements without resizing 188 * @throws IllegalArgumentException if {@code expectedSize} is negative 190 public static <E> HashSet<E> newHashSetWithExpectedSize(int expectedSize) { 191 return new HashSet<E>(Maps.capacity(expectedSize)); 250 * capacity" that it <i>should</i> hold {@code expectedSize} elements without 255 * @param expectedSize the number of elements you expect to add to the 258 * {@code expectedSize} elements without resizing 259 * @throws IllegalArgumentException if {@code expectedSize} is negativ [all...] |
/external/guava/guava/src/com/google/common/collect/ |
HashBiMap.java | 52 * @param expectedSize the expected number of entries 56 public static <K, V> HashBiMap<K, V> create(int expectedSize) { 57 return new HashBiMap<K, V>(expectedSize); 76 private HashBiMap(int expectedSize) { 78 Maps.<K, V>newHashMapWithExpectedSize(expectedSize), 79 Maps.<V, K>newHashMapWithExpectedSize(expectedSize));
|
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...] |
Maps.java | 90 * that it <i>should</i> hold {@code expectedSize} elements without growth. 95 * @param expectedSize the number of elements you expect to add to the 98 * expectedSize} elements without resizing 99 * @throws IllegalArgumentException if {@code expectedSize} is negative 102 int expectedSize) { 103 return new HashMap<K, V>(capacity(expectedSize)); 108 * long as it grows no larger than expectedSize and the load factor is >= its 111 static int capacity(int expectedSize) { 112 if (expectedSize < 3) { 113 checkArgument(expectedSize >= 0) [all...] |
Sets.java | 182 * that it <i>should</i> hold {@code expectedSize} elements without growth. 187 * @param expectedSize the number of elements you expect to add to the 190 * expectedSize} elements without resizing 191 * @throws IllegalArgumentException if {@code expectedSize} is negative 193 public static <E> HashSet<E> newHashSetWithExpectedSize(int expectedSize) { 194 return new HashSet<E>(Maps.capacity(expectedSize)); 253 * capacity" that it <i>should</i> hold {@code expectedSize} elements without 258 * @param expectedSize the number of elements you expect to add to the 261 * {@code expectedSize} elements without resizing 262 * @throws IllegalArgumentException if {@code expectedSize} is negativ [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
WallpaperManagerTest.java | 60 private void assertDesiredMinimum(Point suggestedSize, Point expectedSize) { 65 assertEquals(expectedSize, actualSize);
|
/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/skia/tests/ |
OSPathTest.cpp | 34 size_t expectedSize = dir.size() + filename.size(); 36 expectedSize++; 38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize);
|
PDFPrimitivesTest.cpp | 73 const char* expectedData, size_t expectedSize, 81 REPORTER_ASSERT(reporter, directSize == 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-tests/test/com/google/common/collect/ |
AbstractTableReadTest.java | 50 protected void assertSize(int expectedSize) { 51 assertEquals(expectedSize, table.size());
|
MinMaxPriorityQueueTest.java | 70 .expectedSize(8) 80 .expectedSize(8) 108 .expectedSize(8) 140 .expectedSize(8) 163 .expectedSize(8) 188 MinMaxPriorityQueue.expectedSize(heapSize).create(); 470 MinMaxPriorityQueue.expectedSize(5).create(); 502 Ordering.natural().reverse()).expectedSize(5).create(); 552 MinMaxPriorityQueue.expectedSize(heapSize).create();
|
/external/chromium_org/third_party/icu/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...] |
strtst.c | 313 #define Test_u_snprintf(limit, format, value, expectedSize, expectedStr) \ 317 if (size != expectedSize || strcmp(cTestResult, expectedStr) != 0) {\ 318 log_err("Unexpected formatting. size=%d expectedSize=%d cTestResult=%s expectedStr=%s\n",\ 319 size, expectedSize, cTestResult, expectedStr);\
|
/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...] |
strtst.c | 313 #define Test_u_snprintf(limit, format, value, expectedSize, expectedStr) \ 317 if (size != expectedSize || strcmp(cTestResult, expectedStr) != 0) {\ 318 log_err("Unexpected formatting. size=%d expectedSize=%d cTestResult=%s expectedStr=%s\n",\ 319 size, expectedSize, cTestResult, expectedStr);\
|
/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);
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
LocalFrame.h | 128 FloatSize resizePageRectsKeepingRatio(const FloatSize& originalSize, const FloatSize& expectedSize);
|
LocalFrame.cpp | 254 FloatSize LocalFrame::resizePageRectsKeepingRatio(const FloatSize& originalSize, const FloatSize& expectedSize) 263 resultSize.setWidth(floorf(expectedSize.width())); 268 resultSize.setHeight(floorf(expectedSize.height()));
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
CameraTestUtils.java | [all...] |
/external/deqp/modules/gles31/functional/ |
es31fTessellationGeometryInteractionTests.cpp | [all...] |