OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stopd
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/graphics/java/android/graphics/
PathMeasure.java
114
* true. startD and
stopD
are pinned to legal values (0..getLength()).
115
* If startD <=
stopD
then return false (and leave dst untouched).
118
public boolean getSegment(float startD, float
stopD
, Path dst, boolean startWithMoveTo) {
119
return native_getSegment(native_instance, startD,
stopD
, dst.ni(), startWithMoveTo);
146
private static native boolean native_getSegment(int native_instance, float startD, float
stopD
, int native_path, boolean startWithMoveTo);
/external/skia/include/core/
SkPathMeasure.h
59
startD and
stopD
are pinned to legal values (0..getLength()). If startD <=
stopD
63
bool getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst, bool startWithMoveTo);
/external/skia/src/core/
SkPathMeasure.cpp
466
bool SkPathMeasure::getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst,
475
if (
stopD
> length) {
476
stopD
= length;
478
if (startD >=
stopD
) {
485
const Segment* stopSeg = this->distanceToSegment(
stopD
, &stopT);
Completed in 265 milliseconds