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

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DrawPoints.java 42 final int ptCount = (SEGS + 1) * 2;
43 mPts = new float[ptCount * 2];
  /external/skia/src/utils/
SkDashPath.cpp 255 SkScalar ptCount = pathLength * intervalCount / (float)intervalLength;
256 ptCount = SkTMin(ptCount, SkDashPath::kMaxDashCount);
257 int n = SkScalarCeilToInt(ptCount) << 2;
  /external/skia/tests/
PathOpsThreeWayTest.cpp 15 int ptCount;
58 if (oTest.ptCount == 1 && iTest.ptCount == 1) {
60 } else if (oTest.ptCount == 1 && iTest.ptCount == 4) {
62 } else if (oTest.ptCount == 4 && iTest.ptCount == 1) {
64 } else if (oTest.ptCount == 4 && iTest.ptCount == 4) {
  /external/skqp/src/utils/
SkDashPath.cpp 255 SkScalar ptCount = pathLength * intervalCount / (float)intervalLength;
256 ptCount = SkTMin(ptCount, SkDashPath::kMaxDashCount);
257 int n = SkScalarCeilToInt(ptCount) << 2;
  /external/skqp/tests/
PathOpsThreeWayTest.cpp 15 int ptCount;
58 if (oTest.ptCount == 1 && iTest.ptCount == 1) {
60 } else if (oTest.ptCount == 1 && iTest.ptCount == 4) {
62 } else if (oTest.ptCount == 4 && iTest.ptCount == 1) {
64 } else if (oTest.ptCount == 4 && iTest.ptCount == 4) {
  /external/skia/src/pathops/
SkOpEdgeBuilder.cpp 155 int ptCount = SkPathOpsVerbToPoints(verb);
156 fPathPts.append(ptCount, &pts[1]);
160 curve[0] = pts[ptCount];
SkOpAngle.cpp 487 int ptCount = SkPathOpsVerbToPoints(segment.verb());
489 for (int idx1 = 0; idx1 <= ptCount - 1; ++idx1) {
490 for (int idx2 = idx1 + 1; idx2 <= ptCount; ++idx2) {
581 int ptCount = index ? rPts : lPts;
582 for (int idx2 = 0; idx2 <= ptCount; ++idx2) {
    [all...]
SkPathOpsDebug.cpp 631 int ptCount = SkPathOpsVerbToPoints(verb);
632 for (int index = 0; index <= ptCount; ++index) {
634 if (index < ptCount - 1) {
    [all...]
  /external/skqp/src/pathops/
SkOpEdgeBuilder.cpp 155 int ptCount = SkPathOpsVerbToPoints(verb);
156 fPathPts.append(ptCount, &pts[1]);
160 curve[0] = pts[ptCount];
SkOpAngle.cpp 487 int ptCount = SkPathOpsVerbToPoints(segment.verb());
489 for (int idx1 = 0; idx1 <= ptCount - 1; ++idx1) {
490 for (int idx2 = idx1 + 1; idx2 <= ptCount; ++idx2) {
581 int ptCount = index ? rPts : lPts;
582 for (int idx2 = 0; idx2 <= ptCount; ++idx2) {
    [all...]
SkPathOpsDebug.cpp 631 int ptCount = SkPathOpsVerbToPoints(verb);
632 for (int index = 0; index <= ptCount; ++index) {
634 if (index < ptCount - 1) {
    [all...]
  /external/skia/src/core/
SkPath.cpp     [all...]
  /external/skqp/src/core/
SkPath.cpp     [all...]

Completed in 1033 milliseconds