Searched defs:action (Results 151 - 175 of 196) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMimeTable.java302 // <attr_name> ::= 'description' | 'action' | 'application'
350 else if ("action".equalsIgnoreCase(name)) {
377 int getActionCode(String action) { argument
379 if (action.equalsIgnoreCase(MimeEntry.actionKeywords[i])) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DMotifDnDDropTargetProtocol.java774 public boolean sendResponse(long ctxt, int eventID, int action) { argument
840 byte dropSiteStatus = (action == DnDConstants.ACTION_NONE) ?
844 /* Clear action and drop site status bits. */
848 /* Fill in new action and drop site status. */
850 MotifDnDConstants.getMotifActionsForJavaActions(action) <<
H A DXButtonPeer.java124 action(e.getWhen(),e.getModifiers());
152 public void action(final long when, final int modifiers) { method in class:XButtonPeer
178 action(e.getWhen(),e.getModifiers());
258 // perform UI specific press action, e.g. Windows L&F shifts text
H A DXCheckboxPeer.java130 action(!selected);
131 //repaint(); // Gets the repaint from action()
202 // send action event
203 //action(e.getWhen(),e.getModifiers());
209 action(!selected); // Also gets repaint in action()
449 void action(boolean state) { method in class:XCheckboxPeer
H A DXDropTargetProtocol.java240 public abstract boolean sendResponse(long ctxt, int eventID, int action); argument
H A DXMenuItemPeer.java324 * @param when the timestamp of action event
326 void action(long when) { method in class:XMenuItemPeer
H A DInfoWindow.java68 protected void setCloser(Runnable action, int time) { argument
69 closer.set(action, time);
105 Runnable action; field in class:InfoWindow.Closer
112 void set(Runnable action, int time) { argument
113 this.action = action;
132 if (action != null) {
133 action.run();
245 /** The action to be performed upon clicking the baloon. */
H A DXDnDDropTargetProtocol.java461 /* Prior to XDnD version 2 only COPY action was supported. */
626 /* User action - new in XDnD version 2. */
630 /* The default action is XdndActionCopy */
786 public boolean sendResponse(long ctxt, int eventID, int action) { argument
796 action = DnDConstants.ACTION_NONE;
809 if (action != DnDConstants.ACTION_NONE) {
816 /* action accepted by the target */
817 msg.set_data(4, XDnDConstants.getXDnDActionForJavaAction(action));
866 * target DELETE in case if the drop action is XdndActionMove.
901 /* action performe
[all...]
H A DXDragSourceContextPeer.java73 /* The drop action chosen by the current drop target. */
77 /* The drop action selected by the drag source based on the modifiers state
78 and the action selected by the current drop target. */
377 * Updates the source action according to the specified state.
382 int action = SunDragSourceContextPeer.convertModifiersToDropAction(XWindow.getModifiers(state, 0, 0),
384 if (sourceAction == action) {
387 sourceAction = action;
749 public void handleDragReply(int action) { argument
752 handleDragReply(action, xRoot, yRoot);
755 public void handleDragReply(int action, in argument
761 handleDragReply(int action, int x, int y, int modifiers) argument
792 handleDragFinished(boolean success, int action) argument
798 handleDragFinished(boolean success, int action, int x, int y) argument
[all...]
H A DXTextFieldPeer.java359 public void action(final long when, final int modifiers) { method in class:XTextFieldPeer
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJMenuItem.java47 * sitting in a list. When the user selects the "button", the action
57 * href="http://java.sun.com/docs/books/tutorial/uiswing/misc/action.html">How
134 * @param a the action of the <code>JMenuItem</code>
268 * released while it is over this item, the menu's action event
274 * description: Mouse release will fire an action event
338 * action listeners without navigating the menu hierarchy. It is the
339 * UI's responsibility to install the correct action. Note that
405 protected void actionPropertyChanged(Action action, String propertyName) { argument
407 configureAcceleratorFromAction(action);
410 super.actionPropertyChanged(action, propertyNam
[all...]
H A DJTextField.java57 * command string for the action event that gets fired. The
95 * on whether the text field has any action listeners.
100 * If the text field has no action listeners, then as of v 1.3 the VK_ENTER
446 * Adds the specified action listener to receive
447 * action events from this textfield.
449 * @param l the action listener to be added
456 * Removes the specified action listener so that it no longer
457 * receives action events from this textfield.
459 * @param l the action listener to be removed
514 * Sets the command string used for action event
522 private Action action; field in class:JTextField
651 actionPropertyChanged(Action action, String propertyName) argument
661 setActionCommandFromAction(Action action) argument
690 actionPropertyChanged(JTextField textField, Action action, PropertyChangeEvent e) argument
[all...]
H A DSwingUtilities.java46 import sun.security.action.GetPropertyAction;
1606 * Invokes <code>actionPerformed</code> on <code>action</code> if
1607 * <code>action</code> is enabled (and non-{@code null}). The command for the
1610 * <li>If the action was registered via
1617 * This will return true if <code>action</code> is non-{@code null} and
1622 public static boolean notifyAction(Action action, KeyStroke ks, argument
1625 if (action == null) {
1628 if (action instanceof UIAction) {
1629 if (!((UIAction)action).isEnabled(sender)) {
1633 else if (!action
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketPermission.java74 * sp = new SocketPermission("[" + hostAddress + "]:" + port, action);
76 * sp = new SocketPermission(hostAddress + ":" + port, action);
82 * sp = new SocketPermission(host + ":" + port, action);
100 * The "listen" action is only meaningful when used with "localhost".
101 * The "resolve" action is implied when any of the other actions are present.
102 * The action "resolve" refers to host/ip name service lookups.
231 new sun.security.action.GetBooleanAction("sun.net.trustNameService"));
272 * @param action the action string.
274 public SocketPermission(String host, String action) { argument
470 getMask(String action) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Dplaceholders.hpp68 // caller to create a placeholder entry must enumerate an action
69 // caller claims ownership of that action
89 classloadAction action, Symbol* supername,
112 // currently performing a load action on a class.
222 SeenThread* actionToQueue(PlaceholderTable::classloadAction action) { argument
224 switch (action) {
239 void set_threadQ(SeenThread* seenthread, PlaceholderTable::classloadAction action) { argument
240 switch (action) {
267 // Doubly-linked list of Threads per action for class/classloader pair
272 void add_seen_thread(Thread* thread, PlaceholderTable::classloadAction action) { argument
290 check_seen_thread(Thread* thread, PlaceholderTable::classloadAction action) argument
308 remove_seen_thread(Thread* thread, PlaceholderTable::classloadAction action) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.cpp233 Action action) {
262 switch (action) {
231 do_block_internal(HeapWord* blk_start, HeapWord* blk_end, Action action) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DadaptiveSizePolicy.cpp566 // Print goal for which action is needed.
567 char* action = NULL; local
573 action = (char*) " *** pause time goal ***";
579 action = (char*) " *** throughput goal ***";
581 action = (char*) " *** reduced footprint ***";
632 st->print_cr(" UseAdaptiveSizePolicy actions to meet %s", action);
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp263 Action action, bool reducing) {
292 switch (action) {
261 do_block_internal(HeapWord* blk_start, HeapWord* blk_end, Action action, bool reducing) argument
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyParser.java459 e.action = expand(match("quoted string"));
822 public String action; field in class:PolicyParser.PermissionEntry
830 String action) {
833 this.action = action;
843 if (action != null) retval ^= action.hashCode();
868 if (this.action == null) {
869 if (that.action != null) return false;
871 if (!this.action
828 PermissionEntry(String permission, String name, String action) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DPacket.java750 * packet ({@code this}). If WS-Addressing is enabled, <code>action</code>
761 * @param action The response Action Message Addressing Property value.
764 public Packet createServerResponse(@Nullable Message responseMessage, @NotNull AddressingVersion addressingVersion, @NotNull SOAPVersion soapVersion, @NotNull String action) { argument
776 populateAddressingHeaders(responsePacket, addressingVersion, soapVersion, action, false);
790 public void setResponseMessage(@NotNull Packet request, @Nullable Message responseMessage, @NotNull AddressingVersion addressingVersion, @NotNull SOAPVersion soapVersion, @NotNull String action) { argument
791 Packet temp = request.createServerResponse(responseMessage, addressingVersion, soapVersion, action);
795 private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) { argument
820 hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
855 String action = responsePacket.message.isFault() ?
858 if(action
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTitlePane.java636 * Action <code>action</code>.
638 private void updateToggleButton(Action action, Icon icon) { argument
639 toggleButton.setAction(action);
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.hpp71 // What action must be taken by the runtime?
243 static void gather_statistics(DeoptReason reason, DeoptAction action,
266 // standard action for unloaded CP entry
275 static int make_trap_request(DeoptReason reason, DeoptAction action, argument
284 + ((action) << _action_shift)));
286 assert(action == trap_request_action(trap_request), "valid action");
319 static const char* trap_action_name(int action);
320 // Format like reason='foo' action='bar' index='123'.
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java545 private static boolean trackEvent(int eventID, Component comp, Runnable action, int time, boolean printEvent) { argument
561 action.run();
566 * Tracks WINDOW_GAINED_FOCUS event for a window caused by an action.
568 * @param action the action to perform
573 public static boolean trackWindowGainedFocus(Window window, Runnable action, int time, boolean printEvent) { argument
574 return trackEvent(WindowEvent.WINDOW_GAINED_FOCUS, window, action, time, printEvent);
578 * Tracks FOCUS_GAINED event for a component caused by an action.
581 public static boolean trackFocusGained(Component comp, Runnable action, int time, boolean printEvent) { argument
582 return trackEvent(FocusEvent.FOCUS_GAINED, comp, action, tim
589 trackActionPerformed(Button button, Runnable action, int time, boolean printEvent) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyParser.java625 e.action = expand(match("quoted string"));
1086 public String action; field in class:PolicyParser.PermissionEntry
1094 String action) {
1097 this.action = action;
1107 if (action != null) retval ^= action.hashCode();
1132 if (this.action == null) {
1133 if (that.action != null) return false;
1135 if (!this.action
1092 PermissionEntry(String permission, String name, String action) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParserImpl.java1034 * and <code>action</code> arguments. When parsing the input stream the
1041 * @param action This parameter describes which action should be taken
1046 * HIERARCHY_REQUEST_ERR: Thrown if this action results in an invalid
1050 short action) throws DOMException, LSException {
1049 parseWithContext(LSInput is, Node cnode, short action) argument

Completed in 150 milliseconds

12345678