HomeSort by relevance Sort by last modified time
    Searched refs:oldSize (Results 51 - 75 of 169) sorted by null

1 23 4 5 6 7

  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
ImageReaderSubPane.java 260 Size oldSize = null;
262 oldSize = mSizes[mCurrentSizeId];
273 if (mSizes[i].equals(oldSize)) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 174 LayoutSize oldSize = size();
183 m_isLayoutSizeChanged = needsLayout || (svg->hasRelativeLengths() && oldSize != size());
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 551 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize,
561 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
  /external/mesa3d/src/mesa/main/
imports.h 549 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize,
559 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.cpp 531 void MemoryCache::update(Resource* resource, size_t oldSize, size_t newSize, bool wasAccessed)
539 if (oldSize)
540 removeFromLRUList(entry, lruListFor(entry->m_accessCount, oldSize));
546 ptrdiff_t delta = newSize - oldSize;
Resource.cpp 591 size_t oldSize = size();
593 memoryCache()->update(this, oldSize, size());
601 size_t oldSize = size();
603 memoryCache()->update(this, oldSize, size());
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
VectorTest.java     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec_api.c 246 const GLuint oldSize = exec->vtx.attrsz[attr];
262 if (unlikely(oldSize)) {
274 !oldSize && lastcount > 8 && exec->vtx.vertex_size) {
282 exec->vtx.vertex_size += newSize - oldSize;
288 if (unlikely(oldSize)) {
334 if (oldSize) {
336 COPY_CLEAN_4V_TYPE_AS_FLOAT(tmp, oldSize,
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_api.c 246 const GLuint oldSize = exec->vtx.attrsz[attr];
262 if (unlikely(oldSize)) {
274 !oldSize && lastcount > 8 && exec->vtx.vertex_size) {
282 exec->vtx.vertex_size += newSize - oldSize;
288 if (unlikely(oldSize)) {
334 if (oldSize) {
336 COPY_CLEAN_4V_TYPE_AS_FLOAT(tmp, oldSize,
    [all...]
  /external/chromium_org/v8/test/mjsunit/es7/
object-observe.js     [all...]
  /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));
  /external/mesa3d/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));
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 599 int oldSize = elements.length;
601 slice = new Slice(elements, slice.from, slice.to + (elements.length - oldSize));
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 272 public void onTextSizeChanged(final TextView textView, float oldSize) {
280 final float textScale = oldSize / textView.getTextSize();
  /external/libcxxabi/src/Unwind/
UnwindCursor.hpp 116 size_t oldSize = (size_t)(_bufferEnd - _buffer);
117 size_t newSize = oldSize * 4;
120 memcpy(newBuffer, _buffer, oldSize * sizeof(entry));
124 _bufferUsed = &newBuffer[oldSize];
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp     [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindCursor.hpp 116 size_t oldSize = (size_t)(_bufferEnd - _buffer);
117 size_t newSize = oldSize * 4;
120 memcpy(newBuffer, _buffer, oldSize * sizeof(entry));
124 _bufferUsed = &newBuffer[oldSize];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 641 size_t oldSize = result.size();
642 result.resize(oldSize + numberOfCharactersToCopy);
643 memmove(result.data() + numberOfCharactersToCopy, result.data(), oldSize * sizeof(UChar));
  /external/jdiff/src/jdiff/
APIComparator.java 376 int oldSize = oldClass.ctors_.size();
378 if (oldSize == 1 && oldSize == newSize) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 330 int oldSize = m_size;
343 if (oldSize != size)
348 if (m_size != oldSize && inActiveDocument()) {
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp 1065 ArrayIndex oldSize = size();
1068 else if ( newSize > oldSize )
1072 for ( ArrayIndex index = newSize; index < oldSize; ++index )
    [all...]
  /external/jsoncpp/chromium-overrides/src/lib_json/
json_value.cpp 1059 ArrayIndex oldSize = size();
1062 else if ( newSize > oldSize )
1066 for ( ArrayIndex index = newSize; index < oldSize; ++index )
    [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 1055 ArrayIndex oldSize = size();
1058 else if ( newSize > oldSize )
1062 for ( ArrayIndex index = newSize; index < oldSize; ++index )
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
DrawableContainer.java     [all...]
  /libcore/luni/src/main/java/java/util/
HashMap.java 906 int oldSize = size;
908 return size != oldSize;
    [all...]

Completed in 2586 milliseconds

1 23 4 5 6 7