Searched refs:re (Results 26 - 50 of 99) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DServerLogicalHandlerTube.java137 } catch (RuntimeException re) {
139 throw re;
163 } catch (RuntimeException re) {
164 throw re;
H A DServerMessageHandlerTube.java102 } catch (RuntimeException re) {
103 throw re;
114 } catch (RuntimeException re) {
116 throw re;
H A DServerSOAPHandlerTube.java125 } catch (RuntimeException re) {
127 throw re;
155 } catch (RuntimeException re) {
156 throw re;
/openjdk7/jdk/test/java/io/FilterOutputStream/
H A DBoundsCheck.java86 } catch (NullPointerException re) {
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DMakefile51 JINCLUDE=/java/re/jdk/1.6.0/latest/binaries/$(OUTPUT_DIR)/include
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPBKDF2HmacSHA1Factory.java144 } catch (InvalidKeySpecException re) {
147 ike.initCause(re);
/openjdk7/jdk/test/com/sun/jdi/
H A DCatchPatternTest.sh56 } catch(RuntimeException re) {
57 System.out.println(" loop: " + re.getMessage() +
/openjdk7/jdk/test/sun/security/ssl/sanity/pluggability/
H A DCheckSSLContextExport.java100 } catch (RuntimeException re) {
102 throw re;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java258 RegularExpression re = null;
269 re = cached;
273 if (re != null) {
276 REUtil.regexCache[0] = re;
279 re = new RegularExpression(pattern, options);
281 REUtil.regexCache[0] = re;
284 return re;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DXSLTCDTMManager.java340 catch (RuntimeException re) {
341 throw re;
375 catch (RuntimeException re) {
376 throw re;
460 catch (RuntimeException re) {
461 throw re;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DRMIHelper.java65 } catch (RemoteException re) {
75 throw new DebuggerException(re);
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeValueExp.java164 } catch (Exception re) {
/openjdk7/corba/make/common/shared/
H A DDefs-bsd.gmk108 _BOOTDIR1 =$(SLASH_JAVA)/re/jdk/$(PREVIOUS_JDK_VERSION)/archive/fcs/binaries/$(PLATFORM)-$(ARCH)
H A DDefs-linux.gmk108 _BOOTDIR1 =$(SLASH_JAVA)/re/jdk/$(PREVIOUS_JDK_VERSION)/archive/fcs/binaries/$(PLATFORM)-$(ARCH)
H A DDefs-solaris.gmk104 _BOOTDIR1 =$(SLASH_JAVA)/re/jdk/$(PREVIOUS_JDK_VERSION)/archive/fcs/binaries/$(PLATFORM)-$(ARCH)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapHprofBinWriter.java452 } catch (RuntimeException re) {
453 handleRuntimeException(re);
582 } catch (RuntimeException re) {
583 handleRuntimeException(re);
847 } catch (RuntimeException re) {
848 handleRuntimeException(re);
879 } catch (RuntimeException re) {
880 handleRuntimeException(re);
/openjdk7/jdk/src/share/classes/java/awt/
H A DBasicStroke.java297 sun.java2d.pipe.RenderingEngine re =
299 return re.createStrokedShape(s, width, cap, join, miterlimit,
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DBadKdc.java40 static final Pattern re = Pattern.compile( field in class:BadKdc
171 Matcher m = re.matcher(line);
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKeyTab.java173 } catch (RealmException re) {
/openjdk7/jdk/src/share/classes/java/math/
H A DMathContext.java198 } catch (RuntimeException re) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapNamingEnumeration.java366 } catch (LdapReferralException re) {
370 errEx = re.getNamingException();
372 refEx = re;
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DTrustManagerFactoryImpl.java64 } catch (RuntimeException re) {
67 "SunX509: skip default keystore: " + re);
69 throw re;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderingEngine.java144 for (RenderingEngine re : reLoader) {
145 service = re;
146 if (re.getClass().getName().equals(reClass)) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DServerNotifForwarder.java167 Exception re = null;
174 if (re != null) {
175 re = e;
179 if (re != null) {
180 throw re;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A Dxpath.cup511 EqualityExpr ::= RelationalExpr:re
512 {: RESULT = re; :}
514 | EqualityExpr:ee EQ RelationalExpr:re
515 {: RESULT = new EqualityExpr(Operators.EQ, ee, re); :}
517 | EqualityExpr:ee NE RelationalExpr:re
518 {: RESULT = new EqualityExpr(Operators.NE, ee, re); :};
523 | RelationalExpr:re LT AdditiveExpr:ae
524 {: RESULT = new RelationalExpr(Operators.LT, re, ae); :}
526 | RelationalExpr:re GT AdditiveExpr:ae
527 {: RESULT = new RelationalExpr(Operators.GT, re, a
[all...]

Completed in 93 milliseconds

1234