OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCurrentX
(Results
1 - 9
of
9
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardRow.java
94
private float
mCurrentX
;
111
mCurrentX
= 0.0f;
141
mCurrentX
= keyXPos;
145
mCurrentX
+= width;
154
return
mCurrentX
;
163
// keyXPos shouldn't be less than
mCurrentX
because drawable area for this
164
// key starts at
mCurrentX
. Or, this key will overlaps the adjacent key on
167
return Math.max(keyXPos + keyboardRightEdge,
mCurrentX
);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageTinyPlanet.java
37
private float
mCurrentX
= 0;
92
if (
mCurrentX
== mTouchCenterX && mCurrentY == mTouchCenterY) {
97
float dX2 =
mCurrentX
- mCenterX;
109
mCurrentX
= x;
ImageStraighten.java
69
private float
mCurrentX
;
129
mCurrentX
= x;
138
mCurrentX
= x;
147
mCurrentX
= x;
166
if (
mCurrentX
== mTouchCenterX && mCurrentY == mTouchCenterY) {
171
float dX2 =
mCurrentX
- centerX;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java
168
// The focused box (Box*) centers at mPlatform's (
mCurrentX
, mCurrentY)
351
mPlatform.
mCurrentX
= r.centerX() - mViewW / 2;
441
mPlatform.
mCurrentX
= mPlatform.mToX;
481
float tempX = (tapX - mPlatform.
mCurrentX
) / b.mCurrentScale;
506
mFocusX = (int) ((focusX - p.
mCurrentX
) / b.mCurrentScale + 0.5f);
527
int x = mFilmMode ? p.
mCurrentX
: (int) (focusX - s * mFocusX + 0.5f);
585
int x = p.
mCurrentX
+ dx;
634
int x = p.
mCurrentX
+ dx;
683
mPageScroller.fling(p.
mCurrentX
, b.mCurrentY, velocityX, velocityY,
699
if ((!mHasPrev && p.
mCurrentX
>= defaultX
[
all
...]
/device/generic/goldfish/camera/fake-pipeline2/
Scene.h
100
int
mCurrentX
;
Scene.cpp
340
mCurrentX
= x;
352
mCurrentX
++;
354
if (
mCurrentX
>= mSensorWidth) {
355
mCurrentX
= 0;
358
setReadoutPixel(
mCurrentX
, mCurrentY);
/frameworks/base/services/core/java/com/android/server/wm/
DragState.java
95
float
mCurrentX
, mCurrentY;
226
mOriginalX =
mCurrentX
= touchX;
324
sendDragStartedLw(newWin,
mCurrentX
, mCurrentY, mDataDescription);
348
x =
mCurrentX
;
391
mService.restorePointerIconLocked(mDisplayContent,
mCurrentX
, mCurrentY);
408
mCurrentX
= x;
477
mCurrentX
= x;
555
mCurrentX
- mThumbOffsetX, mCurrentY - mThumbOffsetY);
568
0, mOriginalX -
mCurrentX
, 0, mOriginalY - mCurrentY));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
DynamicGridKeyboard.java
227
private int
mCurrentX
;
235
mCurrentX
= x0;
242
return
mCurrentX
;
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java
59
float
mCurrentX
= 0;
209
TranslateAnimation swipeAnim = new TranslateAnimation(
mCurrentX
, endX, 0, 0);
246
mCurrentX
= deltaX;
Completed in 2207 milliseconds