OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fPaths
(Results
1 - 13
of
13
) sorted by null
/external/skia/gm/
convexpaths.cpp
52
fPaths
.push_back().moveTo(0, 0);
53
fPaths
.back().quadTo(50 * SK_Scalar1, 100 * SK_Scalar1,
55
fPaths
.back().lineTo(0, 0);
57
fPaths
.push_back().moveTo(0, 50 * SK_Scalar1);
58
fPaths
.back().quadTo(50 * SK_Scalar1, 0,
60
fPaths
.back().quadTo(50 * SK_Scalar1, 100 * SK_Scalar1,
63
fPaths
.push_back().addRect(0, 0,
67
fPaths
.push_back().addRect(0, 0,
71
fPaths
.push_back().addCircle(50 * SK_Scalar1, 50 * SK_Scalar1,
75
fPaths
.push_back().addOval(SkRect::MakeXYWH(0, 0
[
all
...]
conicpaths.cpp
27
SkPath* conicCirlce = &
fPaths
.push_back();
44
SkPath* hyperbola = &
fPaths
.push_back();
51
SkPath* thinHyperbola = &
fPaths
.push_back();
58
SkPath* veryThinHyperbola = &
fPaths
.push_back();
65
SkPath* closedHyperbola = &
fPaths
.push_back();
73
SkPath* nearParabola = &
fPaths
.push_back();
80
SkPath* thinEllipse = &
fPaths
.push_back();
87
SkPath* veryThinEllipse = &
fPaths
.push_back();
94
SkPath* closedEllipse = &
fPaths
.push_back();
115
for (int p = 0; p <
fPaths
.count(); ++p)
[
all
...]
hairlines.cpp
25
SkPath* lineAnglesPath = &
fPaths
.push_back();
40
SkPath* kindaTightQuad = &
fPaths
.push_back();
46
SkPath* tightQuad = &
fPaths
.push_back();
52
SkPath* tighterQuad = &
fPaths
.push_back();
58
SkPath* unevenTighterQuad = &
fPaths
.push_back();
66
SkPath* reallyTightQuad = &
fPaths
.push_back();
72
SkPath* closedQuad = &
fPaths
.push_back();
78
SkPath* unevenClosedQuad = &
fPaths
.push_back();
87
SkPath* problem1 = &
fPaths
.push_back();
96
SkPath* problem2 = &
fPaths
.push_back()
[
all
...]
complexclip2.cpp
42
fPaths
[0].addRoundRect(fRects[0], SkIntToScalar(5), SkIntToScalar(5));
46
fPaths
[1].addRoundRect(fRects[1], SkIntToScalar(5), SkIntToScalar(5));
50
fPaths
[2].addRoundRect(fRects[2], SkIntToScalar(5), SkIntToScalar(5));
54
fPaths
[3].addRoundRect(fRects[3], SkIntToScalar(5), SkIntToScalar(5));
58
fPaths
[4].addRoundRect(fRects[4], SkIntToScalar(5), SkIntToScalar(5));
127
canvas->drawPath(
fPaths
[k], rectPaint);
135
canvas->clipPath(
fPaths
[k],
153
SkPath
fPaths
[5];
/external/chromium_org/third_party/skia/src/core/
SkPathHeap.h
34
int count() const { return
fPaths
.count(); }
36
return *
fPaths
[index];
45
SkTDArray<SkPath*>
fPaths
;
SkPathHeap.cpp
23
fPaths
.setCount(count);
24
SkPath** ptr =
fPaths
.begin();
36
SkPath** iter =
fPaths
.begin();
37
SkPath** stop =
fPaths
.end();
47
*
fPaths
.append() = p;
48
return
fPaths
.count();
52
int count =
fPaths
.count();
55
SkPath* const* iter =
fPaths
.begin();
56
SkPath* const* stop =
fPaths
.end();
SkPicturePlayback.cpp
[
all
...]
SkPictureRecord.cpp
[
all
...]
/external/skia/src/core/
SkPathHeap.h
34
int count() const { return
fPaths
.count(); }
36
return *
fPaths
[index];
45
SkTDArray<SkPath*>
fPaths
;
SkPathHeap.cpp
23
fPaths
.setCount(count);
24
SkPath** ptr =
fPaths
.begin();
36
SkPath** iter =
fPaths
.begin();
37
SkPath** stop =
fPaths
.end();
47
*
fPaths
.append() = p;
48
return
fPaths
.count();
52
int count =
fPaths
.count();
55
SkPath* const* iter =
fPaths
.begin();
56
SkPath* const* stop =
fPaths
.end();
SkPicturePlayback.cpp
[
all
...]
SkPictureRecord.cpp
[
all
...]
/external/skia/bench/
PathBench.cpp
330
fPaths
.reset(kPathCnt);
335
this->makePath(&
fPaths
[i & (kPathCnt - 1)]);
342
fPaths
.reset(0);
350
SkAutoTArray<SkPath>
fPaths
;
366
fPaths
.reset(kPathCnt);
369
this->makePath(&
fPaths
[i]);
376
fCopies[idx] =
fPaths
[idx];
380
fPaths
.reset(0);
389
SkAutoTArray<SkPath>
fPaths
;
407
fPaths
.reset(kPathCnt)
[
all
...]
Completed in 3335 milliseconds