HomeSort by relevance Sort by last modified time
    Searched refs:bounds (Results 51 - 75 of 925) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/legacy/src/animator/
SkDrawSaveLayer.h 30 SkDrawRect* bounds; member in class:SkSaveLayer
  /external/skia/src/animator/
SkDrawSaveLayer.h 30 SkDrawRect* bounds; member in class:SkSaveLayer
  /external/skia/src/core/
SkBBoxHierarchy.h 27 * @param bounds The bounding box, should not be empty
33 virtual void insert(void* data, const SkIRect& bounds, bool defer = false) = 0;
  /frameworks/base/graphics/java/android/graphics/drawable/
PictureDrawable.java 69 Rect bounds = getBounds(); local
71 canvas.clipRect(bounds);
72 canvas.translate(bounds.left, bounds.top);
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForVariable.java 31 private ListOfTypes bounds; field in class:ImplForVariable
52 * @param bounds class and interface bounds
54 ImplForVariable(D genericDecl, String name, ListOfTypes bounds) {
57 this.bounds = bounds;
118 this.bounds = formalVar.bounds;
123 return bounds.getResolvedTypes().clone();
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObjectMac.mm 39 CGRect bounds = [self bounds];
42 CGContextShowTextAtPoint(context, bounds.origin.x + 3.0f, bounds.origin.y + bounds.size.height - 30.0f, text, strlen(text));
54 nullValue, @"bounds",
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
InsetDrawableTest.java 238 Rect bounds = d.getBounds(); local
239 assertEquals(0, bounds.left);
240 assertEquals(0, bounds.top);
241 assertEquals(0, bounds.right);
242 assertEquals(0, bounds.bottom);
247 assertEquals(10, bounds.left);
248 assertEquals(10, bounds.top);
249 assertEquals(-10, bounds.right);
250 assertEquals(-10, bounds.bottom);
261 Rect bounds = d.getBounds() local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeFactory.java 46 * {@link CanvasViewInfo}. The bounds of the node are set to the canvas view bounds.
58 return create(uiNode, null /*bounds*/);
71 private NodeProxy create(UiViewElementNode uiNode, Rectangle bounds) {
76 proxy = new NodeProxy(uiNode, bounds, this);
79 } else if (bounds != null && !SwtUtils.equals(proxy.getBounds(), bounds)) {
80 // Update the bounds if necessary
81 proxy.setBounds(bounds);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 230 Rectangle bounds = getBounds(); local
237 g2.setPaint(new GradientPaint(bounds.x, bounds.y,
238 focusGradient.getColor1(), bounds.x, bounds.x + bounds.height,
242 g2.setPaint(new GradientPaint(bounds.x, bounds.y, filteredGradient.getColor1(),
243 bounds.x, bounds.x + bounds.height, filteredGradient.getColor2()))
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDrawable.java 30 private Rect bounds = new Rect(0, 0, 0, 0); field in class:ShadowDrawable
76 return bounds;
81 this.bounds = rect;
86 bounds = new Rect(left, top, right, bottom);
91 Rect bounds = new Rect(); local
92 copyBounds(bounds);
93 return bounds;
97 public void copyBounds(Rect bounds) {
98 bounds.set(getBounds());
162 if (bounds != null ? !bounds.equals(that.bounds) : that.bounds != null) return false
    [all...]
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_arrow_model.cc 73 const gfx::Rect& bounds,
79 path.moveTo(bounds.x() + 0.5, bounds.bottom() + 0.5);
80 path.rLineTo(bounds.width() / 2.0, -bounds.height());
81 path.lineTo(bounds.right() + 0.5, bounds.bottom() + 0.5);
90 grad_points[0].set(SkIntToScalar(0), SkIntToScalar(bounds.bottom()));
92 SkIntToScalar(bounds.bottom() + InfoBar::kInfoBarHeight));
  /external/chromium/chrome/browser/ui/views/autocomplete/
touch_autocomplete_popup_contents_view.cc 74 gfx::Rect bounds(GetContentsBounds());
76 static_cast<double>(bounds.width()) / visible_children.size();
77 int x = bounds.x();
79 int next_x = bounds.x() + static_cast<int>(((i + 1) * child_width) + 0.5);
80 visible_children[i]->SetBounds(x, bounds.y(), next_x - x, bounds.height());
95 gfx::Rect bounds(GetContentsBounds());
98 canvas->DrawLineInt(color, (*i)->x(), bounds.y(), (*i)->x(),
99 bounds.bottom());
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
ResizableDialog.java 68 // track the current dialog bounds
105 Rectangle bounds = loadBounds(); local
106 if (bounds != null) {
107 int x = bounds.x;
108 int y = bounds.y;
133 // Bounds
137 * Loads bounds from {@link IDialogSettings}.
152 * Saves bounds to {@link IDialogSettings}.
154 private void saveBounds(Rectangle bounds) {
156 settings.put(X, bounds.x)
    [all...]
  /external/webkit/Source/WebKit/mac/Carbon/
HIViewAdapter.m 144 NSRect targetBounds = [self bounds];
148 targetBounds = [view bounds];
201 Rect bounds;
202 GetRegionBounds(inRegion, &bounds);
204 bounds.top, bounds.left, bounds.bottom, bounds.right);
208 Rect bounds, cntlBounds;
214 bounds.top, bounds.left, bounds.bottom, bounds.right)
    [all...]
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_button_border.cc 72 const gfx::Rect& bounds = view.bounds(); local
75 bounds.width() - set->top_right->width() - set->top_left->width(),
80 bounds.width() - set->top_right->width(), 0);
85 bounds.height() - set->top->height() - set->bottom_left->height(), false);
90 bounds.width() - set->right->width() - set->left->width(),
91 bounds.height() - set->bottom->height() - set->top->height(), false);
95 set->right->height(), bounds.width() - set->right->width(),
97 bounds.height() - set->bottom_right->height() - set->top_right->height(),
102 bounds.height() - set->bottom_left->height())
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LegacyCACFLayerTreeHost.cpp 192 rootLayer()->setBounds(bounds());
224 rootLayer()->setBounds(bounds());
256 CGRect bounds = this->bounds(); local
261 if (!wkCACFContextBeginUpdate(m_context, space, sizeof(space), CACurrentMediaTime(), bounds, windowDirtyRects.data(), windowDirtyRects.size()))
279 rect.y1 = bounds.origin.y + bounds.size.height - (r->origin.y + r->size.height);
300 wkCACFContextAddUpdateRect(m_context, bounds);
348 CGRect bounds = this->bounds(); local
    [all...]
  /external/webkit/Source/WebKit/android/
