HomeSort by relevance Sort by last modified time
    Searched refs:BOTTOM (Results 201 - 225 of 366) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 131 String bottom = first.getStringAttr(uri, ATTR_LAYOUT_MARGIN_BOTTOM);
133 right, top, bottom);
693 case BOTTOM:
728 case BOTTOM:
786 if (state.horizontalEdgeType == SegmentType.BOTTOM && !state.wrapHeight) {
    [all...]
AbsoluteLayoutRule.java 124 // Use preview lines to indicate the bottom quadrant as well (to
221 * this case, the bottom right corner will stay fixed).
245 if (horizontalEdge == SegmentType.BOTTOM && verticalEdge == SegmentType.RIGHT) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 127 feedback.tooltipY = SegmentType.BOTTOM;
  /external/chromium_org/ash/display/
display_controller_unittest.cc 423 // Layout the secondary display to the bottom of the primary.
424 SetSecondaryDisplayLayout(DisplayLayout::BOTTOM);
491 // Layout to the bottom with an offset.
492 SetSecondaryDisplayLayoutAndOffset(DisplayLayout::BOTTOM, -200);
503 SetSecondaryDisplayLayoutAndOffset(DisplayLayout::BOTTOM, 490);
513 SetSecondaryDisplayLayoutAndOffset(DisplayLayout::BOTTOM, -400);
524 SetSecondaryDisplayLayoutAndOffset(DisplayLayout::BOTTOM, -400);
612 SetDefaultDisplayLayout(DisplayLayout::BOTTOM);
    [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 135 @ViewDebug.FlagToString(mask = Gravity.BOTTOM,
136 equals = Gravity.BOTTOM, name = "BOTTOM"),
360 int bottom = 0; local
362 bottom = getHeight() - getPaddingBottom() - mDividerHeight;
365 bottom = child.getBottom() + lp.bottomMargin;
367 drawHorizontalDivider(canvas, bottom);
516 case Gravity.BOTTOM:
    [all...]
CheckedTextView.java 321 protected void internalSetPadding(int left, int top, int right, int bottom) {
322 super.internalSetPadding(left, top, right, bottom);
375 case Gravity.BOTTOM:
386 final int bottom = top + height; local
396 checkMarkDrawable.setBounds(mScrollX + left, top, mScrollX + right, bottom);
401 background.setHotspotBounds(mScrollX + left, top, mScrollX + right, bottom);
CompoundButton.java 385 case Gravity.BOTTOM:
394 final int bottom = top + drawableHeight; local
398 buttonDrawable.setBounds(left, top, right, bottom);
402 background.setHotspotBounds(left, top, right, bottom);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configDialog.py 101 frameActionButtons.pack(side=BOTTOM)
102 Frame(self, height=2, borderwidth=0).pack(side=BOTTOM)
247 buttonSaveCustomTheme.pack(side=BOTTOM,fill=X,padx=5,pady=5)
303 frameCustom.pack(side=BOTTOM,padx=5,pady=5,expand=TRUE,fill=BOTH)
304 frameKeySets.pack(side=BOTTOM,padx=5,pady=5,fill=BOTH)
306 self.buttonNewKeys.pack(side=BOTTOM,fill=X,padx=5,pady=5)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configDialog.py 101 frameActionButtons.pack(side=BOTTOM)
102 Frame(self, height=2, borderwidth=0).pack(side=BOTTOM)
247 buttonSaveCustomTheme.pack(side=BOTTOM,fill=X,padx=5,pady=5)
303 frameCustom.pack(side=BOTTOM,padx=5,pady=5,expand=TRUE,fill=BOTH)
304 frameKeySets.pack(side=BOTTOM,padx=5,pady=5,fill=BOTH)
306 self.buttonNewKeys.pack(side=BOTTOM,fill=X,padx=5,pady=5)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ToolbarWidgetWrapper.java 451 lp.gravity = Gravity.START | Gravity.BOTTOM;
513 lp.gravity = Gravity.START | Gravity.BOTTOM;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 540 lp.gravity = isLayoutRtl ? Gravity.BOTTOM : Gravity.TOP;
545 lp.gravity = isLayoutRtl ? Gravity.BOTTOM : Gravity.TOP;
574 protected void onLayout (boolean changed, int left, int top, int right, int bottom) {
577 changed?"changed":"notchanged", left, top, right, bottom));
578 super.onLayout(changed, left, top, right, bottom);
632 final boolean offscreen = r.right > size.x || r.bottom > size.y;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ToolbarWidgetWrapper.java 478 lp.gravity = Gravity.START | Gravity.BOTTOM;
540 lp.gravity = Gravity.START | Gravity.BOTTOM;
  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 72 public static final int BOTTOM = 3;
117 Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM);
125 mWidgetPaddingBottom = p.bottom;
344 mTmpRect.right, mTmpRect.bottom);
359 int heightGap = landMetrics.bottom;
367 heightGap = portMetrics.bottom;
425 // In this case we shift the touch region up to end at the bottom of the DragLayer
  /packages/apps/Launcher3/src/com/android/launcher3/
