HomeSort by relevance Sort by last modified time
    Searched defs:insets (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium/chrome/browser/ui/views/
pinned_contents_info_bubble.cc 20 gfx::Insets insets; local
21 bubble_border_->GetInsets(&insets);
22 offset += kLeftMargin + insets.left() + 1;
sad_tab_view.cc 128 gfx::Insets insets = learn_more_link_->GetInsets(); local
131 insets.top(), sz.width(), sz.height());
wrench_menu.cc 70 gfx::Insets insets; local
72 border()->GetInsets(&insets);
73 pref.Enlarge(insets.width(), insets.height());
82 // insets, the actual painting is done in MenuButtonBackground.
91 virtual void GetInsets(gfx::Insets* insets) const {
92 insets->Set(MenuConfig::instance().item_top_margin,
515 gfx::Insets insets local
    [all...]
  /external/chromium/chrome/browser/chromeos/status/
status_area_button.cc 87 gfx::Insets insets = views::MenuButton::GetInsets(); local
88 gfx::Size prefsize(icon_width() + insets.width(),
89 icon_height() + insets.height());
101 insets_.Set(insets.top() + 1, insets.left(),
102 insets.bottom(), insets.right());
112 gfx::Insets StatusAreaButton::GetInsets() const {
  /external/chromium/chrome/browser/ui/views/bubble/
border_contents.cc 69 gfx::Insets insets; local
70 bubble_border_->GetInsets(&insets);
71 contents_bounds->Inset(insets.left() + kLeftMargin, insets.top() + kTopMargin,
72 insets.right() + kRightMargin, insets.bottom() + kBottomMargin);
90 gfx::Insets offscreen_insets;
103 gfx::Insets new_offscreen_insets;
120 gfx::Insets* offscreen_insets)
    [all...]
bubble_border.cc 38 gfx::Insets insets; local
39 GetInsets(&insets);
40 border_size.Enlarge(insets.left() + insets.right(),
41 insets.top() + insets.bottom());
116 void BubbleBorder::GetInsets(gfx::Insets* insets) const {
147 insets->Set(top, left, bottom, right)
152 gfx::Insets insets; local
213 gfx::Insets insets; local
    [all...]
  /external/chromium/chrome/browser/chromeos/frame/
bubble_frame_view.cc 14 #include "ui/gfx/insets.h"
100 gfx::Insets insets = GetInsets(); local
112 int top_height = insets.top();
120 return gfx::Rect(std::max(0, client_bounds.x() - insets.left()),
122 client_bounds.width() + insets.width(),
123 client_bounds.height() + top_height + insets.bottom());
143 gfx::Insets BubbleFrameView::GetInsets() const {
144 gfx::Insets border_insets;
147 gfx::Insets insets(kTitleTopPadding
163 gfx::Insets insets = GetInsets(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionHandles.java 95 Margins insets = canvas.getInsets(mItem.getNode().getFqcn()); local
96 if (insets != null) {
97 x1 += insets.left;
98 x2 -= insets.right;
99 y1 += insets.top;
100 y2 -= insets.bottom;
SelectionOverlay.java 203 Margins insets = mCanvas.getInsets(selectedNode.getFqcn()); local
209 if (insets != null) {
210 x1 += insets.left;
211 x2 -= insets.right;
212 y1 += insets.top;
213 y2 -= insets.bottom;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 27 import java.awt.Insets;
69 Insets insets = getInsets(); local
70 g.clipRect(insets.left, insets.top,
71 getWidth() - insets.left - insets.right,
72 getHeight() - insets.top - insets.bottom);
83 int x = (getWidth() - insets.left - insets.right - root.width) / 2
144 Insets insets = getInsets(); local
    [all...]
ScreenViewer.java 19 import java.awt.Insets;
90 new Insets(0, 0, 0, 0), 0, 0));
95 new Insets(0, 0, 0, 0), 0, 0));
138 new Insets(0, 0, 0, 0), 0, 0));
170 new Insets(0, 0, 0, 0), 0, 0));
200 new Insets(0, 0, 0, 0), 0, 0));
218 new Insets(0, 0, 0, 6), 0, 0));
229 new Insets(0, 0, 0, 0), 0, 0));
373 new Insets(0, 0, 0, 12), 0, 0 ));
379 new Insets(0, 0, 0, 12), 0, 0 ))
622 private final Insets insets = new Insets(0, 0, 0, 0); field in class:ScreenViewer.CrosshairPanel
650 Insets insets = getInsets(); local
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.cc 261 gfx::Insets insets = GetInsets(); local
262 textfield_->SetBounds(insets.left(), insets.top(),
263 width() - insets.width(),
264 height() - insets.height());
  /external/chromium/chrome/browser/chromeos/login/
new_user_view.cc 365 gfx::Insets insets = GetInsets(); local
369 this->width() - insets.right() -
371 int y = insets.top() + kLanguagesMenuPad;
372 int width = std::min(this->width() - insets.width() - 2 * kColumnPad,
378 width = std::min(this->width() - insets.width() - 2 * kColumnPad,
380 x = insets.left() + kLeftPad;
381 int max_width = this->width() - x - std::max(insets.right(), x);
401 y = this->height() - insets.bottom() - kBottomPad;
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 25 #include "ui/gfx/insets.h"
95 virtual void GetInsets(gfx::Insets* insets) const {
96 insets->Set(3, 8, 3, 8);
110 gfx::Insets insets(h, w, h, w);
111 return views::Painter::CreateImagePainter(*image, insets, true);
656 gfx::Insets insets; local
657 border->GetInsets(&insets);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CommonControllerOverlay.java 242 // | Action Bar | insets.top
245 // | Content Area | insets.right = insets.left = 0
248 // | Navigation Bar | insets.bottom
254 protected boolean fitSystemWindows(Rect insets) {
257 mWindowInsets.set(insets);
263 Rect insets = mWindowInsets; local
264 int pl = insets.left; // the left paddings
265 int pr = insets.right;
266 int pt = insets.top
    [all...]
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.cc 88 views::View* WrapWithPadding(views::View* view, const gfx::Insets& insets) {
90 // Use GridLayout to give some insets inside.
93 layout->SetInsets(insets);
157 const gfx::Insets kVerticalShortcutLabelInsets(1, 6, 1, 6);
158 const gfx::Insets kHorizontalShortcutLabelInsets(1, 3, 1, 0);
159 const gfx::Insets insets = local
164 WrapWithPadding(shortcut_label, insets);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 842 Margins insets = metadata.getInsets(); local
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-swt-1.0.9.jar 
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 
  /frameworks/base/core/java/android/widget/
GridLayout.java 23 import android.graphics.Insets;
862 Insets insets = getOpticalInsets(); local
864 int top = getPaddingTop() + insets.top
    [all...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java 1777 final ViewTreeObserver.InternalInsetsInfo insets = attachInfo.mGivenInternalInsets; local
    [all...]
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 

Completed in 701 milliseconds

1 2