RenderSkinNinePatch.cpp 37 extern void NinePatch_Draw(SkCanvas* canvas, const SkRect& bounds,
86 void RenderSkinNinePatch::DrawNinePatch(SkCanvas* canvas, const SkRect& bounds,
93 if (patch.m_bitmap.width() >= bounds.width() || patch.m_bitmap.height() >= bounds.height()) {
98 SkNinePatch::DrawMesh(canvas, bounds, patch.m_bitmap,
103 NinePatch_Draw(canvas, bounds, patch.m_bitmap, *data, 0, 0);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
BoundedGenericMethodsTests.java 55 Type[] bounds = typeParameter.getBounds(); local
56 assertLenghtOne(bounds);
57 Type bound = bounds[0];
92 Type[] bounds = returnTypeVariable.getBounds(); local
93 assertLenghtOne(bounds);
94 Type bound = bounds[0];
  /external/webkit/Source/WebKit/win/
WebScrollBar.cpp 135 /* [in] */ RECT bounds)
137 IntRect rect(bounds.left, bounds.top, bounds.right-bounds.left, bounds.bottom-bounds.top);
170 /* [retval][out] */ RECT* bounds)
172 if (!bounds)
175 bounds->left = rect.x()
    [all...]
  /frameworks/base/core/java/android/widget/
ScrollBarDrawable.java 142 protected void onBoundsChange(Rect bounds) {
143 super.onBoundsChange(bounds);
147 protected void drawTrack(Canvas canvas, Rect bounds, boolean vertical) {
156 track.setBounds(bounds);
162 protected void drawThumb(Canvas canvas, Rect bounds, int offset, int length, boolean vertical) {
167 thumbRect.set(bounds.left, bounds.top + offset,
168 bounds.right, bounds.top + offset + length);
170 thumbRect.set(bounds.left + offset, bounds.top
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
base_tab.cc 77 // Draws the icon image at the center of |bounds|.
83 const gfx::Rect& bounds,
85 // Center the image within bounds.
86 int dst_x = bounds.x() - (icon_width - bounds.width()) / 2;
87 int dst_y = bounds.y() - (icon_height - bounds.height()) / 2;
426 gfx::Rect bounds = GetIconBounds(); local
427 if (bounds.IsEmpty())
430 // The size of bounds has to be kFaviconSize x kFaviconSize
560 gfx::Rect bounds = GetIconBounds(); local
    [all...]
  /external/chromium/chrome/browser/
blocked_content_container.cc 16 const gfx::Rect& bounds,
20 bounds(bounds),
26 gfx::Rect bounds; member in struct:BlockedContentContainer::BlockedContent
38 const gfx::Rect& bounds,
48 BlockedContent(tab_contents, disposition, bounds, user_gesture));
72 content.bounds,
142 i->bounds = new_bounds;
  /external/chromium/chrome/browser/ui/views/
chrome_views_delegate.cc 57 const gfx::Rect& bounds,
66 window_preferences->SetInteger("left", bounds.x());
67 window_preferences->SetInteger("top", bounds.y());
68 window_preferences->SetInteger("right", bounds.right());
69 window_preferences->SetInteger("bottom", bounds.bottom());
75 monitor_info_provider->GetMonitorWorkAreaMatching(bounds));
84 gfx::Rect* bounds) const {
99 bounds->SetRect(left, top, right - left, bottom - top);
chrome_views_delegate.h 27 const gfx::Rect& bounds,
31 gfx::Rect* bounds) const;
  /external/skia/src/effects/
SkMergeImageFilter.cpp 104 SkIRect bounds; local
105 if (!this->filterBounds(srcBounds, ctm, &bounds)) {
109 const int x0 = bounds.left();
110 const int y0 = bounds.top();
112 SkAutoTUnref<SkDevice> dst(proxy->createDevice(bounds.width(), bounds.height()));
142 loc->set(bounds.left(), bounds.top());

Completed in 650 milliseconds

1 23 4 5 6 7 8 91011>>