HomeSort by relevance Sort by last modified time
    Searched refs:numPoints (Results 1 - 18 of 18) sorted by null

  /development/samples/GlobalTime/src/com/android/globaltime/
PointCloud.java 47 int numPoints = len / 3;
48 short[] indices = new short[numPoints];
49 for (int i = 0; i < numPoints; i++) {
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 230 int numPoints = m_path->getPoints(0, 0);
238 numPoints -= 1;
243 numPoints -= 1;
250 numPoints -= 2;
257 numPoints -= 3;
270 if (numPoints) {
271 ASSERT(numPoints==1);
GraphicsContextSkia.cpp 449 void GraphicsContext::drawConvexPolygon(size_t numPoints,
456 if (numPoints <= 1)
461 path.incReserve(numPoints);
464 for (size_t i = 1; i < numPoints; i++) {
    [all...]
  /external/freetype/include/freetype/
ftoutln.h 127 /* numPoints :: The maximal number of points within the outline. */
143 FT_UInt numPoints,
150 FT_UInt numPoints,
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 281 int numPoints = m_path->getPoints(0, 0);
289 numPoints -= 1;
294 numPoints -= 1;
301 numPoints -= 2;
308 numPoints -= 3;
321 if (numPoints) {
322 ASSERT(numPoints==1);
GraphicsContextAndroid.cpp 611 void GraphicsContext::drawConvexPolygon(size_t numPoints, const FloatPoint* points, bool shouldAntialias)
616 if (numPoints <= 1)
622 path.incReserve(numPoints);
624 for (size_t i = 1; i < numPoints; i++)
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.h 109 int n = numPoints();
113 int numPoints() const;
PlatformPathWince.cpp 297 int PlatformPathElement::numPoints() const
450 int n = numPoints();
803 int n = it->numPoints();
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.h 93 void drawPolygon(size_t numPoints, const FloatPoint* points, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
GraphicsContextOpenVG.cpp 131 void GraphicsContext::drawConvexPolygon(size_t numPoints, const FloatPoint* points, bool shouldAntialias)
136 m_data->drawPolygon(numPoints, points);
PainterOpenVG.cpp 878 void PainterOpenVG::drawPolygon(size_t numPoints, const FloatPoint* points, VGbitfield specifiedPaintModes)
896 const VGint numSegments = numPoints + 1;
897 const VGint numCoordinates = numPoints * 2;
908 for (int i = 0; i < numPoints; ++i) {
913 if (vguPolygon(path, vgPoints.data(), numPoints, VG_TRUE /* closed */) == VGU_NO_ERROR) {
  /external/webkit/WebCore/platform/graphics/chromium/
HarfbuzzSkia.cpp 142 int numPoints = path.getPoints(NULL, 0);
143 if (point >= numPoints)
152 *resultingNumPoints = numPoints;
  /external/webkit/WebCore/html/
HTMLAreaElement.cpp 133 int numPoints = m_coordsLen / 2;
135 for (int i = 1; i < numPoints; ++i)
  /external/freetype/src/base/
ftoutln.c 295 FT_UInt numPoints,
307 if ( FT_NEW_ARRAY( anoutline->points, numPoints ) ||
308 FT_NEW_ARRAY( anoutline->tags, numPoints ) ||
312 anoutline->n_points = (FT_UShort)numPoints;
330 FT_UInt numPoints,
337 return FT_Outline_New_Internal( library->memory, numPoints,
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 265 * @param numPoints the number of points
268 public static float[] temporalSampling(GestureStroke stroke, int numPoints) {
269 final float increment = stroke.length / (numPoints - 1);
270 int vectorLength = numPoints * 2;
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 237 void drawConvexPolygon(size_t numPoints, const FloatPoint*, bool shouldAntialias = false);
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 311 milliseconds