Searched refs:re (Results 1 - 25 of 99) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DCompletedFuture.java40 private final Throwable re; field in class:CompletedFuture
42 public CompletedFuture(T v, Throwable re) { argument
44 this.re = re;
60 if (re != null) {
61 throw new ExecutionException(re);
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoCompiledScript.java56 } catch (RhinoException re) {
57 int line = (line = re.lineNumber()) == 0 ? -1 : line;
59 if (re instanceof JavaScriptException) {
60 msg = String.valueOf(((JavaScriptException)re).getValue());
62 msg = re.toString();
64 ScriptException se = new ScriptException(msg, re.sourceName(), line);
65 se.initCause(re);
H A DRhinoScriptEngine.java215 } catch (RhinoException re) {
216 if (DEBUG) re.printStackTrace();
217 int line = (line = re.lineNumber()) == 0 ? -1 : line;
219 if (re instanceof JavaScriptException) {
220 msg = String.valueOf(((JavaScriptException)re).getValue());
222 msg = re.toString();
224 ScriptException se = new ScriptException(msg, re.sourceName(), line);
225 se.initCause(re);
297 } catch (RhinoException re) {
298 if (DEBUG) re
[all...]
/openjdk7/langtools/test/tools/javac/7129225/
H A DAnnoProcessor.java40 public boolean process(Set<? extends TypeElement> set, RoundEnvironment re) { argument
41 messager.printMessage(Kind.NOTE, "RUNNING - lastRound = " + re.processingOver());
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexpPool.java49 * @param re The regular expression to add to the pool.
58 public void add(String re, Object ret) throws REException { argument
59 add(re, ret, false);
66 * @param re The regular expression to be replaced in the pool.
74 public void replace(String re, Object ret) { argument
76 add(re, ret, true);
84 * @param re The regular expression to be deleted from the pool.
88 public Object delete(String re) { argument
92 int len = re.length() - 1;
96 if (!re
165 add(String re, Object ret, boolean replace) argument
268 String re = null; field in class:RegexpNode
[all...]
/openjdk7/jdk/test/java/lang/reflect/ReflectPermission/
H A DExceptions.java50 RuntimeException re = new RuntimeException("no exception thrown");
53 fail("null", re);
61 fail("\"\"", re);
70 fail("null, null", re);
78 fail("\"\", null", re);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/UTIL/
H A DTestUtil.java40 RuntimeException re = new RuntimeException
42 re.initCause(ex);
43 throw re;
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DSharedSynchronizer.java75 RuntimeException re = new RuntimeException(e.getMessage());
76 re.initCause(e);
77 throw re;
/openjdk7/jdk/test/javax/security/auth/x500/X500Principal/
H A DInvalidConstructorInput.java42 } catch (RuntimeException re) {
56 } catch (RuntimeException re) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerProcessor.java145 } catch (RuntimeException re) {
146 logger.log(Level.FINER, "exception in handler chain", re);
147 throw re;
202 } catch (RuntimeException re) {
203 logger.log(Level.FINER, "exception in handler chain", re);
204 throw re;
360 } catch (RuntimeException re) {
362 "exception in handler chain", re);
363 throw re;
373 } catch (RuntimeException re) {
[all...]
H A DClientLogicalHandlerTube.java129 } catch (RuntimeException re) {
132 throw new WebServiceException(re);
150 } catch (RuntimeException re) {
152 throw new WebServiceException(re);
H A DClientMessageHandlerTube.java87 } catch (RuntimeException re) {
88 throw new WebServiceException(re);
112 } catch (RuntimeException re) {
115 throw new WebServiceException(re);
H A DClientSOAPHandlerTube.java132 } catch (RuntimeException re) {
135 throw new WebServiceException(re);
153 } catch (RuntimeException re) {
154 throw new WebServiceException(re);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DMethodCallable.java60 } catch (RuntimeException re) {
61 throw re;
/openjdk7/jdk/test/java/rmi/activation/CommandEnvironment/
H A DDoctor.java70 } catch (RemoteException re) {
72 re.printStackTrace();
/openjdk7/hotspot/test/runtime/6888954/
H A Dvmerrors.sh36 for re in \
59 egrep -- "$re" $f > $$
/openjdk7/jdk/test/java/util/logging/bundlesearch/
H A DLoadItUp2.java50 } catch (MissingResourceException re) {
/openjdk7/langtools/test/tools/javac/T7142672/
H A DAnnoProcessor.java37 public boolean process(Set<? extends TypeElement> set, RoundEnvironment re) { argument
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DRegistryRunner.java69 } catch (RemoteException re) {
76 } catch (RemoteException re) {
78 re);
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DCheckForException.java82 NotSerializableException re = null;
89 re = e;
91 if (re == null) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAbstractHeapGraphWriter.java121 } catch (RuntimeException re) {
122 handleRuntimeException(re);
163 } catch (RuntimeException re) {
164 handleRuntimeException(re);
297 } catch (RuntimeException re) {
298 handleRuntimeException(re);
354 // (if any) and re-throws the same.
355 protected void handleRuntimeException(RuntimeException re) argument
357 Throwable cause = re.getCause();
361 // some other RuntimeException, just re
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java348 public static NamingException wrapRemoteException(RemoteException re) { argument
352 if (re instanceof ConnectException) {
355 } else if (re instanceof AccessException) {
358 } else if (re instanceof StubNotFoundException ||
359 re instanceof UnknownHostException ||
360 re instanceof SocketSecurityException) {
363 } else if (re instanceof ExportException ||
364 re instanceof ConnectIOException ||
365 re instanceof MarshalException ||
366 re instanceo
[all...]
/openjdk7/jdk/test/java/rmi/server/clientStackTrace/
H A DClientStackTrace.java84 } catch (RemoteException re) {
85 re.printStackTrace(ps);
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSACore.java148 c = c.multiply(params.re).mod(n);
238 final BigInteger re; field in class:RSACore.BlindingParameters
243 BlindingParameters(BigInteger e, BigInteger re, BigInteger rInv) { argument
245 this.re = re;
280 BigInteger re = r.modPow(e, modulus);
282 params = new BlindingParameters(e, re, rInv);
/openjdk7/jdk/src/share/classes/javax/management/
H A DClassAttributeValueExp.java127 } catch (Exception re) {

Completed in 130 milliseconds

1234