/external/chromium_org/third_party/WebKit/Source/core/css/ |
BasicShapeFunctions.cpp | 86 const BasicShapePolygon* polygon = static_cast<const BasicShapePolygon*>(basicShape); local 89 polygonValue->setWindRule(polygon->windRule()); 90 const Vector<Length>& values = polygon->values(); 174 RefPtr<BasicShapePolygon> polygon = BasicShapePolygon::create(); local 176 polygon->setWindRule(polygonValue->windRule()); 179 polygon->appendPoint(convertToLength(state, values.at(i).get()), convertToLength(state, values.at(i + 1).get())); 181 basicShape = polygon.release();
|
/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/chrome/browser/first_run/ |
try_chrome_dialog_view.cc | 233 static const POINT polygon[] = { local 238 HRGN region = ::CreatePolygonRgn(polygon, arraysize(polygon), WINDING);
|
/external/chromium/chrome/browser/ui/views/ |
dropdown_bar_host.cc | 201 // |w| is used to make it easier to create the part of the polygon that curves 210 // This polygon array represents the outline of the background image for the 213 const Path::Point polygon[] = { local 219 // Find the largest x and y value in the polygon. 221 for (size_t i = 0; i < arraysize(polygon); i++) { 222 max_x = std::max(max_x, static_cast<int>(polygon[i].x)); 223 max_y = std::max(max_y, static_cast<int>(polygon[i].y)); 226 // We then create the polygon and use SetWindowRgn to force the window to draw 228 Path path(polygon, arraysize(polygon)); [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
dropdown_bar_host.cc | 235 // |w| is used to make it easier to create the part of the polygon that curves 244 // This polygon array represents the outline of the background image for the 247 const Path::Point polygon[] = { local 253 // Find the largest x and y value in the polygon. 255 for (size_t i = 0; i < arraysize(polygon); i++) { 256 max_x = std::max(max_x, static_cast<int>(polygon[i].x)); 257 max_y = std::max(max_y, static_cast<int>(polygon[i].y)); 260 // We then create the polygon and use SetWindowRgn to force the window to draw 262 Path path(polygon, arraysize(polygon)); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
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/chrome/browser/first_run/ |
try_chrome_dialog_view.cc | 323 static const POINT polygon[] = { local 328 HRGN region = ::CreatePolygonRgn(polygon, arraysize(polygon), WINDING);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
Shape.cpp | 170 const BasicShapePolygon* polygon = static_cast<const BasicShapePolygon*>(basicShape); local 171 const Vector<Length>& values = polygon->values(); 181 shape = createPolygonShape(vertices.release(), polygon->windRule());
|
PolygonShape.cpp | 140 static inline PassOwnPtr<FloatPolygon> computeShapePaddingBounds(const FloatPolygon& polygon, float padding, WindRule fillRule) 145 for (unsigned i = 0; i < polygon.numberOfEdges(); ++i) { 146 const FloatPolygonEdge& thisEdge = polygon.edgeAt(i); 161 static inline PassOwnPtr<FloatPolygon> computeShapeMarginBounds(const FloatPolygon& polygon, float margin, WindRule fillRule) 166 for (unsigned i = 0; i < polygon.numberOfEdges(); ++i) { 167 const FloatPolygonEdge& thisEdge = polygon.edgeAt(i); 211 ASSERT(intersection.edge && intersection.edge->polygon()); 212 const FloatPolygon& polygon = *(intersection.edge->polygon()); local 217 prevVertex = polygon.vertexAt(thisEdge.previousEdge().vertexIndex1()) 368 const FloatPolygon& polygon = shapeMarginBounds(); local 396 const FloatPolygon& polygon = shapePaddingBounds(); local 452 const FloatPolygon& polygon = shapePaddingBounds(); local [all...] |
/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 | |