Searched refs:expectedSize (Results 1 - 25 of 38) sorted by relevance

12

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DHashBiMap.java48 * @param expectedSize the expected number of entries
52 public static <K, V> HashBiMap<K, V> create(int expectedSize) { argument
53 return new HashBiMap<K, V>(expectedSize);
72 private HashBiMap(int expectedSize) { argument
74 Maps.<K, V>newHashMapWithExpectedSize(expectedSize),
75 Maps.<V, K>newHashMapWithExpectedSize(expectedSize));
H A DMaps.java87 * 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) { argument
109 if (expectedSize < 3) {
110 checkArgument(expectedSize >
98 newHashMapWithExpectedSize( int expectedSize) argument
[all...]
H A DSets.java179 * 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) { argument
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} i
262 newLinkedHashSetWithExpectedSize( int expectedSize) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DHashBiMap.java52 * @param expectedSize the expected number of entries
56 public static <K, V> HashBiMap<K, V> create(int expectedSize) { argument
57 return new HashBiMap<K, V>(expectedSize);
76 private HashBiMap(int expectedSize) { argument
78 Maps.<K, V>newHashMapWithExpectedSize(expectedSize),
79 Maps.<V, K>newHashMapWithExpectedSize(expectedSize));
H A DHashBasedTable.java57 final int expectedSize; field in class:HashBasedTable.Factory
58 Factory(int expectedSize) { argument
59 this.expectedSize = expectedSize;
63 return Maps.newHashMapWithExpectedSize(expectedSize);
H A DMinMaxPriorityQueue.java121 * expectedSize} elements.
123 public static Builder<Comparable> expectedSize(int expectedSize) { argument
125 .expectedSize(expectedSize);
144 * MinMaxPriorityQueue#expectedSize(int)} or {@link
162 private int expectedSize = UNSET_EXPECTED_SIZE; field in class:MinMaxPriorityQueue.Builder
171 * expected size of {@code expectedSize}.
173 public Builder<B> expectedSize(int expectedSize) { argument
[all...]
H A DMaps.java90 * 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) { argument
112 if (expectedSize < 3) {
113 checkArgument(expectedSize >
101 newHashMapWithExpectedSize( int expectedSize) argument
[all...]
H A DSets.java182 * 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) { argument
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} i
265 newLinkedHashSetWithExpectedSize( int expectedSize) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DOSPathTest.cpp34 size_t expectedSize = dir.size() + filename.size(); local
36 expectedSize++;
38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize);
H A DPDFPrimitivesTest.cpp72 const char* expectedData, size_t expectedSize,
80 REPORTER_ASSERT(reporter, directSize == expectedSize);
71 CheckObjectOutput(skiatest::Reporter* reporter, SkPDFObject* obj, const char* expectedData, size_t expectedSize, bool indirect, bool compression) argument
/external/skia/tests/
H A DOSPathTest.cpp34 size_t expectedSize = dir.size() + filename.size(); local
36 expectedSize++;
38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize);
H A DPDFPrimitivesTest.cpp72 const char* expectedData, size_t expectedSize,
80 REPORTER_ASSERT(reporter, directSize == expectedSize);
71 CheckObjectOutput(skiatest::Reporter* reporter, SkPDFObject* obj, const char* expectedData, size_t expectedSize, bool indirect, bool compression) argument
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBufferBuilderTest.cpp138 size_t expectedSize = sizeof(expected) - 1; local
142 ASSERT_EQ(expectedSize, result->byteLength());
143 EXPECT_EQ(0, memcmp(expected, result->data(), expectedSize));
172 size_t expectedSize = sizeof(expected) - 1; local
175 EXPECT_EQ(expectedSize, result.length());
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractTableReadTest.java50 protected void assertSize(int expectedSize) { argument
51 assertEquals(expectedSize, table.size());
H A DMinMaxPriorityQueueTest.java70 .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/
H A Dfiletst.c436 int32_t expectedSize = (int32_t)strlen(testStr); local
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*repetition
594 int32_t expectedSize = (int32_t)strlen(testStr); local
[all...]
H A Dstrtst.c313 #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/
H A Dfiletst.c442 int32_t expectedSize = (int32_t)strlen(testStr); local
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*repetition
600 int32_t expectedSize = (int32_t)strlen(testStr); local
[all...]
H A Dstrtst.c313 #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/
H A Dusettest.c362 int32_t expectedSize = 0; local
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/
H A Dusettest.c362 int32_t expectedSize = 0; local
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/
H A DLocalFrame.h118 FloatSize resizePageRectsKeepingRatio(const FloatSize& originalSize, const FloatSize& expectedSize);
H A DLocalFrame.cpp216 FloatSize LocalFrame::resizePageRectsKeepingRatio(const FloatSize& originalSize, const FloatSize& expectedSize) argument
225 resultSize.setWidth(floorf(expectedSize.width()));
230 resultSize.setHeight(floorf(expectedSize.height()));
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A DVCSUtils.pm1942 my $expectedSize = $encodedExpectedSize <= ord("Z") ? $encodedExpectedSize - ord("A") + 1 : $encodedExpectedSize - ord("a") + 27;
1944 die "$fullPath: unexpected size of a line: $&" if int(($expectedSize + 3) / 4) * 4 != $actualSize;
1945 $compressedSize += $expectedSize;
/external/deqp/modules/gles31/functional/
H A Des31fTessellationGeometryInteractionTests.cpp1847 const int expectedSize = getExpectedPointSize();
1849 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying rendered point size. Expecting " << expectedSize << " pixels." << tcu::TestLog::EndMessage;
1899 if (expectedSize != de::max(pointSize.x(), pointSize.y()) && (expectedSize+1) != de::max(pointSize.x(), pointSize.y()))
1901 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR! Point size invalid, expected " << expectedSize << ", got " << de::max(pointSize.x(), pointSize.y()) << tcu::TestLog::EndMessage;
1915 if (pointSize.x() != expectedSize)
1917 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR! Point size invalid, expected " << expectedSize << ", got " << pointSize.x() << tcu::TestLog::EndMessage;

Completed in 3816 milliseconds

12