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

1 2 3 4 5

  /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/chromium_org/third_party/WebKit/Source/core/rendering/
RenderHTMLCanvas.cpp 95 LayoutSize oldSize = size();
98 if (oldSize == size())
RenderMedia.cpp 55 LayoutSize oldSize = contentBoxRect().size();
73 if (newSize == oldSize && !controlsNeedLayout)
ImageQualityController.cpp 143 LayoutSize oldSize;
149 oldSize = j->value;
192 if (isFirstResize || oldSize == scaledLayoutSize) {
RenderEmbeddedObject.cpp 197 LayoutSize oldSize = contentBoxRect().size();
230 if (newSize == oldSize && !childBox->needsLayout())
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageGeneratorValue.cpp 88 IntSize oldSize = sizeCount.size;
89 if (oldSize != size) {
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
BlobBuilder.cpp 66 size_t oldSize = buffer.size();
74 m_size += buffer.size() - oldSize;
120 size_t oldSize = buffer.size();
122 m_size += buffer.size() - oldSize;
  /external/chromium_org/third_party/WebKit/Source/platform/network/
FormData.cpp 116 size_t oldSize = e.m_data.size();
117 e.m_data.grow(oldSize + size);
118 memcpy(e.m_data.data() + oldSize, data, size);
  /cts/tests/tests/text/src/android/text/style/cts/
RelativeSizeSpanTest.java 56 float oldSize = tp.getTextSize();
62 oldSize = tp.getTextSize();
64 assertEquals(oldSize * proportion, tp.getTextSize());
80 float oldSize = tp.getTextSize();
82 assertEquals(oldSize * proportion, tp.getTextSize());
86 oldSize = tp.getTextSize();
88 assertEquals(oldSize * proportion, tp.getTextSize());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGenerator.cpp 272 const size_t oldSize = m_hasAlpha.size();
274 for (size_t i = oldSize; i < m_hasAlpha.size(); ++i)
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDocument.cpp 238 int oldSize = fPages.count();
240 for (int i = oldSize; i <= pageNumber; i++) {
  /external/skia/src/pdf/
SkPDFDocument.cpp 238 int oldSize = fPages.count();
240 for (int i = oldSize; i <= pageNumber; i++) {
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 295 const size_t oldSize = m_frameBufferCache.size();
298 for (size_t i = oldSize; i < m_reader->imagesCount(); ++i) {
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LineEnding.cpp 83 size_t oldSize = m_buffer.size();
84 m_buffer.grow(oldSize + size);
85 return m_buffer.data() + oldSize;
  /external/chromium_org/third_party/libxslt/libxslt/
templates.c 123 int oldPos, oldSize;
130 oldSize = ctxt->xpathCtxt->contextSize;
159 ctxt->xpathCtxt->contextSize = 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 231 unsigned oldSize = visited.size();
233 if (visited.size() != oldSize) {
  /bionic/libc/bionic/
malloc_debug_leak.cpp 233 size_t oldSize = dlmalloc_usable_size(mem);
238 if (newSize > oldSize) {
239 memset(reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(newMem)+oldSize), CHK_FILL_FREE, newSize-oldSize);
362 size_t oldSize = header->entry->size & ~SIZE_FLAG_MASK;
363 size_t copySize = (oldSize <= bytes) ? oldSize : bytes;
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
TextResourceDecoder.cpp 243 size_t oldSize = m_buffer.size();
244 m_buffer.grow(oldSize + len);
245 memcpy(m_buffer.data() + oldSize, data, len);
286 size_t oldSize = m_buffer.size();
287 m_buffer.grow(oldSize + len);
288 memcpy(m_buffer.data() + oldSize, data, len);
386 size_t oldSize = m_buffer.size();
387 m_buffer.grow(oldSize + len);
388 memcpy(m_buffer.data() + oldSize, data, len);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 206 LayoutSize oldSize = size();
215 m_isLayoutSizeChanged = needsLayout || (svg->hasRelativeLengths() && oldSize != size());
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthIterator.cpp 334 unsigned oldSize = glyphBuffer.size();
337 for (unsigned i = oldSize; i < glyphBuffer.size(); ++i)
340 return glyphBuffer.size() > oldSize;
  /frameworks/base/core/java/android/os/
TokenWatcher.java 73 int oldSize = mTokens.size();
83 if (oldSize == 0 && !mAcquired) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.cpp 255 IntSize oldSize = size();
260 if (hadImageBuffer && oldSize == newSize && m_context && m_context->is2d()) {
268 if (m_context && m_context->is3d() && oldSize != size())
273 if (oldSize != size()) {
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 657 size_t oldSize = result.size();
658 result.resize(oldSize + numberOfCharactersToCopy);
659 memmove(result.data() + numberOfCharactersToCopy, result.data(), oldSize * sizeof(UChar));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 333 const unsigned int oldSize = size * sizeof(Item);
340 data = (Item *)REALLOC(data, oldSize, size * sizeof(Item));

Completed in 728 milliseconds

1 2 3 4 5