Searched defs:initialSize (Results 1 - 25 of 39) sorted by relevance

12

/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/javassist/src/main/javassist/bytecode/
H A DLongVector.java30 public LongVector(int initialSize) { argument
31 int vsize = ((initialSize >> ABITS) & ~(VSIZE - 1)) + VSIZE;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DFontBuilder.h84 static FontDescription::Size initialSize() { return FontDescription::Size(FontSize::initialKeywordSize(), 0.0f, false); } function in class:blink::FontBuilder
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DShaderExecutable.h52 UniformStorage(size_t initialSize) argument
53 : mSize(initialSize)
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DShaderExecutable11.cpp77 UniformStorage11::UniformStorage11(Renderer11 *renderer, size_t initialSize) argument
78 : UniformStorage(initialSize),
83 if (initialSize > 0)
86 constantBufferDescription.ByteWidth = initialSize;
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DByteVector.java62 * @param initialSize the initial size of the byte vector to be constructed.
64 public ByteVector(final int initialSize) { argument
65 data = new byte[initialSize];
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioArray.h61 unsigned initialSize = sizeof(T) * n; local
80 if (initialSize + extraAllocationBytes < initialSize)
83 T* allocation = static_cast<T*>(fastMalloc(initialSize + extraAllocationBytes));
/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/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DVertexBuffer.cpp200 StreamingVertexBufferInterface::StreamingVertexBufferInterface(rx::Renderer *renderer, std::size_t initialSize) : VertexBufferInterface(renderer, true) argument
202 setBufferSize(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/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.cpp455 unsigned initialSize = m_propertyVector.size(); local
457 for (unsigned n = 0; n < initialSize; ++n) {
466 return initialSize != m_propertyVector.size();
/external/chromium_org/third_party/icu/source/i18n/
H A Duspoof_impl.cpp548 uint32_t initialSize = (sizeof(SpoofDataHeader) + 15) & ~15; local
549 U_ASSERT(initialSize == sizeof(SpoofDataHeader));
551 fRawData = static_cast<SpoofDataHeader *>(uprv_malloc(initialSize));
552 fMemLimit = initialSize;
557 uprv_memset(fRawData, 0, initialSize);
/external/icu/icu4c/source/i18n/
H A Duspoof_impl.cpp548 uint32_t initialSize = (sizeof(SpoofDataHeader) + 15) & ~15; local
549 U_ASSERT(initialSize == sizeof(SpoofDataHeader));
551 fRawData = static_cast<SpoofDataHeader *>(uprv_malloc(initialSize));
552 fMemLimit = initialSize;
557 uprv_memset(fRawData, 0, 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/chromium_org/third_party/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...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp143 PassRefPtr<FrameView> FrameView::create(LocalFrame* frame, const IntSize& initialSize) argument
146 view->Widget::setFrameRect(IntRect(view->location(), initialSize));
147 view->setLayoutSizeInternal(initialSize);
/external/chromium_org/third_party/libxml/src/
H A Dxpath.c417 int initialSize)
420 if (initialSize <= 0)
421 initialSize = 1;
423 initialSize * sizeof(void *));
430 list->size = initialSize;
454 xmlPointerListCreate(int initialSize) argument
465 if (initialSize > 0) {
466 xmlPointerListAddSize(ret, NULL, initialSize);
415 xmlPointerListAddSize(xmlPointerListPtr list, void *item, int initialSize) argument
H A Dxmlschemas.c3346 int initialSize,
3350 if (initialSize <= 0)
3351 initialSize = 1;
3353 initialSize * sizeof(void *));
3358 list->sizeItems = initialSize;
3412 int initialSize,
3417 if (initialSize <= 0)
3418 initialSize = 1;
3420 initialSize * sizeof(void *));
3425 list->sizeItems = initialSize;
3345 xmlSchemaItemListAddSize(xmlSchemaItemListPtr list, int initialSize, void *item) argument
3660 xmlSchemaAddItemSize(xmlSchemaItemListPtr *list, int initialSize, void *item) argument
[all...]
/external/libxml2/
H A Dxpath.c494 int initialSize)
497 if (initialSize <= 0)
498 initialSize = 1;
499 list->items = (void **) xmlMalloc(initialSize * sizeof(void *));
506 list->size = initialSize;
535 xmlPointerListCreate(int initialSize) argument
546 if (initialSize > 0) {
547 xmlPointerListAddSize(ret, NULL, initialSize);
492 xmlPointerListAddSize(xmlPointerListPtr list, void *item, int initialSize) argument
H A Dxmlschemas.c3365 int initialSize,
3369 if (initialSize <= 0)
3370 initialSize = 1;
3372 initialSize * sizeof(void *));
3377 list->sizeItems = initialSize;
3431 int initialSize,
3436 if (initialSize <= 0)
3437 initialSize = 1;
3439 initialSize * sizeof(void *));
3444 list->sizeItems = initialSize;
3364 xmlSchemaItemListAddSize(xmlSchemaItemListPtr list, int initialSize, void *item) argument
3679 xmlSchemaAddItemSize(xmlSchemaItemListPtr *list, int initialSize, void *item) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h1581 static Length initialSize() { return Length(); } function in class:blink::RenderStyle
/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 ...
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3709 milliseconds

12