HomeSort by relevance Sort by last modified time
    Searched defs:polygon (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 96 const BasicShapePolygon* polygon = static_cast<const BasicShapePolygon*>(basicShape); local
99 polygonValue->setWindRule(polygon->windRule());
100 const Vector<Length>& values = polygon->values();
236 RefPtr<BasicShapePolygon> polygon = BasicShapePolygon::create(); local
238 polygon->setWindRule(polygonValue->windRule());
241 polygon->appendPoint(convertToLength(state, values.at(i).get()), convertToLength(state, values.at(i + 1).get()));
243 basicShape = polygon.release();
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygonTest.cpp 49 const FloatPolygon& polygon() const { return *m_polygon; } function in class:WebCore::FloatPolygonTestValue
66 static Vector<const FloatPolygonEdge*> sortedOverlappingEdges(const FloatPolygon& polygon, float minY, float maxY)
69 polygon.overlappingEdges(minY, maxY, result);
90 const FloatPolygon& triangle = triangleTestValue.polygon();
186 const FloatPolygon& triangle = triangleTestValue.polygon();
213 const FloatPolygon& triangle = triangleTestValue.polygon();
229 const FloatPolygon& emptyPolygon = emptyPolygonTestValue.polygon(); \
268 const FloatPolygon& trapezoid = trapezoidTestValue.polygon();
283 * Test FloatPolygon::contains() with a non-convex rectilinear polygon. The polygon has the same shap
    [all...]
FloatPolygon.h 126 const FloatPolygon* polygon() const { return m_polygon; } function in class:WebCore::FloatPolygonEdge
132 // Edge vertex index1 is less than index2, except the last edge, where index2 is 0. When a polygon edge
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
u_unfilled_gen.py 38 'polygon')
168 def polygon(intype, outtype): function
169 preamble(intype, outtype, prim='polygon')
200 polygon(intype, outtype)
u_indices_gen.py 43 'polygon')
226 def polygon(intype, outtype, inpv, outpv): function
227 preamble(intype, outtype, inpv, outpv, prim='polygon')
267 polygon(intype, outtype, inpv, outpv)
  /external/mesa3d/src/gallium/auxiliary/indices/
u_unfilled_gen.py 38 'polygon')
168 def polygon(intype, outtype): function
169 preamble(intype, outtype, prim='polygon')
200 polygon(intype, outtype)
u_indices_gen.py 43 'polygon')
226 def polygon(intype, outtype, inpv, outpv): function
227 preamble(intype, outtype, inpv, outpv, prim='polygon')
267 polygon(intype, outtype, inpv, outpv)
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host.cc 218 // |w| is used to make it easier to create the part of the polygon that curves
227 // This polygon array represents the outline of the background image for the
230 const Path::Point polygon[] = { local
236 // Find the largest x and y value in the polygon.
238 for (size_t i = 0; i < arraysize(polygon); i++) {
239 max_x = std::max(max_x, static_cast<int>(polygon[i].x));
240 max_y = std::max(max_y, static_cast<int>(polygon[i].y));
243 // We then create the polygon and use SetWindowRgn to force the window to draw
245 Path path(polygon, arraysize(polygon));
    [all...]
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.cc 315 static const POINT polygon[] = { local
320 HRGN region = ::CreatePolygonRgn(polygon, arraysize(polygon), WINDING);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 131 const BasicShapePolygon* polygon = static_cast<const BasicShapePolygon*>(basicShape); local
132 const Vector<Length>& values = polygon->values();
142 shape = createPolygonShape(vertices.release(), polygon->windRule());
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
polygon.c 27 #include "polygon.h"
52 struct polygon struct
70 static void polygon_print(struct polygon *poly)
74 debug_printf("Polygon %p, size = %d\n", poly, poly->num_verts);
84 struct polygon * polygon_create(int size)
86 struct polygon *poly = (struct polygon*)malloc(sizeof(struct polygon));
97 struct polygon * polygon_create_from_data(float *data, int size)
99 struct polygon *poly = polygon_create(size)
    [all...]
  /external/clang/test/Sema/
flexible-array-init.c 43 struct polygon { struct
47 struct polygon poly = {
  /external/mesa3d/src/gallium/state_trackers/vega/
polygon.c 27 #include "polygon.h"
52 struct polygon struct
70 static void polygon_print(struct polygon *poly)
74 debug_printf("Polygon %p, size = %d\n", poly, poly->num_verts);
84 struct polygon * polygon_create(int size)
86 struct polygon *poly = (struct polygon*)malloc(sizeof(struct polygon));
97 struct polygon * polygon_create_from_data(float *data, int size)
99 struct polygon *poly = polygon_create(size)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
QuickDraw_Graphics_Suite.py 160 class polygon(aetools.ComponentItem): class in inherits:aetools.ComponentItem
161 """polygon - A polygon """
164 """point list - the list of points that define the polygon """
168 polygons = polygon
286 polygon._superclassnames = []
287 polygon._privpropdict = {
290 polygon._privelemdict = {
365 'cpgn' : polygon,
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
attrib.c 49 #include "polygon.h"
269 attr->CullFace = ctx->Polygon.CullFlag;
306 attr->PolygonOffsetPoint = ctx->Polygon.OffsetPoint;
307 attr->PolygonOffsetLine = ctx->Polygon.OffsetLine;
308 attr->PolygonOffsetFill = ctx->Polygon.OffsetFill;
309 attr->PolygonSmooth = ctx->Polygon.SmoothFlag;
310 attr->PolygonStipple = ctx->Polygon.StippleFlag;
395 memcpy( attr, &ctx->Polygon, sizeof(struct gl_polygon_attrib) );
521 TEST_AND_UPDATE(ctx->Polygon.CullFlag, enable->CullFace, GL_CULL_FACE);
589 TEST_AND_UPDATE(ctx->Polygon.OffsetPoint, enable->PolygonOffsetPoint
1175 const struct gl_polygon_attrib *polygon; local
    [all...]
  /external/mesa3d/src/mesa/main/
attrib.c 49 #include "polygon.h"
269 attr->CullFace = ctx->Polygon.CullFlag;
306 attr->PolygonOffsetPoint = ctx->Polygon.OffsetPoint;
307 attr->PolygonOffsetLine = ctx->Polygon.OffsetLine;
308 attr->PolygonOffsetFill = ctx->Polygon.OffsetFill;
309 attr->PolygonSmooth = ctx->Polygon.SmoothFlag;
310 attr->PolygonStipple = ctx->Polygon.StippleFlag;
395 memcpy( attr, &ctx->Polygon, sizeof(struct gl_polygon_attrib) );
521 TEST_AND_UPDATE(ctx->Polygon.CullFlag, enable->CullFace, GL_CULL_FACE);
589 TEST_AND_UPDATE(ctx->Polygon.OffsetPoint, enable->PolygonOffsetPoint
1175 const struct gl_polygon_attrib *polygon; local
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 342 milliseconds