/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/ |
H A D | lr_parser.java | 33 * parsers act by shifting input onto a parse stack until the Symbols 536 int act; 574 act = get_action(((Symbol)stack.peek()).parse_state, cur_token.sym); 577 if (act > 0) 580 cur_token.parse_state = act-1; 589 else if (act < 0) 592 lhs_sym = do_action((-act)-1, this, stack, tos); 595 lhs_sym_num = production_tab[(-act)-1][0]; 596 handle_size = production_tab[(-act)-1][1]; 606 act [all...] |
/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;
|
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | ClassAttributeValueExp.java | 61 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 62 String form = AccessController.doPrivileged(act);
|
H A D | NumericValueExp.java | 91 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 92 String form = AccessController.doPrivileged(act);
|
H A D | MBeanAttributeInfo.java | 59 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 60 String form = AccessController.doPrivileged(act);
|
H A D | MBeanServerFactory.java | 479 GetPropertyAction act = 481 String builderClassName = AccessController.doPrivileged(act);
|
H A D | Notification.java | 115 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 116 String form = AccessController.doPrivileged(act);
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/ |
H A D | PropertyParser.java | 68 ParserAction act = (ParserAction)(iter.next()) ; 70 Object result = act.apply( props ) ; 75 map.put( act.getFieldName(), result ) ;
|
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/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);
|
/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);
|
/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);
|
/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/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/share/classes/javax/management/modelmbean/ |
H A D | XMLParseException.java | 83 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 84 String form = AccessController.doPrivileged(act);
|
H A D | InvalidTargetObjectTypeException.java | 87 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 88 String form = AccessController.doPrivileged(act);
|
/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/test/java/rmi/activation/Activatable/notSerializable/ |
H A D | NotSerializable.java | 59 Activatable act = new FakeActivatable(); 64 out.writeObject(act); 75 Activatable.unexportObject(act, true);
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/ |
H A D | StateEngine.java | 47 /** Add a new transition (old,in,guard,act,new) to the state engine. 74 /** Equivalent to setDefault( oldState, act, newState ) where act is an 91 public void setDefaultAction( Action act ) throws IllegalStateException ;
|
/openjdk7/jdk/src/share/classes/javax/management/relation/ |
H A D | RoleResult.java | 87 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 88 String form = AccessController.doPrivileged(act);
|
H A D | Role.java | 93 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 94 String form = AccessController.doPrivileged(act);
|
H A D | RoleUnresolved.java | 96 GetPropertyAction act = new GetPropertyAction("jmx.serial.form"); 97 String form = AccessController.doPrivileged(act);
|
/openjdk7/jdk/test/java/lang/invoke/ |
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);
|