OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mP2Y
(Results
1 - 5
of
5
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
HermiteInterpolator.java
32
public int mP2X,
mP2Y
;
67
* {@link #mP2X}, and {@link #
mP2Y
}. The slope of the tangents at start and end points will be
83
mP2Y
= mYCoords[p2];
86
final int ay =
mP2Y
- mP1Y;
93
mSlope1Y = (
mP2Y
- mYCoords[p0]) / 2.0f;
122
final float by = (
mP2Y
- mYCoords[p0]) / 2.0f;
159
mInterpolatedY = (k1 * mP1Y + t * mSlope1Y) * omt2 + (k2 *
mP2Y
- omt * mSlope2Y) * t2;
GestureStrokeDrawingPoints.java
149
mInterpolator.mP1Y - mInterpolator.
mP2Y
);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
HermiteInterpolatorTests.java
67
assertEquals("p1y", mYCoords[p1], mInterpolator.
mP2Y
);
103
assertEquals("p2y", mYCoords[p2], mInterpolator.
mP2Y
);
139
assertEquals("p3y", mYCoords[p3], mInterpolator.
mP2Y
);
175
assertEquals("p2y", mYCoords[p2], mInterpolator.
mP2Y
);
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
wiimote.h
122
unsigned short
mP2Y
;
132
mP1X = mP1Y = mP2X =
mP2Y
= mP1Size = mP2Size = 0;
wiimote.cpp
730
mLastIRReport.
mP2Y
= data[4] << 2 | (data[5] & 0xc0) >>6;
756
y = mLastIRReport.
mP2Y
/ 1024.f;
Completed in 1601 milliseconds