Searched refs:initialSize (Results 1 - 25 of 36) sorted by relevance

12

/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DConcurrentMapInterfaceTest.java82 int initialSize = map.size();
87 assertEquals(initialSize + 1, map.size());
113 int initialSize = map.size();
119 assertEquals(initialSize, map.size());
143 int initialSize = map.size();
161 assertEquals(initialSize, map.size());
177 int initialSize = map.size();
195 assertEquals(initialSize, map.size());
211 int initialSize = map.size();
228 assertEquals(initialSize, ma
[all...]
H A DMapInterfaceTest.java469 int initialSize = map.size();
475 assertEquals(initialSize - 1, map.size());
509 int initialSize = map.size();
512 assertEquals(initialSize - 1, map.size());
537 int initialSize = map.size();
547 assertEquals(initialSize, map.size());
564 int initialSize = map.size();
574 assertEquals(initialSize, map.size());
620 int initialSize = map.size();
634 assertEquals(initialSize, ma
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DLongVector.java30 public LongVector(int initialSize) { argument
31 int vsize = ((initialSize >> ABITS) & ~(VSIZE - 1)) + VSIZE;
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringWriter.java39 * size of <code>initialSize</code> characters. The StringBuffer is also
42 public Support_StringWriter(int initialSize) { argument
43 if (initialSize >= 0) {
44 buf = new StringBuffer(initialSize);
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapRemoveTester.java44 int initialSize = getMap().size();
48 initialSize - 1, getMap().size());
64 int initialSize = getMap().size();
68 initialSize - 1, getMap().size());
H A DListRemoveTester.java44 int initialSize = getList().size();
53 initialSize - 1, getList().size());
H A DCollectionRemoveTester.java45 int initialSize = collection.size();
49 initialSize - 1, collection.size());
65 int initialSize = collection.size();
68 initialSize - 1, collection.size());
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMultimapAsMapImplementsMapTest.java77 int initialSize = map.size();
83 assertEquals(initialSize - 1, map.size());
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DResizableDialog.java98 protected Point getInitialLocation(Point initialSize) { argument
109 int maxX = windowBounds.x + windowBounds.width - initialSize.x;
110 int maxY = windowBounds.y + windowBounds.height - initialSize.y;
126 int x = windowBounds.x + (windowBounds.width - initialSize.x) / 2;
127 int y = windowBounds.y + (windowBounds.height - initialSize.y) / 2;
/external/webkit/Source/JavaScriptCore/assembler/
H A DLinkBuffer.h217 size_t initialSize = m_assembler->size(); local
218 m_code = (uint8_t*)m_executablePool->alloc(initialSize);
276 m_executablePool->tryShrink(m_code, initialSize, m_size);
279 dumpLinkStatistics(m_code, initialSize, m_size);
299 static void dumpLinkStatistics(void* code, size_t initialSize, size_t finalSize) argument
305 totalInitialSize += initialSize;
308 code, static_cast<unsigned>(initialSize), static_cast<unsigned>(finalSize),
309 static_cast<unsigned>(initialSize - finalSize),
310 100.0 * (initialSize - finalSize) / initialSize);
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheReferencesTest.java155 // initialSize will most likely be 2, but it's possible for the GC to have already run, so we'll
157 long initialSize = cache.size();
158 assertTrue(initialSize == 1 || initialSize == 2);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DBitSetTest.java215 int initialSize = bs.size();
216 bs.set(0, initialSize);
231 for (int i = 11; i < initialSize; i++) {
239 for (int i = initialSize; i < bs.size(); i++) {
245 initialSize = bs.size();
246 bs.set(0, initialSize);
260 initialSize = bs.size();
261 bs.set(0, initialSize);
271 initialSize = bs.size();
272 bs.set(0, initialSize);
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
H A DIndexDataManager.h59 StreamingIndexBuffer(IDirect3DDevice9 *device, UINT initialSize, D3DFORMAT format);
H A DVertexDataManager.h82 StreamingVertexBuffer(IDirect3DDevice9 *device, UINT initialSize);
H A DIndexDataManager.cpp242 StreamingIndexBuffer::StreamingIndexBuffer(IDirect3DDevice9 *device, UINT initialSize, D3DFORMAT format) : IndexBuffer(device, initialSize, format) argument
H A DVertexDataManager.cpp627 StreamingVertexBuffer::StreamingVertexBuffer(IDirect3DDevice9 *device, std::size_t initialSize) : ArrayVertexBuffer(device, initialSize, D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY) argument
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DMediaPlayerPrivateQTKit.mm1026 NSSize initialSize = NSZeroSize;
1034 initialSize = [displayTransform transformSize:naturalSize];
1036 initialSize.width = naturalSize.width;
1037 initialSize.height = naturalSize.height;
1040 initialSize = [[m_qtMovie.get() attributeForKey:QTMovieCurrentSizeAttribute] sizeValue];
1044 m_scaleFactor.setWidth(initialSize.width / naturalSize.width);
1046 m_scaleFactor.setHeight(initialSize.height / naturalSize.height);
/external/icu4c/i18n/
H A Duspoof_impl.cpp536 uint32_t initialSize = (sizeof(SpoofDataHeader) + 15) & ~15; local
537 U_ASSERT(initialSize == sizeof(SpoofDataHeader));
539 fRawData = static_cast<SpoofDataHeader *>(uprv_malloc(initialSize));
540 fMemLimit = initialSize;
545 uprv_memset(fRawData, 0, initialSize);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalList.java479 public MakeState(int initialSize) { argument
480 result = new ArrayList<Entry>(initialSize);
/external/libxslt/libxslt/
H A Dxsltutils.c309 * @initialSize: the initial size of the list
319 int initialSize)
322 if (initialSize <= 0)
323 initialSize = 1;
325 initialSize * sizeof(void *));
332 list->size = initialSize;
350 * @initialSize: the initial size for the list
357 xsltPointerListCreate(int initialSize) argument
368 if (initialSize > 0) {
369 xsltPointerListAddSize(ret, NULL, initialSize);
317 xsltPointerListAddSize(xsltPointerListPtr list, void *item, int initialSize) argument
[all...]
H A DxsltInternals.h503 xsltPointerListCreate (int initialSize);
511 int initialSize);
/external/guava/guava/src/com/google/common/collect/
H A DMinMaxPriorityQueue.java910 int initialSize = ((Collection<?>) initialContents).size();
911 result = Math.max(result, initialSize);
/external/webkit/Source/WebCore/page/
H A DFrameView.h57 static PassRefPtr<FrameView> create(Frame*, const IntSize& initialSize);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c1080 ANTLR3_UINT32 initialSize; local
1086 initialSize = sizeHint;
1090 initialSize = ANTLR3_VECTOR_INTERNAL_SIZE;
1095 vector->elements = (pANTLR3_VECTOR_ELEMENT)ANTLR3_MALLOC((size_t)(sizeof(ANTLR3_VECTOR_ELEMENT) * initialSize));
1111 vector->elementsSize = initialSize; // Available entries
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 566 milliseconds

12