Searched refs:pe (Results 1 - 25 of 123) sorted by relevance

12345

/openjdk10/jdk/src/java.base/share/classes/sun/security/util/
H A DPropertyExpander.java81 int pe = p+2;
84 if (pe < max && value.charAt(pe) == '{') {
85 pe = value.indexOf("}}", pe);
86 if (pe == -1 || pe+2 == max) {
92 pe++;
93 sb.append(value.substring(p, pe+1));
96 while ((pe < ma
[all...]
/openjdk10/jdk/test/java/awt/print/PrinterJob/
H A DExceptionTest.java51 } catch (PrinterException pe) {
52 if (!(pe.getCause() instanceof IndexOutOfBoundsException)) {
H A DPrintBadImage.java46 } catch (PrinterException pe) {
/openjdk10/jdk/test/java/util/PluggableLocale/providersrc/
H A DCollatorProviderImpl.java60 } catch (ParseException pe) {
61 System.err.println(pe+ja.getRules()+"& Z < "+dialect[i]);
/openjdk10/jdk/test/sun/security/ssl/rsa/
H A DBrokenRSAPrivateCrtKey.java62 BigInteger pe =
65 System.out.println("public exponent: " + pe);
/openjdk10/langtools/test/tools/javac/AnonymousProtect/P2/
H A DusePub.java29 P1.pubExposePriv pe = new P1.pubExposePriv(new P1.pub()){};
/openjdk10/jdk/src/java.base/share/classes/sun/security/pkcs/
H A DPKCS7.java138 ParsingException pe = new ParsingException(
140 pe.initCause(ioe1);
141 throw pe;
162 ParsingException pe = new ParsingException(
164 pe.initCause(ioe);
165 pe.addSuppressed(ioe1);
166 throw pe;
255 ParsingException pe = new ParsingException(ce.getMessage());
256 pe.initCause(ce);
257 throw pe;
[all...]
/openjdk10/jdk/test/sun/security/pkcs11/Provider/
H A DConfigShortPath.java76 } catch (ProviderException pe) {
77 pe.printStackTrace();
78 if (pe.getCause() instanceof IOException) {
/openjdk10/jdk/src/java.base/share/classes/sun/security/rsa/
H A DRSAPrivateCrtKeyImpl.java61 private BigInteger pe; // prime exponent p field in class:RSAPrivateCrtKeyImpl
100 BigInteger p, BigInteger q, BigInteger pe, BigInteger qe,
107 this.pe = pe;
122 out.putInteger(pe);
166 return pe;
207 pe = data.getPositiveBigInteger();
99 RSAPrivateCrtKeyImpl(BigInteger n, BigInteger e, BigInteger d, BigInteger p, BigInteger q, BigInteger pe, BigInteger qe, BigInteger coeff) argument
/openjdk10/jdk/src/java.management.rmi/share/classes/javax/management/remote/rmi/
H A DRMIConnectionImpl.java261 } catch (PrivilegedActionException pe) {
262 Exception e = extractException(pe);
307 } catch (PrivilegedActionException pe) {
308 Exception e = extractException(pe);
369 } catch (PrivilegedActionException pe) {
370 Exception e = extractException(pe);
434 } catch (PrivilegedActionException pe) {
435 Exception e = extractException(pe);
470 } catch (PrivilegedActionException pe) {
471 Exception e = extractException(pe);
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/
H A DBinderImpl.java220 PropertyException pe = null;
226 pe = p;
233 pe = p;
236 pe.setStackTrace(Thread.currentThread().getStackTrace());
237 throw pe;
249 PropertyException pe = null;
255 pe = p;
262 pe = p;
267 pe.setStackTrace(Thread.currentThread().getStackTrace());
268 throw pe;
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/
H A DPolicyFile.java572 } catch (PolicyParser.ParsingException pe) {
574 throw new InternalError("Failed to load default.policy", pe);
581 Object[] source = {policy, pe.getLocalizedMessage()};
585 pe.printStackTrace();
621 PolicyEntry pe = new PolicyEntry(new CodeSource(null,
623 pe.add(SecurityConstants.LOCAL_LISTEN_PERMISSION);
624 pe.add(new PropertyPermission("java.version",
626 pe.add(new PropertyPermission("java.vendor",
628 pe.add(new PropertyPermission("java.vendor.url",
630 pe
1521 getPrincipalInfo(PolicyParser.PrincipalEntry pe, Principal[] pdp) argument
1765 expandPermissionName(PolicyParser.PermissionEntry pe, KeyStore keystore) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/net/
H A DProgressMonitor.java129 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected());
130 pl.progressStart(pe);
166 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected());
167 pl.progressFinish(pe);
198 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected());
199 pl.progressUpdate(pe);
/openjdk10/langtools/test/tools/javac/
H A DT6855236.java48 public void init(ProcessingEnvironment pe) { argument
49 super.init(pe);
50 trees = Trees.instance(pe);
/openjdk10/jdk/src/java.base/share/classes/javax/crypto/
H A DCryptoPolicyParser.java167 CryptoPermissionEntry pe =
169 e.add(pe);
469 CryptoPermissionEntry pe = permEnum.nextElement();
470 if (pe.cryptoPermission.equals(
474 if (pe.checkParam) {
476 pe.alg,
477 pe.maxKeySize,
478 pe.algParamSpec,
479 pe.exemptionMechanism));
482 pe
565 add(CryptoPermissionEntry pe) argument
570 remove(CryptoPermissionEntry pe) argument
575 contains(CryptoPermissionEntry pe) argument
[all...]
/openjdk10/jdk/test/java/awt/print/Dialog/
H A DPrintDlgApp.java73 catch (PrinterException pe) {
74 pe.printStackTrace();
/openjdk10/jdk/test/java/util/TimeZone/
H A DCLDRDisplayNamesTest.java113 } catch (ParseException pe) {
114 System.err.println(pe);
/openjdk10/jdk/test/sun/util/resources/cldr/
H A DBug8134384.java62 } catch (ParseException pe) {
63 throw new RuntimeException(String.format(Locale.ENGLISH, "ERROR parsing '%s' in locale '%s', tz: %s: %s", date, locale, tz, pe.toString()));
/openjdk10/jdk/test/tools/jlink/
H A DResourceDuplicateCheckTest.java67 } catch (PluginException pe) {
68 if (! pe.getMessage().contains("Duplicate resources:")) {
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/
H A DUtil.java86 int pe = s.indexOf(',', p);
87 if (pe == -1) pe = s.length();
88 return s.substring(p, pe);
106 int pe = s.indexOf(',', p);
107 if (pe == -1) pe = s.length();
110 v = Integer.parseInt(s.substring(p, pe));
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DDeprecatedAPIListBuilder.java107 for (Element pe : packages) {
108 if (utils.isDeprecatedForRemoval(pe)) {
109 rset.add(pe);
111 if (utils.isDeprecated(pe)) {
112 pset.add(pe);
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-buffer-deserialize-text.hh325 const char *p = buf, *pe = buf + buf_len; local
330 while (p < pe && ISSPACE (*p))
332 if (p < pe && *p == (buffer->len ? '|' : '['))
337 const char *eof = pe, *tok = NULL;
353 if ( p == pe )
485 if ( ++p != pe )
568 return p == pe && *(p-1) != ']';
H A Dhb-ot-shape-complex-use-machine.hh310 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
326 pe = eof = buffer->len;
337 if ( p == pe )
431 if ( ++p != pe )
H A Dhb-ot-shape-complex-myanmar-machine.hh284 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
300 pe = eof = buffer->len;
311 if ( p == pe )
381 if ( ++p != pe )
/openjdk10/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_Palette.cpp249 PALETTEENTRY pe[256]; local
266 numEntries = FetchPaletteEntries(hDC, pe);
271 (0 == memcmp(pe, systemEntriesWin32, numEntries * sizeof(PALETTEENTRY))))
278 memcpy(systemEntriesWin32, pe, numEntries * sizeof(PALETTEENTRY));
309 | (pe[i].peRed << 16)
310 | (pe[i].peGreen << 8)
311 | (pe[i].peBlue);

Completed in 390 milliseconds

12345