OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stopd
(Results
1 - 7
of
7
) 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).
123
public boolean getSegment(float startD, float
stopD
, Path dst, boolean startWithMoveTo) {
130
if (
stopD
> length) {
131
stopD
= length;
133
if (startD >=
stopD
) {
137
return native_getSegment(native_instance, startD,
stopD
, dst.mutateNI(), startWithMoveTo);
165
private static native boolean native_getSegment(long native_instance, float startD, float
stopD
, long native_path, boolean startWithMoveTo);
/frameworks/layoutlib/bridge/src/android/graphics/
PathMeasure_Delegate.java
156
/*package*/ static boolean native_getSegment(long native_instance, float startD, float
stopD
,
162
if (startD >=
stopD
) {
175
while (!iterator.isDone() && (
stopD
- accLength > 0.1f)) {
176
int type = iterator.currentSegment(points,
stopD
- accLength);
178
if (accLength - iterator.getCurrentSegmentLength() <=
stopD
) {
/external/skia/include/core/
SkPathMeasure.h
66
startD and
stopD
are pinned to legal values (0..getLength()). If startD >
stopD
70
bool getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst, bool startWithMoveTo);
/external/skqp/include/core/
SkPathMeasure.h
66
startD and
stopD
are pinned to legal values (0..getLength()). If startD >
stopD
70
bool getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst, bool startWithMoveTo);
/external/skia/src/core/
SkPathMeasure.cpp
635
bool SkPathMeasure::getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst,
644
if (
stopD
> length) {
645
stopD
= length;
647
if (startD >
stopD
) {
657
const Segment* stopSeg = this->distanceToSegment(
stopD
, &stopT);
/external/skqp/src/core/
SkPathMeasure.cpp
635
bool SkPathMeasure::getSegment(SkScalar startD, SkScalar
stopD
, SkPath* dst,
644
if (
stopD
> length) {
645
stopD
= length;
647
if (startD >
stopD
) {
657
const Segment* stopSeg = this->distanceToSegment(
stopD
, &stopT);
/toolchain/binutils/binutils-2.27/include/opcode/
spu-insns.h
145
APUOP(M_STOPD, RR, 0x140, "
stopd
", _A3(A_T,A_A,A_B), 00111, BR) /*
STOPD
stop (with register dependencies) */
Completed in 392 milliseconds