Searched refs:action (Results 1 - 25 of 579) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDragSourceProtocolListener.java32 * @param action is the drop action selected by the drop target
34 void handleDragReply(int action); argument
39 * @param action the drop action selected by the drop target
45 void handleDragReply(int action, int x, int y); argument
50 * @param action the drop action selected by the drop target
57 void handleDragReply(int action, int x, int y, int modifiers); argument
70 * action
82 handleDragFinished(boolean success, int action) argument
96 handleDragFinished(boolean success, int action, int x, int y) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/model/
H A DActionNotSupportedException.java36 private String action; field in class:ActionNotSupportedException
38 public ActionNotSupportedException(String action) { argument
39 super(AddressingMessages.ACTION_NOT_SUPPORTED_EXCEPTION(action));
40 this.action = action;
44 return action;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVMListener.java32 boolean vmSuspended(VMAction action); argument
33 boolean vmNotSuspended(VMAction action); argument
H A DThreadListener.java32 boolean threadResumable(ThreadAction action); argument
36 * void threadSuspended(ThreadAction action);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DProblemAction.java40 private String action; field in class:ProblemAction
49 public ProblemAction(String action) { argument
50 this.action = action;
53 public ProblemAction(String action, String soapAction) { argument
54 this.action = action;
59 return action;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/
H A DProblemAction.java39 private String action; field in class:ProblemAction
48 public ProblemAction(String action) { argument
49 this.action = action;
52 public ProblemAction(String action, String soapAction) { argument
53 this.action = action;
58 return action;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLFuncs.h205 #define OGL_EXPRESS_BASE_FUNCS(action) \
206 OGL_##action##_FUNC(glAlphaFunc); \
207 OGL_##action##_FUNC(glAreTexturesResident); \
208 OGL_##action##_FUNC(glBegin); \
209 OGL_##action##_FUNC(glBindTexture); \
210 OGL_##action##_FUNC(glBitmap); \
211 OGL_##action##_FUNC(glBlendFunc); \
212 OGL_##action##_FUNC(glClear); \
213 OGL_##action##_FUNC(glClearColor); \
214 OGL_##action##_FUN
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DActionBasedOperationSignature.java39 private final String action; field in class:ActionBasedOperationSignature
41 public ActionBasedOperationSignature(@NotNull String action, @NotNull QName payloadQName) { argument
42 this.action = action;
53 if (!action.equals(that.action)) return false;
61 int result = action.hashCode();
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/
H A DOGLFuncs_md.h72 #define OGL_EXPRESS_PLATFORM_FUNCS(action) \
73 OGL_##action##_FUNC(wglCreateContext); \
74 OGL_##action##_FUNC(wglDeleteContext); \
75 OGL_##action##_FUNC(wglMakeCurrent); \
76 OGL_##action##_FUNC(wglGetCurrentContext); \
77 OGL_##action##_FUNC(wglGetCurrentDC); \
78 OGL_##action##_FUNC(wglGetProcAddress); \
79 OGL_##action##_FUNC(wglShareLists);
81 #define OGL_EXPRESS_PLATFORM_EXT_FUNCS(action) \
82 OGL_##action##_EXT_FUN
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/fsm/
H A DGuardedAction.java44 private Action action ; field in class:GuardedAction
47 public GuardedAction( Action action, State nextState ) argument
50 this.action = action ;
54 public GuardedAction( Guard guard, Action action, State nextState ) argument
57 this.action = action ;
63 return "GuardedAction[action=" + action + " guard=" + guard +
67 public Action getAction() { return action ; }
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DNativeLibLoader.java57 new sun.security.action.LoadLibraryAction("awt"));
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DNativeLibLoader.java57 (new sun.security.action.LoadLibraryAction("awt"));
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragSourceDropEvent.java51 * <code>DragSourceContext</code>, the drop action,
57 * The argument <code>action</code> should be one of <code>DnDConstants</code>
58 * that represents a single action.
59 * This constructor does not throw any exception for invalid <code>action</code>.
63 * @param action the drop action
71 public DragSourceDropEvent(DragSourceContext dsc, int action, boolean success) { argument
75 dropAction = action;
80 * <code>DragSourceContext</code>, the drop action, a <code>boolean</code>
83 * The argument <code>action</cod
98 DragSourceDropEvent(DragSourceContext dsc, int action, boolean success, int x, int y) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DNativeLibLoader.java57 new sun.security.action.LoadLibraryAction("awt"));
/openjdk7/jdk/src/share/native/java/security/
H A DAccessController.c43 (JNIEnv *env, jclass cls, jobject action)
45 return JVM_DoPrivileged(env, cls, action, NULL, JNI_FALSE);
54 (JNIEnv *env, jclass cls, jobject action, jobject context)
56 return JVM_DoPrivileged(env, cls, action, context, JNI_FALSE);
65 (JNIEnv *env, jclass cls, jobject action)
67 return JVM_DoPrivileged(env, cls, action, NULL, JNI_TRUE);
76 (JNIEnv *env, jclass cls, jobject action, jobject context)
78 return JVM_DoPrivileged(env, cls, action, context, JNI_TRUE);
42 Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2(JNIEnv *env, jclass cls, jobject action) argument
53 Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2Ljava_security_AccessControlContext_2(JNIEnv *env, jclass cls, jobject action, jobject context) argument
64 Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2(JNIEnv *env, jclass cls, jobject action) argument
75 Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2Ljava_security_AccessControlContext_2(JNIEnv *env, jclass cls, jobject action, jobject context) argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaSecurityAccess.java33 <T> T doIntersectionPrivilege(PrivilegedAction<T> action, argument
37 <T> T doIntersectionPrivilege(PrivilegedAction<T> action, argument
/openjdk7/jdk/make/sun/security/action/
H A DMakefile27 PACKAGE = sun.security.action
34 AUTO_FILES_JAVA_DIRS = sun/security/action
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DCommonToolBar.java28 import com.sun.java.swing.action.ActionManager;
29 import com.sun.java.swing.action.StateChangeAction;
56 protected void addButton(Action action) argument
58 javax.swing.JButton button = add(action);
59 configureButton(button, action);
78 protected void configureToggleButton(JToggleButton button, Action action) argument
80 configureButton(button, action);
81 action.addPropertyChangeListener(new ToggleActionPropertyChangeListener(button));
84 protected void configureButton(AbstractButton button, Action action) argument
86 button.setToolTipText((String)action
[all...]
H A DCommonMenuBar.java28 import com.sun.java.swing.action.ActionManager;
29 import com.sun.java.swing.action.StateChangeAction;
52 protected void configureToggleMenuItem(JMenuItem menuItem, Action action) argument
54 configureMenuItem(menuItem, action);
55 action.addPropertyChangeListener(new ToggleActionPropertyChangeListener(menuItem));
58 protected void configureMenuItem(JMenuItem menuItem, Action action) argument
70 protected void addMenuItem(JMenu menu, Action action) argument
72 JMenuItem menuItem = menu.add(action);
73 configureMenuItem(menuItem, action);
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/
H A DOGLFuncs_md.h143 #define OGL_EXPRESS_PLATFORM_FUNCS(action) \
144 OGL_##action##_FUNC(glXDestroyContext); \
145 OGL_##action##_FUNC(glXGetCurrentContext); \
146 OGL_##action##_FUNC(glXGetCurrentDrawable); \
147 OGL_##action##_FUNC(glXIsDirect); \
148 OGL_##action##_FUNC(glXQueryExtension); \
149 OGL_##action##_FUNC(glXQueryVersion); \
150 OGL_##action##_FUNC(glXSwapBuffers); \
151 OGL_##action##_FUNC(glXGetClientString); \
152 OGL_##action##_FUN
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/browser/dom/
H A DDOMService.java47 new sun.security.action.GetPropertyAction("com.sun.java.browser.dom.DOMServiceProvider"));
71 * Causes action.run() to be executed synchronously on the
72 * DOM action dispatching thread. This call will block until all
74 * action.run() returns. This method should be used when an
79 * exception (on the DOM action dispatching thread), it's caught
83 * exception (on the DOM action dispatching thread), it's caught
86 * @param action DOMAction.
88 public abstract Object invokeAndWait(DOMAction action) throws DOMAccessException; argument
91 * Causes action.run() to be executed asynchronously on the
92 * DOM action dispatchin
102 invokeLater(DOMAction action) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/net/sdp/
H A DSdpProvider.java40 import sun.security.action.GetPropertyAction;
104 boolean match(Action action, InetAddress address, int port); argument
109 private final Action action; field in class:SdpProvider.PortRangeRule
112 PortRangeRule(Action action, int portStart, int portEnd) { argument
113 this.action = action;
117 Action action() { method in class:SdpProvider.PortRangeRule
118 return action;
121 public boolean match(Action action, InetAddress address, int port) { argument
122 return (action
133 AddressPortRangeRule(Action action, InetAddress address, int prefix, int port, int end) argument
142 match(Action action, InetAddress address, int port) argument
291 convertTcpToSdpIfMatch(FileDescriptor fdObj, Action action, InetAddress address, int port) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/action/
H A DGetBooleanAction.java26 package sun.security.action;
30 * as a privileged action.
36 * property named <code>"prop"</code> as a privileged action: <p>
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DOGLFuncs_md.h47 #define OGL_EXPRESS_PLATFORM_FUNCS(action)
48 #define OGL_EXPRESS_PLATFORM_EXT_FUNCS(action)
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/action/
H A DActionManager.java26 package com.sun.java.swing.action;
32 // Referenced classes of package com.sun.java.swing.action:
51 protected void addAction(String cmdname, Action action) argument
53 actions.put(cmdname, action);
86 Action action = getAction(name);
87 if(action != null)
88 action.setEnabled(enabled);

Completed in 755 milliseconds

1234567891011>>