OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stopd
(Results
1 - 5
of
5
) 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/chromium_org/third_party/skia/include/core/
SkPathMeasure.h
61
startD and
stopD
are pinned to legal values (0..getLength()). If startD <=
stopD
65
bool getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst, bool startWithMoveTo);
/external/skia/include/core/
SkPathMeasure.h
61
startD and
stopD
are pinned to legal values (0..getLength()). If startD <=
stopD
65
bool getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst, bool startWithMoveTo);
/external/chromium_org/third_party/skia/src/core/
SkPathMeasure.cpp
473
bool SkPathMeasure::getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst,
482
if (
stopD
> length) {
483
stopD
= length;
485
if (startD >=
stopD
) {
492
const Segment* stopSeg = this->distanceToSegment(
stopD
, &stopT);
/external/skia/src/core/
SkPathMeasure.cpp
473
bool SkPathMeasure::getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst,
482
if (
stopD
> length) {
483
stopD
= length;
485
if (startD >=
stopD
) {
492
const Segment* stopSeg = this->distanceToSegment(
stopD
, &stopT);
Completed in 295 milliseconds