Searched refs:dot (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
H A DMimeTypesFileTypeDetector.java63 int dot = name.indexOf('.');
64 if ((dot >= 0) && (dot < name.length() - 1)) {
65 ext = name.substring(dot + 1);
/libcore/ojluni/src/main/java/sun/invoke/util/
H A DVerifyAccess.java227 int dot = name1.lastIndexOf('.');
228 if (dot != name2.lastIndexOf('.'))
230 for (int i = 0; i < dot; i++) {
242 int dot = name.lastIndexOf('.');
243 if (dot < 0) return "";
244 return name.substring(0, dot);
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderImpl.java197 int dot = text.indexOf(' ');
199 String target = (dot != -1 ? text.substring(0, dot) : text);
200 String data = (dot != -1 ? text.substring(dot + 1) : "");
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java113 int dot = name.lastIndexOf(".");
114 String path = name.substring(0, dot).replace('.', File.separatorChar);
119 return new File(path, name.substring(dot + 1) + "." + index + ".dat");
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DOldAndroidClassTest.java148 int dot = signature.lastIndexOf('.', par);
150 signature = signature.substring(dot + 1);
/libcore/ojluni/src/main/java/java/util/
H A DFormatter.java3502 // Look for the dot. If we don't find one, the we'll need to add
3525 // Add dot if previously determined to be necessary.
3782 private boolean dot = false; field in class:Formatter.FormatSpecifier.BigDecimalLayout
3790 return dot;
3842 dot = true;
3866 dot = true;
3874 dot = true;
3889 dot = true;
4437 int dot = len;
4440 dot
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DClass.java1229 final int dot = simpleName.lastIndexOf(".");
1230 if (dot > 0) {

Completed in 231 milliseconds