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

1 2 3

  /external/webkit/Source/WebCore/rendering/
RenderHTMLCanvas.cpp 80 IntSize oldSize = size();
83 if (oldSize == size())
RenderMedia.cpp 60 IntSize oldSize = contentBoxRect().size();
69 if (newSize == oldSize && !controlsRenderer->needsLayout())
RenderSlider.cpp 149 IntSize oldSize = size();
157 if (oldSize != size())
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMapVector.java 85 int oldSize = m_mapSize;
91 System.arraycopy(m_map, 0, newMap, 0, oldSize);
  /external/webkit/Source/WebCore/css/
CSSImageGeneratorValue.cpp 87 IntSize oldSize = sizeCount.first;
88 if (oldSize != size) {
  /external/webkit/Source/WebCore/fileapi/
WebKitBlobBuilder.cpp 74 size_t oldSize = buffer.size();
80 m_size += buffer.size() - oldSize;
94 size_t oldSize = buffer.size();
96 m_size += buffer.size() - oldSize;
  /external/webkit/Source/WebCore/platform/image-encoders/
PNGImageEncoder.cpp 60 size_t oldSize = state->m_dump->size();
61 state->m_dump->resize(oldSize + size);
62 char* destination = state->m_dump->data() + oldSize;
  /cts/tests/tests/text/src/android/text/style/cts/
RelativeSizeSpanTest.java 85 float oldSize = tp.getTextSize();
91 oldSize = tp.getTextSize();
93 assertEquals(oldSize * proportion, tp.getTextSize());
115 float oldSize = tp.getTextSize();
117 assertEquals(oldSize * proportion, tp.getTextSize());
121 oldSize = tp.getTextSize();
123 assertEquals(oldSize * proportion, tp.getTextSize());
  /system/core/libcutils/
array.c 144 int oldSize = array->size;
146 if (newSize > oldSize) {
154 memset(array->contents + sizeof(void*) * oldSize, 0,
155 sizeof(void*) * (newSize - oldSize));
  /external/libxslt/libxslt/
templates.c 122 int oldPos, oldSize;
129 oldSize = ctxt->xpathCtxt->contextSize;
158 ctxt->xpathCtxt->contextSize = oldSize;
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 234 unsigned oldSize = visited.size();
236 if (visited.size() != oldSize) {
  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.cpp 226 int oldSize = glyphBuffer->size();
229 for (int i = oldSize; i < glyphBuffer->size(); ++i)
232 return glyphBuffer->size() > oldSize;
  /external/webkit/Source/WebCore/platform/text/
LineEnding.cpp 83 size_t oldSize = m_buffer.size();
84 m_buffer.grow(oldSize + size);
85 return m_buffer.data() + oldSize;
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.cpp 250 IntSize oldSize = size();
254 if (m_context && m_context->is3d() && oldSize != size())
263 if (oldSize != size())
HTMLSelectElement.cpp 253 int oldSize = m_data.size();
263 if (oldSize != size)
268 if ((oldUsesMenuList != m_data.usesMenuList() || (!oldUsesMenuList && m_data.size() != oldSize)) && attached()) {
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 281 float oldSize = m_data->m_view->PenSize();
284 m_data->m_view->SetPenSize(oldSize);
  /external/webkit/Source/WebCore/platform/network/
FormData.cpp 157 size_t oldSize = e.m_data.size();
158 e.m_data.grow(oldSize + size);
159 memcpy(e.m_data.data() + oldSize, data, size);
  /external/webkit/Source/WebCore/platform/text/wince/
TextCodecWinCE.cpp 213 int oldSize = result.size();
214 result.resize(oldSize + resultLength);
216 MultiByteToWideChar(codePage, flags, bytes, testLength, result.data() + oldSize, resultLength);
  /external/webkit/Source/WebCore/plugins/
PluginStream.cpp 435 int oldSize = m_deliveryData->size();
436 m_deliveryData->resize(oldSize + length);
437 memcpy(m_deliveryData->data() + oldSize, data, length);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.cpp 109 QSizeF oldSize = geometry().size();
111 if (geometry().size() == oldSize)
  /frameworks/base/core/java/android/os/
TokenWatcher.java 71 int oldSize = mTokens.size();
81 if (oldSize == 0 && !mAcquired) {
  /frameworks/base/media/libstagefright/id3/
ID3.cpp 283 size_t oldSize = mSize;
340 memset(&mData[mSize], 0, oldSize - mSize);
  /bionic/libc/bionic/
malloc_debug_leak.c 591 size_t oldSize = header->entry->size & ~SIZE_FLAG_MASK;
594 size_t copySize = (oldSize <= bytes) ? oldSize : bytes;
  /external/jdiff/src/jdiff/
APIComparator.java 376 int oldSize = oldClass.ctors_.size();
378 if (oldSize == 1 && oldSize == newSize) {
    [all...]
  /external/srec/portable/src/
pmemory.c 746 size_t oldSize;
778 oldSize = oldData->size;
779 passert(oldSize >= 0);
790 if (oldSize != actualSize)
800 if (oldSize >= actualSize)
806 memcpy(newData, oldData, oldSize);
824 e->curAlloc += actualSize - oldSize;
828 gCurAlloc += actualSize - oldSize;
869 pfprintf(gFile, L("pmem|%s|%d|realloc|%d|0x%x|%s|\n"), e->tag, oldSize, actualSize, ptr, stackTrace);
871 pfprintf(gFile, L("pmem|%s|%d|realloc|%d|0x%x|\n"), e->tag, oldSize, actualSize, ptr)
    [all...]

Completed in 627 milliseconds

1 2 3