/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/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollbarTheme.cpp | 240 float overhang = std::max(0.0f, std::max(overhangAtStart, overhangAtEnd)); local 241 return scrollbar->totalSize() + overhang; 262 float overhang = 0; local 264 overhang = -scrollbar->currentPos(); 266 overhang = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize(); 267 float proportion = (scrollbar->visibleSize() - overhang) / usedTotalSize(scrollbar);
|
/external/chromium_org/third_party/openssl/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);
|
/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...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
StaggeredGridView.java | 1138 int overhang; local [all...] |