OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:verticalIntersect
(Results
1 - 8
of
8
) sorted by null
/external/skia/src/pathops/
SkDQuadLineIntersection.cpp
244
int
verticalIntersect
(double axisIntercept, double roots[2]) {
254
int
verticalIntersect
(double axisIntercept, double top, double bottom, bool flipped) {
260
int roots =
verticalIntersect
(axisIntercept, rootVals);
434
return q.
verticalIntersect
(x, top, bottom, flipped);
459
return q.
verticalIntersect
(x, roots);
468
int SkDQuad::
verticalIntersect
(double xIntercept, double roots[2]) const {
SkDConicLineIntersection.cpp
145
int
verticalIntersect
(double axisIntercept, double roots[2]) {
150
int
verticalIntersect
(double axisIntercept, double top, double bottom, bool flipped) {
156
int count = this->
verticalIntersect
(axisIntercept, roots);
358
return c.
verticalIntersect
(x, top, bottom, flipped);
383
return c.
verticalIntersect
(x, roots);
SkPathOpsQuad.h
109
int
verticalIntersect
(double xIntercept, double roots[2]) const;
SkDCubicLineIntersection.cpp
230
static int
VerticalIntersect
(const SkDCubic& c, double axisIntercept, double roots[3]) {
247
int
verticalIntersect
(double axisIntercept, double top, double bottom, bool flipped) {
253
int count =
VerticalIntersect
(fCubic, axisIntercept, roots);
429
return c.
verticalIntersect
(x, top, bottom, flipped);
453
int SkDCubic::
verticalIntersect
(double xIntercept, double roots[3]) const {
454
return LineCubicIntersections::
VerticalIntersect
(*this, xIntercept, roots);
SkPathOpsCubic.h
103
int
verticalIntersect
(double xIntercept, double roots[3]) const;
SkPathOpsCurve.h
399
return cubic.set(a).
verticalIntersect
(x, roots);
/external/skia/src/core/
SkGlyphCache.cpp
277
int count = yAxis ? quad.
verticalIntersect
(axis, roots)
290
int count = yAxis ? cubic.
verticalIntersect
(axis, roots)
SkGeometry.cpp
855
return cubic_dchop_at_intercept(src, x, dst, &SkDCubic::
verticalIntersect
);
[
all
...]
Completed in 211 milliseconds