Searched defs:re (Results 1 - 10 of 10) sorted by relevance

/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/langtools/test/tools/javac/T7142672/
H A DAnnoProcessor.java37 public boolean process(Set<? extends TypeElement> set, RoundEnvironment re) { argument
/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/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/hotspot/test/compiler/8005956/
H A DPolynomialRoot.java456 static String getRootsTXT(int nr,final double [] re,final double [] im) argument
461 buf.append("x."+k+"("+re[k]+","+im[k]+")\n");
/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/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/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/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacProcessingEnvironment.java638 public void runContributingProcs(RoundEnvironment re) { argument
644 callProcessor(ps.processor, emptyTypeElements, re);

Completed in 1382 milliseconds