/openjdk7/jdk/test/javax/swing/SwingUtilities/7170657/ |
H A D | bug7170657.java | 73 private static void fail(final MouseEvent exp, final MouseEvent act) { argument 75 System.err.println("Actual: " + act);
|
/openjdk7/jdk/src/share/classes/java/awt/dnd/ |
H A D | MouseDragGestureRecognizer.java | 80 * @param act The actions permitted for this Drag 85 protected MouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument 86 super(ds, c, act, dgl); 98 * @param act The actions permitted for this drag 101 protected MouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument 102 this(ds, c, act, null);
|
H A D | DragGestureEvent.java | 80 * an {@code act} parameter representing 86 * @param act The user's preferred action. 93 * @throws IllegalArgumentException if the act parameter does not comply with 99 public DragGestureEvent(DragGestureRecognizer dgr, int act, Point ori, argument 112 if (act != DnDConstants.ACTION_COPY && 113 act != DnDConstants.ACTION_MOVE && 114 act != DnDConstants.ACTION_LINK) 120 action = act;
|
H A D | DropTarget.java | 84 * @param act Is the <code>DropTarget</code> accepting drops. 91 boolean act, FlavorMap fm) 110 setActive(act); 132 * @param act Is the <code>DropTarget</code> accepting drops. 138 boolean act) 141 this(c, ops, dtl, act, null); 90 DropTarget(Component c, int ops, DropTargetListener dtl, boolean act, FlavorMap fm) argument 137 DropTarget(Component c, int ops, DropTargetListener dtl, boolean act) argument
|
/openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
H A D | WMouseDragGestureRecognizer.java | 77 * @param act The actions permitted for this Drag 82 protected WMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument 83 super(ds, c, act, dgl); 91 * @param act The actions permitted for this Drag 94 protected WMouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument 95 this(ds, c, act, null);
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XMouseDragGestureRecognizer.java | 80 * @param act The actions permitted for this Drag 85 protected XMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument 86 super(ds, c, act, dgl); 94 * @param act The actions permitted for this Drag 97 protected XMouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument 98 this(ds, c, act, null);
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CMouseDragGestureRecognizer.java | 56 protected CMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument 57 super(ds, c, act, dgl); 60 protected CMouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument 61 this(ds, c, act, null);
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | jsig.c | 147 static int call_os_sigaction(int sig, const struct sigaction *act, argument 156 return (*os_sigaction)(sig, act, oact); 159 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) { argument 173 if (act != NULL) { 174 sact[sig] = *act; 182 res = call_os_sigaction(sig, act, &oldAct); 196 res = call_os_sigaction(sig, act, oact);
|
H A D | os_bsd.cpp | 327 // the system call returns 1. This causes the VM to act as if it is 3963 struct sigaction act; local 3980 act.sa_flags = SA_RESTART|SA_SIGINFO; 3981 act.sa_handler = (void (*)(int)) SR_handler; 3988 pthread_sigmask(SIG_BLOCK, NULL, &act.sa_mask); 3990 if (sigaction(SR_signum, &act, 0) == -1) { 3995 os::Bsd::set_our_sigflags(SR_signum, act.sa_flags); 4546 struct sigaction act; local 4553 os_sigaction(sig, (struct sigaction*)NULL, &act); 4556 act [all...] |
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | jsig.c | 149 static int call_os_sigaction(int sig, const struct sigaction *act, argument 158 return (*os_sigaction)(sig, act, oact); 161 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) { argument 175 if (act != NULL) { 176 sact[sig] = *act; 184 res = call_os_sigaction(sig, act, &oldAct); 198 res = call_os_sigaction(sig, act, oact);
|
H A D | os_linux.cpp | 320 // the system call returns 1. This causes the VM to act as if it is 3809 struct sigaction act; local 3826 act.sa_flags = SA_RESTART|SA_SIGINFO; 3827 act.sa_handler = (void (*)(int)) SR_handler; 3834 pthread_sigmask(SIG_BLOCK, NULL, &act.sa_mask); 3836 if (sigaction(SR_signum, &act, 0) == -1) { 3841 os::Linux::set_our_sigflags(SR_signum, act.sa_flags); 4360 struct sigaction act; local 4367 os_sigaction(sig, (struct sigaction*)NULL, &act); 4370 act [all...] |
/openjdk7/jdk/test/java/lang/invoke/ |
H A D | JavaDocExamplesTest.java | 219 static void assertEquals(Object exp, Object act) { argument 221 System.out.println("result: "+act); 222 Assert.assertEquals(exp, act);
|
H A D | InvokeDynamicPrintArgs.java | 77 private static void assertEquals(Object exp, Object act) { argument 78 if (exp == act || (exp != null && exp.equals(act))) return; 79 throw new AssertionError("not equal: "+exp+", "+act);
|
/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | jsig.c | 187 static int call_os_sigaction(int sig, const struct sigaction *act, argument 196 return (*os_sigaction)(sig, act, oact); 199 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) { argument 214 if (act != NULL) { 215 sact[sig] = *act; 223 res = call_os_sigaction(sig, act, &oldAct); 237 res = call_os_sigaction(sig, act, oact);
|
H A D | os_solaris.cpp | 4843 struct sigaction act; local 4850 os_sigaction(sig, (struct sigaction*)NULL, &act); 4852 address thisHandler = (act.sa_flags & SA_SIGINFO) 4853 ? CAST_FROM_FN_PTR(address, act.sa_sigaction) 4854 : CAST_FROM_FN_PTR(address, act.sa_handler) ; 4895 } else if(os::Solaris::get_our_sigflags(sig) != 0 && act.sa_flags != os::Solaris::get_our_sigflags(sig)) { 4898 tty->print_cr(" found:" PTR32_FORMAT, act.sa_flags);
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/ |
H A D | OperationFactory.java | 376 private Operation act ; field in class:OperationFactory.ListAction 378 ListAction( String sep, Operation act ) 381 this.act = act ; 397 Object val = act.operate( next ) ; 408 "\",action=" + act + ")" ; 412 public static Operation listAction( String sep, Operation act ) 414 return new ListAction( sep, act ) ; 441 Operation act = actions[ctr] ; 443 result[ctr++] = act [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | runtime.cpp | 736 static const TypeFunc* make_arraycopy_Type(ArrayCopyType act) { argument 738 int num_args = (act == ac_fast ? 3 : 5); 739 int num_size_args = (act == ac_fast ? 1 : act == ac_checkcast ? 2 : 0); 757 if (act == ac_checkcast) { 760 assert(argp == TypeFunc::Parms+argcnt, "correct decoding of act"); 764 int retcnt = (act == ac_checkcast || act == ac_generic ? 1 : 0);
|
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_DnDDS.cpp | 982 ULONG act; local 984 &act);
|