Searched refs:pe (Results 1 – 8 of 8) 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 | 223 } catch (ParseException pe) { in test_parseLString() 224 assertNotNull(pe.getMessage()); in test_parseLString() 238 } catch(ParseException pe) { in test_parseLString() 245 } catch(ParseException pe) { in test_parseLString() 251 } catch(ParseException pe) { in test_parseLString() 257 } catch(ParseException pe) { in test_parseLString() 271 } catch(ParseException pe) { in test_parseLString() 278 } catch(ParseException pe) { in test_parseLString() 285 } catch(ParseException pe) { in test_parseLString() 299 } catch(ParseException pe) { in test_parseLString() [all …]
|
D | OldNumberFormatTest.java | 750 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 758 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 765 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 774 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 783 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 791 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String() 800 } catch (java.text.ParseException pe) { in test_parseLjava_lang_String()
|
/libcore/ojluni/src/test/java/text/Format/MessageFormat/ |
D | MessageTest.java | 98 catch(java.text.ParseException pe ) { in TestMSGPatternTest()
|
/libcore/ojluni/src/main/java/java/util/ |
D | ImmutableCollections.java | 1013 private int probe(Object pe) { 1014 int idx = Math.floorMod(pe.hashCode(), elements.length); 1019 } else if (pe.equals(ee)) {
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | ExemptionMechanismTest.java | 103 } catch (NoSuchProviderException pe) { in testGetInstance()
|