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

  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 395 final int overhang; local
399 overhang = fillLeft(mFirstPosition - 1, allowOverhang);
402 overhang = fillRight(mFirstPosition + getChildCount(), allowOverhang);
405 movedBy = Math.min(overhang, allowOverhang);
409 overScrolledBy = allowOverhang - overhang;
507 private int fillRight(int pos, int overhang) {
508 int end = (getRight() - getLeft()) + overhang;
519 private int fillLeft(int pos, int overhang) {
520 int end = getPaddingLeft() - overhang;
  /external/openssl/ssl/
s3_cbc.c 644 * overhang is the number of bytes beyond a single
647 unsigned overhang = header_length-md_block_size; local
649 memcpy(first_block, header + md_block_size, overhang);
650 memcpy(first_block + overhang, data, md_block_size-overhang);
653 md_transform(md_state.c, data + md_block_size*i - overhang);
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 394 final int overhang; local
398 overhang = fillUp(mFirstPosition - 1, allowOverhang);
401 overhang = fillDown(mFirstPosition + getChildCount(), allowOverhang) + mItemMargin;
404 movedBy = Math.min(overhang, allowOverhang);
408 overScrolledBy = allowOverhang - overhang;
878 * @param overhang the number of extra pixels to fill beyond the current top edge
879 * @return the max overhang beyond the beginning of the view of any added items at the top
881 final int fillUp(int fromPosition, int overhang) {
888 final int fillTo = gridTop - overhang;
    [all...]
  /external/webkit/Source/WebCore/platform/
ScrollbarThemeComposite.cpp 265 float overhang = max(0.0f, max(overhangAtStart, overhangAtEnd)); local
266 return scrollbar->totalSize() + overhang;
  /external/webkit/Source/WebCore/platform/mac/
ScrollbarThemeMac.mm 431 float overhang = 0;
436 overhang = -scrollbar->currentPos();
440 overhang = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize();
460 (static_cast<CGFloat>(scrollbar->visibleSize()) - overhang) / scrollbar->totalSize(),

Completed in 167 milliseconds