/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | ModalityListener.java | 36 public void modalityPushed(ModalityEvent ev); argument 41 public void modalityPopped(ModalityEvent ev); argument
|
/openjdk7/jdk/src/share/demo/management/JTop/ |
H A D | JTopPlugin.java | 116 public void propertyChange(PropertyChangeEvent ev) { argument 117 String prop = ev.getPropertyName(); 119 ConnectionState newState = (ConnectionState)ev.getNewValue();
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XEventDispatcher.java | 35 void dispatchEvent(XEvent ev); argument
|
H A D | XDropTargetEventProcessor.java | 45 private boolean doProcessEvent(XEvent ev) { argument 46 if (ev.get_type() == (int)XConstants.DestroyNotify && 48 ev.get_xany().get_window() == protocol.getSourceWindow()) { 54 if (ev.get_type() == (int)XConstants.PropertyNotify) { 55 XPropertyEvent xproperty = ev.get_xproperty(); 63 if (ev.get_type() != (int)XConstants.ClientMessage) { 68 XClientMessageEvent xclient = ev.get_xclient(); 118 static boolean processEvent(XEvent ev) { argument 119 return active ? theInstance.doProcessEvent(ev) : false;
|
H A D | XFocusProxyWindow.java | 64 public void dispatchEvent(XEvent ev) { argument 65 int type = ev.get_type(); 70 handleFocusEvent(ev); 73 super.dispatchEvent(ev);
|
/openjdk7/langtools/test/tools/javac/ |
H A D | T6397286.java | 72 public TaskEventError(TaskEvent ev) { argument 73 event = ev;
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | EventFilter.java | 30 * Enumeration for possible values for <code>acceptEvent(AWTEvent ev)</code> method. 60 FilterAction acceptEvent(AWTEvent ev); argument
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/ |
H A D | EnableBlockLayoutAction.java | 47 public void actionPerformed(ActionEvent ev) { argument
|
H A D | OverviewAction.java | 46 public void actionPerformed(ActionEvent ev) { argument
|
H A D | PredSuccAction.java | 47 public void actionPerformed(ActionEvent ev) { argument
|
/openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
H A D | AquaMnemonicHandler.java | 69 public boolean postProcessKeyEvent(final KeyEvent ev) { argument 70 if (ev.getKeyCode() != KeyEvent.VK_ALT) { 74 final JRootPane root = SwingUtilities.getRootPane(ev.getComponent()); 77 switch(ev.getID()) {
|
H A D | AquaFocusHandler.java | 48 public void focusGained(final FocusEvent ev) { argument 52 AquaBorder.repaintBorder((JComponent)ev.getSource()); 58 public void focusLost(final FocusEvent ev) { argument 59 wasTemporary = ev.isTemporary(); 63 AquaBorder.repaintBorder((JComponent)ev.getSource()); 67 public void propertyChange(final PropertyChangeEvent ev) { argument 68 if (!FRAME_ACTIVE_PROPERTY.equals(ev.getPropertyName())) return; 70 if (Boolean.TRUE.equals(ev.getNewValue())) { 78 AquaBorder.repaintBorder((JComponent)ev.getSource());
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | park.cpp | 58 ParkEvent * ev ; local 63 ev = FreeList ; 64 if (ev == NULL) break ; 66 // Tantamount to ev = Swap (&FreeList, NULL) 67 if (Atomic::cmpxchg_ptr (NULL, &FreeList, ev) != ev) { 75 ParkEvent * List = ev->FreeNext ; 96 if (ev != NULL) { 97 guarantee (ev->AssociatedWith == NULL, "invariant") ; 114 ev 123 Release(ParkEvent * ev) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/ |
H A D | CreateMBeanDialog.java | 137 public void actionPerformed(final ActionEvent ev) { argument 140 if (ev.getSource() != cancelButton) { 146 if(ev.getSource() == createMBeanButton) { 152 if(ev.getSource() == unregisterMBeanButton) {
|
H A D | TimeComboBox.java | 65 public void itemStateChanged(ItemEvent ev) { argument 86 public void propertyChange(PropertyChangeEvent ev) { argument 87 if (ev.getPropertyName() == "viewRange") { 88 selectValue((Integer)ev.getNewValue());
|
H A D | ClassTab.java | 141 public void actionPerformed(ActionEvent ev) { argument
|
/openjdk7/jdk/src/share/classes/sun/tools/jstatd/ |
H A D | RemoteHostImpl.java | 106 public void vmStatusChanged(VmStatusChangeEvent ev) { argument 108 activeVms.retainAll(ev.getActive()); 112 public void disconnected(HostEvent ev) { argument
|
/openjdk7/jdk/test/javax/swing/JMenu/4692443/ |
H A D | bug4692443.java | 121 public void actionPerformed(ActionEvent ev) { argument 127 public void actionPerformed(ActionEvent ev) { argument
|
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/ |
H A D | WindowsRootPaneUI.java | 84 void altPressed(KeyEvent ev) { argument 91 ev.consume(); 96 ev.consume(); 107 ev.consume(); 112 void altReleased(KeyEvent ev) { argument 139 skip = ev.getWhen() <= ((SunToolkit)tk).getWindowDeactivationTime(winAncestor); 160 public boolean postProcessKeyEvent(KeyEvent ev) { argument 161 if(ev.isConsumed()) { 165 if (ev.getKeyCode() == KeyEvent.VK_ALT) { 166 root = SwingUtilities.getRootPane(ev [all...] |
H A D | WindowsPopupMenuUI.java | 98 public void stateChanged(ChangeEvent ev) { argument 99 MenuSelectionManager msm = (MenuSelectionManager)ev.getSource();
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/ |
H A D | StructuredViewAction.java | 153 public void actionPerformed(ActionEvent ev) { argument 154 JMenuItem item = (JMenuItem) ev.getSource();
|
/openjdk7/jdk/src/solaris/native/sun/nio/ch/ |
H A D | SolarisEventPort.c | 101 port_event_t* ev = (port_event_t*)jlong_to_ptr(eventAddress); local 103 RESTARTABLE(port_get((int)port, ev, NULL), res);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/ |
H A D | AnnotationWriter.java | 126 public Void visitPrimitive(Primitive_element_value ev, Boolean resolveIndices) { argument 128 writeIndex(ev.const_value_index, resolveIndices); 130 print(((char) ev.tag) + "#" + ev.const_value_index); 134 public Void visitEnum(Enum_element_value ev, Boolean resolveIndices) { argument 136 writeIndex(ev.type_name_index, resolveIndices); 138 writeIndex(ev.const_name_index, resolveIndices); 140 print(((char) ev.tag) + "#" + ev.type_name_index + ".#" + ev 144 visitClass(Class_element_value ev, Boolean resolveIndices) argument 153 visitAnnotation(Annotation_element_value ev, Boolean resolveIndices) argument 159 visitArray(Array_element_value ev, Boolean resolveIndices) argument [all...] |
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | jvmtiRawMonitor.cpp | 167 ParkEvent * ev = w->_event ; local 170 ev->unpark() ; 244 ParkEvent * ev = NULL ; // consider using a small auto array ... 250 if (ev != NULL) { ev->unpark(); ev = NULL; } 251 ev = w->_event ; 258 if (ev != NULL) ev->unpark();
|
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | awt_mgrsel.c | 56 static int awt_mgrsel_unmanaged(XDestroyWindowEvent *ev); 334 awt_mgrsel_unmanaged(XDestroyWindowEvent *ev) argument 341 exowner = ev->window; /* selection owner that's gone */ 374 awt_mgrsel_processEvent(XEvent *ev) argument 380 if (ev->type == ClientMessage) { /* new manager announces ownership? */ 381 if (awt_mgrsel_managed(&ev->xclient)) 385 if (ev->type == DestroyNotify) { /* manager gives up selection? */ 386 if (awt_mgrsel_unmanaged(&ev->xdestroywindow)) 393 if (ev->xany.window == mgrsel->per_scr_owners[scr]) { 401 scr, ev [all...] |