Home
last modified time | relevance | path

Searched refs:dot (Results 1 – 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DMimeTypesFileTypeDetector.java100 int dot = name.indexOf('.'); in getExtension() local
101 if ((dot >= 0) && (dot < name.length() - 1)) { in getExtension()
102 ext = name.substring(dot + 1); in getExtension()
/libcore/ojluni/src/main/java/sun/invoke/util/
DVerifyAccess.java293 int dot = name1.lastIndexOf('.'); in isSamePackage() local
294 if (dot != name2.lastIndexOf('.')) in isSamePackage()
296 for (int i = 0; i < dot; i++) { in isSamePackage()
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderImpl.java197 int dot = text.indexOf(' '); in parse() local
199 String target = (dot != -1 ? text.substring(0, dot) : text); in parse()
200 String data = (dot != -1 ? text.substring(dot + 1) : ""); in parse()
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
DSerializationTest.java113 int dot = name.lastIndexOf("."); in getDataFile() local
114 String path = name.substring(0, dot).replace('.', File.separatorChar); in getDataFile()
119 return new File(path, name.substring(dot + 1) + "." + index + ".dat"); in getDataFile()
/libcore/luni/src/test/java/libcore/java/lang/reflect/
DOldAndroidClassTest.java152 int dot = signature.lastIndexOf('.', par); in testClassGetMethodsNoDupes() local
155 signature = method.getReturnType().getTypeName() + ' ' + signature.substring(dot + 1); in testClassGetMethodsNoDupes()
/libcore/ojluni/src/main/java/java/util/
DFormatter.java4024 private boolean dot = false; field in Formatter.FormatSpecifier.BigDecimalLayout
4032 return dot; in hasDot()
4066 dot = true; in layout()
4089 dot = true; in layout()
4098 dot = true; in layout()
4114 dot = true; in layout()
4645 int dot = len;
4648 dot = j;
4653 if (dot < len) {
4701 if (j == dot) {
[all …]
/libcore/ojluni/src/main/java/java/math/
DBigDecimal.java538 boolean dot = false; // true when there is a '.' in BigDecimal()
557 if (dot) in BigDecimal()
564 if (dot) in BigDecimal()
568 if (dot) // two dots in BigDecimal()
571 dot = true; in BigDecimal()
586 if (dot) in BigDecimal()
639 if (dot) in BigDecimal()
646 if (dot) // two dots in BigDecimal()
649 dot = true; in BigDecimal()
/libcore/ojluni/src/main/java/java/lang/
DClass.java1309 int dot = cn.lastIndexOf('.'); in getPackageName() local
1310 return (dot != -1) ? cn.substring(0, dot).intern() : ""; in getPackageName()
/libcore/ojluni/src/test/java/util/regex/
DTestCases.txt688 // Test the dot metacharacter
DBMPTestCases.txt530 // Test the dot metacharacter
DSupplementaryTestCases.txt638 // Test the dot metacharacter
/libcore/ojluni/src/test/java/lang/invoke/
DLoopCombinatorTest.java933 static void dot(int i, int acc, int k) { in dot() method in LoopCombinatorTest.Fac