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

1 2 3

  /external/chromium_org/ui/gfx/
canvas_paint_mac.h 39 const NSRect& rectangle() const { function in class:gfx::CanvasSkiaPaint
canvas_paint_gtk.h 40 GdkRectangle rectangle() const { function in class:gfx::CanvasSkiaPaint
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 6 def rectangle(win, uly, ulx, lry, lrx): function
7 """Draw a rectangle with corners at the provided upper-left
183 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 6 def rectangle(win, uly, ulx, lry, lrx): function
7 """Draw a rectangle with corners at the provided upper-left
183 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 49 const BasicShapeRectangle* rectangle = static_cast<const BasicShapeRectangle*>(basicShape); local
52 rectangleValue->setX(pool.createValue(rectangle->x(), style));
53 rectangleValue->setY(pool.createValue(rectangle->y(), style));
54 rectangleValue->setWidth(pool.createValue(rectangle->width(), style));
55 rectangleValue->setHeight(pool.createValue(rectangle->height(), style));
56 rectangleValue->setRadiusX(pool.createValue(rectangle->cornerRadiusX(), style));
57 rectangleValue->setRadiusY(pool.createValue(rectangle->cornerRadiusY(), style));
98 const BasicShapeInsetRectangle* rectangle = static_cast<const BasicShapeInsetRectangle*>(basicShape); local
101 rectangleValue->setTop(cssValuePool().createValue(rectangle->top()));
102 rectangleValue->setRight(cssValuePool().createValue(rectangle->right()))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureFloatingPreviewText.java 152 final RectF rectangle = mGesturePreviewRectangle; local
167 rectangle.set(rectX, rectY, rectX + rectWidth, rectY + rectHeight);
  /art/test/044-proxy/src/
BasicTest.java 44 shapes.rectangle(10, 20);
47 quads.rectangle(15, 25);
130 public int rectangle(int x, int y); method in interface:Shapes
140 public int rectangle(int x, int y); method in interface:Quads
180 public int rectangle(int x, int y) { method in class:Mix
181 System.out.println("--- rectangle " + x + "," + y);
  /dalvik/tests/044-proxy/src/
BasicTest.java 43 shapes.rectangle(10, 20);
46 quads.rectangle(15, 25);
118 public int rectangle(int x, int y); method in interface:Shapes
128 public int rectangle(int x, int y); method in interface:Quads
164 public int rectangle(int x, int y) { method in class:Mix
165 System.out.println("--- rectangle " + x + "," + y);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 125 const BasicShapeRectangle* rectangle = static_cast<const BasicShapeRectangle*>(basicShape); local
127 floatValueForLength(rectangle->x(), boxWidth),
128 floatValueForLength(rectangle->y(), boxHeight),
129 floatValueForLength(rectangle->width(), boxWidth),
130 floatValueForLength(rectangle->height(), boxHeight));
132 floatValueForLength(rectangle->cornerRadiusX(), boxWidth),
133 floatValueForLength(rectangle->cornerRadiusY(), boxHeight));
186 const BasicShapeInsetRectangle* rectangle = static_cast<const BasicShapeInsetRectangle*>(basicShape); local
187 float left = floatValueForLength(rectangle->left(), boxWidth);
188 float top = floatValueForLength(rectangle->top(), boxHeight)
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcRects.cpp 48 * # White YV12 rectangle, with overlapping turquoise
49 * # RGBA8888 rectangle at 30%% (alpha: 0.7) transparency
68 * of the graphic format and then the display frame rectangle where
69 * the frame will be displayed. The display frame rectangle is
144 class Rectangle {
146 Rectangle() : format(defaultFormat), transform(defaultTransform),
165 list<Rectangle> rectangle; variable
174 static Rectangle parseRect(string rectStr);
251 // Parse rectangle description
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
QuickDraw_Graphics_Suite.py 26 """bounds - the smallest rectangle that contains the entire arc """
30 """definition rect - the rectangle that contains the circle or oval used to define the arc """
192 rectangle = rectangles variable
195 """rounded rectangle - A rounded rectangle """
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
platform_x11.c 336 xcb_rectangle_t rectangle; local
363 rectangle.x = 0;
364 rectangle.y = 0;
365 rectangle.width = dri2_surf->base.Width;
366 rectangle.height = dri2_surf->base.Height;
368 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle);
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
platform_x11.c 336 xcb_rectangle_t rectangle; local
363 rectangle.x = 0;
364 rectangle.y = 0;
365 rectangle.width = dri2_surf->base.Width;
366 rectangle.height = dri2_surf->base.Height;
368 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle);
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
omx_vdec.h 816 OMX_CONFIG_RECTTYPE rectangle; member in class:omx_vdec
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
omx_vdec.h 905 OMX_CONFIG_RECTTYPE rectangle; member in class:omx_vdec
    [all...]
omx_vdec_hevc.h 857 OMX_CONFIG_RECTTYPE rectangle; member in class:omx_vdec
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 2516 Rect rectangle = new Rect(10, 10, 20, 30); local
2547 Rect rectangle = new Rect(); local
    [all...]
  /frameworks/base/core/java/android/view/
View.java 299 * The geometry of a view is that of a rectangle. A view has a location,
308 * coordinate of the rectangle representing the view. The latter returns the
309 * top, or Y, coordinate of the rectangle representing the view. These methods
319 * rectangle representing the view. For instance, calling {@link #getRight()}
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 

Completed in 2472 milliseconds

1 2 3