OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:topPt
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCurve.h
106
SkDPoint
topPt
= quad.top(startT, endT);
107
return
topPt
.asSkPoint();
113
SkDPoint
topPt
= cubic.top(startT, endT);
114
return
topPt
.asSkPoint();
SkDLineIntersection.cpp
338
SkDPoint
topPt
= { x, top };
339
if ((t = line.exactPoint(
topPt
)) >= 0) {
340
insert(t, (double) flipped,
topPt
);
371
if ((t = line.nearPoint(
topPt
, NULL)) >= 0) {
372
insert(t, (double) flipped,
topPt
);
SkPathOpsQuad.cpp
52
SkDPoint
topPt
= sub[0];
53
if (
topPt
.fY > sub[2].fY || (
topPt
.fY == sub[2].fY &&
topPt
.fX > sub[2].fX)) {
54
topPt
= sub[2];
61
if (
topPt
.fY > test.fY || (
topPt
.fY == test.fY &&
topPt
.fX > test.fX)) {
62
topPt
= test;
66
return
topPt
;
[
all
...]
SkOpSegment.cpp
121
SkPoint
topPt
= {SK_ScalarMax, SK_ScalarMax};
136
if (
topPt
.fY > xy.fY || (
topPt
.fY == xy.fY &&
topPt
.fX > xy.fX)) {
137
topPt
= xy;
144
if (
topPt
.fY > curveTop.fY || (
topPt
.fY == curveTop.fY
145
&&
topPt
.fX > curveTop.fX)) {
146
topPt
= curveTop;
157
return
topPt
;
[
all
...]
SkPathOpsCubic.cpp
373
SkDPoint
topPt
= sub[0];
374
if (
topPt
.fY > sub[3].fY || (
topPt
.fY == sub[3].fY &&
topPt
.fX > sub[3].fX)) {
375
topPt
= sub[3];
383
if (
topPt
.fY > mid.fY || (
topPt
.fY == mid.fY &&
topPt
.fX > mid.fX)) {
384
topPt
= mid;
388
return
topPt
;
[
all
...]
/external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticUtilities.cpp
52
_Point
topPt
= sub[0];
53
if (
topPt
.y > sub[2].y || (
topPt
.y == sub[2].y &&
topPt
.x > sub[2].x)) {
54
topPt
= sub[2];
62
if (
topPt
.y > test.y || (
topPt
.y == test.y &&
topPt
.x > test.x)) {
63
topPt
= test;
67
return
topPt
;
[
all
...]
CubicUtilities.cpp
383
_Point
topPt
= sub[0];
384
if (
topPt
.y > sub[3].y || (
topPt
.y == sub[3].y &&
topPt
.x > sub[3].x)) {
385
topPt
= sub[3];
394
if (
topPt
.y > mid.y || (
topPt
.y == mid.y &&
topPt
.x > mid.x)) {
395
topPt
= mid;
399
return
topPt
;
[
all
...]
Simplify.cpp
491
_Point
topPt
= top(quad, startT, endT);
492
return
topPt
.asSkPoint();
497
_Point
topPt
= top(cubic, startT, endT);
498
return
topPt
.asSkPoint();
[
all
...]
Completed in 768 milliseconds