HomeSort by relevance Sort by last modified time
    Searched refs:mContentLength (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/webkit/
PluginData.java 44 private long mContentLength;
78 mContentLength = length;
108 return mContentLength;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 137 public long mContentLength = -1;
154 mContentLength = -1;
598 if (state.mContentLength == -1) {
603 final boolean lengthMismatched = (state.mContentLength != -1)
604 && (state.mCurrentBytes != state.mContentLength);
668 state.mContentLength,
709 state.mContentLength = getHeaderFieldLong(conn, "Content-Length", -1);
712 state.mContentLength = -1;
715 state.mTotalBytes = state.mContentLength;
716 mInfo.mTotalBytes = state.mContentLength;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 411 private int mContentLength;
461 // (2) mContentLength: the width (or height) we need to display all the
487 mContentLength = count * majorUnitSize + (count - 1) * mSlotGap;
491 padding[1] = Math.max(0, (majorLength - mContentLength) / 2);
615 int limit = WIDE ? mContentLength - mWidth : mContentLength - mHeight;

Completed in 2107 milliseconds