Searched refs:ae (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/jdk/test/java/lang/AssertionError/
H A DCause.java34 AssertionError ae = new AssertionError(e);
35 if (ae.getCause() != e)
37 ae = new AssertionError("gosh it's late");
38 if (ae.getCause() != null)
39 throw new Exception("Cause set erroneously: " + ae.getCause());
/openjdk7/langtools/test/tools/javac/assert/
H A DDU1.java38 } catch (AssertionError ae) {
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A D_AppEventLegacyHandler.java94 final ApplicationEvent ae = new ApplicationEvent(Toolkit.getDefaultToolkit());
95 sendEventToEachListenerUntilHandled(ae, new EventDispatcher() {
97 listener.handleAbout(ae);
101 if (ae.isHandled()) return;
107 final ApplicationEvent ae = new ApplicationEvent(Toolkit.getDefaultToolkit());
108 sendEventToEachListenerUntilHandled(ae, new EventDispatcher() {
110 listener.handlePreferences(ae);
117 final ApplicationEvent ae = new ApplicationEvent(Toolkit.getDefaultToolkit());
118 sendEventToEachListenerUntilHandled(ae, new EventDispatcher() {
120 listener.handleOpenApplication(ae);
[all...]
/openjdk7/jdk/test/java/math/BigInteger/
H A DExtremeShiftingTests.java37 } catch (ArithmeticException ae) {
44 } catch (ArithmeticException ae) {
/openjdk7/jdk/test/java/rmi/activation/CommandEnvironment/
H A DDoctor.java66 } catch (ActivationException ae) {
68 ae.printStackTrace();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DExceptionHandler.java49 * in the ApplicationException. If ae represents
54 * the exception in ae.
56 Exception readException( ApplicationException ae ) ;
H A DExceptionHandlerImpl.java271 public Exception readException( ApplicationException ae )
273 // Note that the exception ID is present in both ae
274 // and in the input stream from ae. The exception
277 InputStream is = (InputStream)ae.getInputStream() ;
278 String excName = ae.getId() ;
283 res.initCause( ae ) ;
/openjdk7/jdk/test/java/awt/im/
H A DJTextFieldTest.java53 public void actionPerformed(ActionEvent ae) { argument
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclImpl.java336 AclEntry ae = allowedGroupsTable.get(g);
337 groupPositive = union(ae.permissions(), groupPositive);
349 AclEntry ae = deniedGroupsTable.get(g);
350 groupNegative = union(ae.permissions(), groupNegative);
358 AclEntry ae = allowedUsersTable.get(user);
359 if (ae != null)
360 individualPositive = ae.permissions();
366 AclEntry ae = deniedUsersTable.get(user);
367 if (ae != null)
368 individualNegative = ae
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKeyImpl.java185 } catch (Asn1Exception ae) {
186 throw new IOException(ae.getMessage());
197 } catch (Asn1Exception ae) {
198 throw new IOException(ae.getMessage());
/openjdk7/jdk/test/java/awt/Modal/ModalInternalFrameTest/
H A DModalInternalFrameTest.java78 public void actionPerformed(ActionEvent ae)
87 public void actionPerformed(ActionEvent ae)
101 public void actionPerformed(ActionEvent ae)
110 public void actionPerformed(ActionEvent ae)
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaParser.java846 for (NamingEnumeration ae = attrs.getAll();
847 ae.hasMoreElements(); ) {
849 attr = (Attribute)ae.next();
976 for (NamingEnumeration ae = attrs.getAll();
977 ae.hasMoreElements(); ) {
979 attr = (Attribute)ae.next();
1043 for (NamingEnumeration ae = attrs.getAll();
1044 ae.hasMoreElements(); ) {
1046 attr = (Attribute)ae.next();
1120 for (NamingEnumeration ae
[all...]
/openjdk7/jdk/test/java/awt/List/EmptyListEventTest/
H A DEmptyListEventTest.java148 public void actionPerformed(ActionEvent ae) { argument
149 System.err.println(ae);
/openjdk7/jdk/test/java/awt/List/SetFontTest/
H A DSetFontTest.java55 public void actionPerformed(ActionEvent ae){
63 public void actionPerformed(ActionEvent ae){
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DDynamicMethodMarshaller.java94 Exception readException( ApplicationException ae ) ;
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DMBeanServerInvocationHandlerExceptionTest.java84 } catch (AssertionError ae) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A Dxpath.cup499 OrExpr ::= AndExpr:ae
500 {: RESULT = ae; :}
502 | OrExpr:oe OR AndExpr:ae
503 {: RESULT = new LogicalExpr(LogicalExpr.OR, oe, ae); :};
508 | AndExpr:ae AND EqualityExpr:ee
509 {: RESULT = new LogicalExpr(LogicalExpr.AND, ae, ee); :};
520 RelationalExpr ::= AdditiveExpr:ae
521 {: RESULT = ae; :}
523 | RelationalExpr:re LT AdditiveExpr:ae
524 {: RESULT = new RelationalExpr(Operators.LT, re, ae);
[all...]
/openjdk7/jdk/test/java/awt/print/PrinterJob/
H A DCollate2DPrintingTest.java88 public void actionPerformed (ActionEvent ae) { argument
90 if (ae.getSource() == print2D) {
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DStreamsSurviveDestroy.java47 boolean ae, boolean wi, CountDownLatch l)
52 this.acceptException = ae;
46 Copier(String name, InputStream in, OutputStream out, boolean ae, boolean wi, CountDownLatch l) argument
/openjdk7/jdk/test/java/awt/Component/F10TopToplevel/
H A DF10TopToplevel.java76 public void actionPerformed( ActionEvent ae ) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DAWTEvent.java519 ActionEvent ae = (ActionEvent)this;
526 cmd = ae.getActionCommand();
528 return new Event(src, 0, newid, 0, 0, 0, ae.getModifiers(), cmd);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFindByQueryPanel.java63 public void actionPerformed(ActionEvent ae) {
/openjdk7/jdk/test/javax/swing/system/6799345/
H A DTestShutdown.java91 public void actionPerformed(ActionEvent ae)
/openjdk7/jdk/test/java/awt/event/KeyEvent/AcceleratorTest/
H A DAcceleratorTest.java135 public void actionPerformed(ActionEvent ae) { argument
136 if( cmdHash.containsKey(ae.getActionCommand()) ) {
/openjdk7/jdk/test/java/math/BigDecimal/
H A DAddTests.java93 } catch(ArithmeticException ae) {
257 } catch (ArithmeticException ae) {

Completed in 135 milliseconds

123