Searched refs:dot (Results 1 – 12 of 12) sorted by relevance
100 int dot = name.indexOf('.'); in getExtension() local101 if ((dot >= 0) && (dot < name.length() - 1)) { in getExtension()102 ext = name.substring(dot + 1); in getExtension()
293 int dot = name1.lastIndexOf('.'); in isSamePackage() local294 if (dot != name2.lastIndexOf('.')) in isSamePackage()296 for (int i = 0; i < dot; i++) { in isSamePackage()
197 int dot = text.indexOf(' '); in parse() local199 String target = (dot != -1 ? text.substring(0, dot) : text); in parse()200 String data = (dot != -1 ? text.substring(dot + 1) : ""); in parse()
113 int dot = name.lastIndexOf("."); in getDataFile() local114 String path = name.substring(0, dot).replace('.', File.separatorChar); in getDataFile()119 return new File(path, name.substring(dot + 1) + "." + index + ".dat"); in getDataFile()
152 int dot = signature.lastIndexOf('.', par); in testClassGetMethodsNoDupes() local155 signature = method.getReturnType().getTypeName() + ' ' + signature.substring(dot + 1); in testClassGetMethodsNoDupes()
4024 private boolean dot = false; field in Formatter.FormatSpecifier.BigDecimalLayout4032 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 …]
538 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()
1309 int dot = cn.lastIndexOf('.'); in getPackageName() local1310 return (dot != -1) ? cn.substring(0, dot).intern() : ""; in getPackageName()
688 // Test the dot metacharacter
530 // Test the dot metacharacter
638 // Test the dot metacharacter
933 static void dot(int i, int acc, int k) { in dot() method in LoopCombinatorTest.Fac