AppWidgetResizeFrame.java 70 public static final int BOTTOM = 3;
114 Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM);
122 mWidgetPaddingBottom = p.bottom;
341 mTmpRect.right, mTmpRect.bottom);
356 int heightGap = landMetrics.bottom;
364 heightGap = portMetrics.bottom;
421 // In this case we shift the touch region up to end at the bottom of the DragLayer
  /cts/tests/tests/widget/src/android/widget/cts/
GridLayoutTest.java 103 new Alignment("BOTTOM", Gravity.BOTTOM) {
  /frameworks/base/core/java/android/app/
ActionBar.java     [all...]
MediaRouteButton.java 231 // Show along the bottom center
232 cheatSheet.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, height);
378 final int bottom = getHeight() - getPaddingBottom(); local
383 final int drawTop = top + (bottom - top - drawHeight) / 2;
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItemView.java 278 // Show along the bottom center
279 cheatSheet.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, height);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
ScreenPinningRequest.java 121 : (Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GradientsActivity.java 86 Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM));
224 float bottom = 40.0f + mDrawHeight; local
234 bottom += 40.0f + mDrawHeight;
245 bottom -= 40.0f + mDrawHeight;
249 mMatrix.postTranslate(left, bottom);
252 canvas.drawRect(left, bottom - mDrawHeight, right, bottom, mPaint);
255 bottom += 40.0f + mDrawHeight;
262 canvas.drawRect(left, top, left + mDrawWidth, bottom, mPaint);
266 top = bottom + 20.0f
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuItemView.java 261 // Show along the bottom center
262 cheatSheet.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, height);
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFD.cpp 313 vRange = CameraFDResult::BOTTOM - CameraFDResult::TOP;
365 trans_top = 3; // bottom is now top
367 trans_bot = 1; // top is not bottom
373 trans_bot = 3; // bottom
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
SettingsDialog.java 69 lp.gravity = Gravity.BOTTOM | Gravity.CENTER;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ResizeGesture.java 197 // bottom.
208 // The user is dragging the bottom edge, so the position is anchored on the
228 return SegmentType.BOTTOM;
  /external/chromium_org/cc/resources/
picture_layer_tiling.cc 197 tiling_data_.TileYIndexFromSrcCoord(live_tiles_rect_.bottom() - 1);
210 tiling_data_.TileYIndexFromSrcCoord(live_tiles_rect_.bottom() - 1);
359 content_rect.bottom() - 1);
406 // Iteration happens left->right, top->bottom. Running off the bottom-right
413 min_top = last_geometry_rect.bottom();
425 DCHECK_EQ(last_geometry_rect.bottom(), current_geometry_rect_.bottom());
509 int old_bottom = last_visible_rect_in_content_space_.bottom();
514 int new_bottom = visible_rect_in_content_space.bottom();
    [all...]

Completed in 2945 milliseconds

1 2 3 4 5 6 7 891011>>