OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:touchPoint
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Dialer/src/com/android/dialer/util/
DialerUtils.java
76
Point
touchPoint
= TouchPointManager.getInstance().getPoint();
77
if (
touchPoint
.x != 0 ||
touchPoint
.y != 0) {
86
extras.putParcelable(TouchPointManager.TOUCH_POINT,
touchPoint
);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropView.java
146
float[]
touchPoint
= {
149
mDisplayMatrixInverse.mapPoints(
touchPoint
);
150
x =
touchPoint
[0];
151
y =
touchPoint
[1];
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java
113
float[]
touchPoint
= {
116
mDisplayMatrixInverse.mapPoints(
touchPoint
);
117
x =
touchPoint
[0];
118
y =
touchPoint
[1];
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
ParticleEditor.java
471
Vector3
touchPoint
= new Vector3(x, y, 0);
472
worldCamera.unproject(
touchPoint
);
473
effect.setPosition(
touchPoint
.x,
touchPoint
.y);
485
Vector3
touchPoint
= new Vector3(x, y, 0);
486
worldCamera.unproject(
touchPoint
);
487
effect.setPosition(
touchPoint
.x,
touchPoint
.y);
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallActivity.java
610
Point
touchPoint
= null;
613
touchPoint
= TouchPointManager.getInstance().getPoint();
617
touchPoint
= (Point) extras.getParcelable(TouchPointManager.TOUCH_POINT);
622
CircularRevealFragment.startCircularReveal(getFragmentManager(),
touchPoint
,
[
all
...]
InCallPresenter.java
[
all
...]
Completed in 379 milliseconds