HomeSort by relevance Sort by last modified time
    Searched full:totalsize (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /external/webkit/Source/WebKit/win/
WebScrollBar.cpp 128 /* [in] */ int totalSize)
130 m_scrollBar->setProportion(visibleSize, totalSize);
258 return (orientation == m_scrollBar->orientation()) ? (m_scrollBar->totalSize() - m_scrollBar->visibleSize()) : 0;
WebScrollBar.h 71 /* [in] */ int totalSize);
  /frameworks/base/media/libstagefright/rtsp/
AMPEG4ElementaryAssembler.cpp 341 size_t totalSize = 0;
344 totalSize += (*it)->size();
347 sp<ABuffer> accessUnit = new ABuffer(totalSize);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 49 HRESULT setProportion([in] int visibleSize, [in] int totalSize);
  /frameworks/base/tests/LowStorageTest/res/layout/
main.xml 27 android:id="@+id/totalsize"
  /sdk/ddms/libs/ddmuilib/tests/src/com/android/ddmuilib/heap/
NativeHeapDataImporterTest.java 34 "TotalSize: 524292\n" +
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotProxy.js 116 this._totalSize = this._snapshot.totalSize;
185 get totalSize()
  /external/webkit/Source/WebCore/platform/
Scrollbar.h 67 int totalSize() const { return m_totalSize; }
81 void setProportion(int visibleSize, int totalSize);
ScrollbarThemeComposite.cpp 106 float proportion = static_cast<float>(scrollbar->visibleSize()) / scrollbar->totalSize();
264 float overhangAtEnd = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize();
266 return scrollbar->totalSize() + overhang;
Scrollbar.cpp 122 void Scrollbar::setProportion(int visibleSize, int totalSize)
124 if (visibleSize == m_visibleSize && totalSize == m_totalSize)
128 m_totalSize = totalSize;
  /external/webkit/Source/WebCore/platform/efl/
ScrollbarEfl.cpp 86 value = messageFloat->val * (that->totalSize() - that->visibleSize());
159 int tSize = totalSize();
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleManager.cpp 188 size_t totalSize = size * nmemb;
197 return totalSize;
206 d->client()->didReceiveData(job, static_cast<char*>(ptr), totalSize, 0);
207 return totalSize;
231 size_t totalSize = size * nmemb;
234 String header(static_cast<const char*>(ptr), totalSize);
276 return totalSize;
290 return totalSize;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapDataImporter.java 142 int totalSize = sc.nextInt();
143 if (totalSize != size * allocations) {
  /external/webkit/Source/WebCore/platform/mac/
ScrollbarThemeMac.mm 437 } else if (scrollbar->visibleSize() + scrollbar->currentPos() > scrollbar->totalSize()) {
440 overhang = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize();
460 (static_cast<CGFloat>(scrollbar->visibleSize()) - overhang) / scrollbar->totalSize(),
478 maximum = (scrollbar->totalSize() - scrollbar->currentPos()) - scrollbar->visibleSize();
480 } else if (scrollbar->visibleSize() + scrollbar->currentPos() > scrollbar->totalSize()) {
  /external/icu4c/common/
triedict.cpp     [all...]
rbbirb.cpp 165 int32_t totalSize = headerSize + forwardTableSize + reverseTableSize
169 RBBIDataHeader *data = (RBBIDataHeader *)uprv_malloc(totalSize);
174 uprv_memset(data, 0, totalSize);
182 data->fLength = totalSize;
  /external/oprofile/libopagent/
opagent.c 164 header.totalsize = sizeof(header) + strlen(_bfd_target_name) + 1;
166 pad_cnt = PADDING_8ALIGNED(header.totalsize);
167 header.totalsize += pad_cnt;
  /external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.cpp 87 m_scrollbar->setEnabled(m_scrollbar->totalSize() > length);
88 m_scrollbar->setProportion(length, m_scrollbar->totalSize());
258 return (orientation == m_scrollbar->orientation()) ? (m_scrollbar->totalSize() - m_scrollbar->visibleSize()) : 0;
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 373 size_t totalSize = 0;
375 iterateOverNativeFiles(env, javaFilePath, javaCpuAbi, javaCpuAbi2, sumFiles, &totalSize);
377 return totalSize;
  /frameworks/base/include/utils/
BackupHelpers.h 40 int totalSize;
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 55 TextView startSizeTextView = (TextView) findViewById(R.id.totalsize);
  /frameworks/base/media/libstagefright/
WAVExtractor.cpp 140 size_t totalSize = U32_LE_AT(&header[4]);
143 size_t remainingSize = totalSize;
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 697 int totalSize = 0;
700 totalSize += media.getMediaSize();
704 Log.v(TAG, "finalResize: new message size: " + totalSize);
707 if (totalSize > MmsConfig.getMaxMessageSize()) {
710 setCurrentMessageSize(totalSize);
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 448 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize();
472 scrollbarInfo.totalSize = scrollbar->totalSize();
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 151 DWORD totalSize = GetGlyphOutlineW(dc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE,
153 if (totalSize == GDI_ERROR)
157 const char* endGlyph = &buffer[totalSize];

Completed in 1075 milliseconds

12 3 4 5 6 7