Searched refs:pe (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/sun/security/util/ |
D | PropertyExpander.java | 81 int pe = p+2; in expand() local 84 if (pe < max && value.charAt(pe) == '{') { in expand() 85 pe = value.indexOf("}}", pe); in expand() 86 if (pe == -1 || pe+2 == max) { in expand() 92 pe++; in expand() 93 sb.append(value.substring(p, pe+1)); in expand() 96 while ((pe < max) && (value.charAt(pe) != '}')) { in expand() 97 pe++; in expand() 99 if (pe == max) { in expand() 101 sb.append(value.substring(p, pe)); in expand() [all …]
|
/libcore/ojluni/src/main/java/sun/security/pkcs/ |
D | PKCS7.java | 152 ParsingException pe = new ParsingException( in PKCS7() 154 pe.initCause(ioe1); in PKCS7() 155 throw pe; in PKCS7() 176 ParsingException pe = new ParsingException( in parse() 178 pe.initCause(ioe); in parse() 179 pe.addSuppressed(ioe1); in parse() 180 throw pe; in parse() 274 ParsingException pe = new ParsingException(ce.getMessage()); in parseNetscapeCertChain() 275 pe.initCause(ce); in parseNetscapeCertChain() 276 throw pe; in parseNetscapeCertChain() [all …]
|
/libcore/ojluni/src/main/java/sun/net/ |
D | ProgressMonitor.java | 129 …ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getS… in registerSource() local 130 pl.progressStart(pe); in registerSource() 166 …ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getS… in unregisterSource() local 167 pl.progressFinish(pe); in unregisterSource() 198 …ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getS… in updateProgress() local 199 pl.progressUpdate(pe); in updateProgress()
|
/libcore/luni/src/test/java/libcore/java/text/ |
D | OldDateFormatTest.java | 218 } catch (ParseException pe) { in test_parseLString() 219 assertNotNull(pe.getMessage()); in test_parseLString() 233 } catch(ParseException pe) { in test_parseLString() 240 } catch(ParseException pe) { in test_parseLString() 246 } catch(ParseException pe) { in test_parseLString() 252 } catch(ParseException pe) { in test_parseLString() 266 } catch(ParseException pe) { in test_parseLString() 273 } catch(ParseException pe) { in test_parseLString() 280 } catch(ParseException pe) { in test_parseLString() 294 } catch(ParseException pe) { in test_parseLString() [all …]
|
D | OldNumberFormatTest.java | 746 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 754 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 761 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 770 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 779 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 787 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 796 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String()
|
/libcore/ojluni/src/main/java/java/util/ |
D | ImmutableCollections.java | 694 private int probe(Object pe) { in probe() argument 695 int idx = Math.floorMod(pe.hashCode() ^ SALT, elements.length); in probe() 700 } else if (pe.equals(ee)) { in probe()
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | ExemptionMechanismTest.java | 103 } catch (NoSuchProviderException pe) { in testGetInstance()
|