OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:origx
(Results
1 - 15
of
15
) sorted by null
/frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewCallbacks.java
36
* @param
origX
the raw x coordinate of the initial touch
40
public boolean onInterceptMoveLeft(float
origX
, float origY);
45
* @param
origX
the raw x coordinate of the initial touch
49
public boolean onInterceptMoveRight(float
origX
, float origY);
PhotoViewPager.java
49
* @param
origX
the raw x coordinate of the initial touch
53
public InterceptType onTouchIntercept(float
origX
, float origY);
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java
72
* @param
origX
the raw x coordinate of the initial touch
76
public boolean interceptMoveLeft(float
origX
, float origY);
82
* @param
origX
the raw x coordinate of the initial touch
85
public boolean interceptMoveRight(float
origX
, float origY);
493
public boolean onInterceptMoveLeft(float
origX
, float origY) {
499
return (mPhotoView != null && mPhotoView.interceptMoveLeft(
origX
, origY));
503
public boolean onInterceptMoveRight(float
origX
, float origY) {
509
return (mPhotoView != null && mPhotoView.interceptMoveRight(
origX
, origY));
/external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp
96
double
origX
= endPt[0]->fX;
98
double adj = endPt[1]->fX -
origX
;
100
double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX -
origX
) * opp;
105
double test = (q2[n].fY - origY) * adj - (q2[n].fX -
origX
) * opp;
SkDCubicIntersection.cpp
413
double
origX
= endPt[triTest]->fX;
419
double adj = endPt[oppTest]->fX -
origX
;
421
double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX -
origX
) * opp;
426
double test = (c2[n].fY - origY) * adj - (c2[n].fX -
origX
) * opp;
/external/skia/src/pathops/
SkDQuadIntersection.cpp
96
double
origX
= endPt[0]->fX;
98
double adj = endPt[1]->fX -
origX
;
100
double sign = (q1[oddMan].fY - origY) * adj - (q1[oddMan].fX -
origX
) * opp;
105
double test = (q2[n].fY - origY) * adj - (q2[n].fX -
origX
) * opp;
SkDCubicIntersection.cpp
413
double
origX
= endPt[triTest]->fX;
419
double adj = endPt[oppTest]->fX -
origX
;
421
double sign = (c1[oddMan].fY - origY) * adj - (c1[oddMan].fX -
origX
) * opp;
426
double test = (c2[n].fY - origY) * adj - (c2[n].fX -
origX
) * opp;
/cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java
270
float
origX
= mMotionEvent2.getX();
279
assertEquals(
origX
, mMotionEvent2.getHistoricalX(0), DELTA);
/external/chromium_org/crypto/
curve25519-donna.c
401
limb
origx
[10], origxprime[10], zzz[19], xx[19], zz[19], xxprime[19],
local
404
memcpy(
origx
, x, 10 * sizeof(limb));
406
fdifference(z,
origx
); // does x - z
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
PhotoViewActivity.java
531
public InterceptType onTouchIntercept(float
origX
, float origY) {
537
interceptLeft = listener.onInterceptMoveLeft(
origX
, origY);
540
interceptRight = listener.onInterceptMoveRight(
origX
, origY);
[
all
...]
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
PhotoViewActivity.java
530
public InterceptType onTouchIntercept(float
origX
, float origY) {
536
interceptLeft = listener.onInterceptMoveLeft(
origX
, origY);
539
interceptRight = listener.onInterceptMoveRight(
origX
, origY);
[
all
...]
/external/chromium_org/third_party/skia/src/core/
SkScan_AntiPath.cpp
300
int
origX
= x;
362
x =
origX
;
/external/skia/src/core/
SkScan_AntiPath.cpp
300
int
origX
= x;
362
x =
origX
;
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java
363
public boolean interceptMoveLeft(float
origX
, float origY) {
396
public boolean interceptMoveRight(float
origX
, float origY) {
[
all
...]
/cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java
[
all
...]
Completed in 220 milliseconds