Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
DHandler.java104 int sep = file.indexOf(separator); in hashCode() local
106 if (sep == -1) in hashCode()
110 String fileWithoutEntry = file.substring(0, sep); in hashCode()
118 String entry = file.substring(sep + 2); in hashCode()
/libcore/ojluni/src/main/java/java/io/
DUnixFileSystem.java210 char sep = File.separatorChar; in parentOrNull() local
222 } else if (c == sep) { in parentOrNull()
229 path.charAt(idx - 1) == sep) { in parentOrNull()
DFile.java2153 char sep = s.readChar(); // read the previous separator char in readObject() local
2154 if (sep != separatorChar) in readObject()
2155 pathField = pathField.replace(sep, separatorChar); in readObject()
/libcore/ojluni/annotations/hiddenapi/java/text/
DDecimalFormatSymbols.java184 public void setMonetaryDecimalSeparator(char sep) { in setMonetaryDecimalSeparator() argument
/libcore/ojluni/src/main/java/java/text/
DDecimalFormatSymbols.java515 public void setMonetaryDecimalSeparator(char sep) in setMonetaryDecimalSeparator() argument
517 monetarySeparator = sep; in setMonetaryDecimalSeparator()
/libcore/luni/src/test/java/libcore/java/util/
DBase64Test.java716 byte[] sep = new byte[] { '\r', '\n' }; in testRoundTrip_empty()
717 checkRoundTrip_empty(Base64.getMimeEncoder(-1, sep), Base64.getMimeDecoder()); in testRoundTrip_empty()
719 checkRoundTrip_empty(Base64.getMimeEncoder(23, sep), Base64.getMimeDecoder()); in testRoundTrip_empty()
720 checkRoundTrip_empty(Base64.getMimeEncoder(76, sep), Base64.getMimeDecoder()); in testRoundTrip_empty()
/libcore/ojluni/src/main/java/sun/util/locale/
DInternalLocaleBuilder.java576 private int checkVariants(String variants, String sep) { in checkVariants() argument
577 StringTokenIterator itr = new StringTokenIterator(variants, sep); in checkVariants()
/libcore/ojluni/src/main/java/sun/security/x509/
DAlgorithmId.java624 final int sep = alias.indexOf('.', "ALG.ALIAS.".length()); in reinitializeMappingTableLocked() local
625 String suffix = alias.substring(sep + 1); in reinitializeMappingTableLocked()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DFileTest.java412 String sep = File.separator; in test_createNewFile() local
413 f1 = new File(sep + "a" + sep + ".." + sep + ".." + sep); in test_createNewFile()
425 f1 = new File(sep + ".."); in test_createNewFile()