OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:screenLocation
(Results
1 - 7
of
7
) sorted by null
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
ActivityAnimations.java
111
int[]
screenLocation
= new int[2];
112
v.getLocationOnScreen(
screenLocation
);
120
putExtra(PACKAGE + ".left",
screenLocation
[0]).
121
putExtra(PACKAGE + ".top",
screenLocation
[1]).
PictureDetailsActivity.java
108
int[]
screenLocation
= new int[2];
109
mImageView.getLocationOnScreen(
screenLocation
);
110
mLeftDelta = thumbnailLeft -
screenLocation
[0];
111
mTopDelta = thumbnailTop -
screenLocation
[1];
/external/chromium_org/third_party/WebKit/Source/core/events/
MouseRelatedEvent.h
39
const IntPoint&
screenLocation
() const { return m_screenLocation; }
64
int detail, const IntPoint&
screenLocation
, const IntPoint& windowLocation,
WheelEvent.h
69
const IntPoint&
screenLocation
, const IntPoint& pageLocation,
73
screenLocation
, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice));
104
unsigned, PassRefPtr<AbstractView>, const IntPoint&
screenLocation
, const IntPoint& pageLocation,
WheelEvent.cpp
65
PassRefPtr<AbstractView> view, const IntPoint&
screenLocation
, const IntPoint& pageLocation,
68
true, true, view, 0,
screenLocation
.x(),
screenLocation
.y(),
MouseRelatedEvent.cpp
56
int detail, const IntPoint&
screenLocation
, const IntPoint& windowLocation,
60
, m_screenLocation(
screenLocation
)
MouseEvent.cpp
231
m_screenLocation = mouseEvent->
screenLocation
();
Completed in 106 milliseconds