OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:containerevent
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/awt/java/awt/event/
ContainerEvent.java
32
public class
ContainerEvent
extends ComponentEvent {
46
public
ContainerEvent
(Component src, int id, Component child) {
67
*
ContainerEvent
e = new
ContainerEvent
(new Panel(),
68
*
ContainerEvent
.COMPONENT_ADDED,
ContainerAdapter.java
34
public void componentAdded(
ContainerEvent
e) {
37
public void componentRemoved(
ContainerEvent
e) {
ContainerListener.java
33
public void componentAdded(
ContainerEvent
e);
35
public void componentRemoved(
ContainerEvent
e);
/frameworks/base/core/java/android/widget/
ZoomButtonsController.java
587
MotionEvent
containerEvent
= MotionEvent.obtain(event);
590
containerEvent
.offsetLocation(mOwnerViewRawLocation[0] - targetViewRawX,
595
float containerX =
containerEvent
.getX();
596
float containerY =
containerEvent
.getY();
598
containerEvent
.offsetLocation(-containerX, 0);
601
containerEvent
.offsetLocation(0, -containerY);
603
boolean retValue = targetView.dispatchTouchEvent(
containerEvent
);
604
containerEvent
.recycle();
/frameworks/base/awt/java/awt/
AWTEvent.java
251
eventsMap.put(new Integer(
ContainerEvent
.COMPONENT_ADDED), new EventDescriptor(
253
eventsMap.put(new Integer(
ContainerEvent
.COMPONENT_REMOVED), new EventDescriptor(
Completed in 57 milliseconds