Searched refs:startIndex (Results 1 – 2 of 2) sorted by relevance
208 int startIndex = text.indexOf('<'); in spanify() local209 if (startIndex < 0) return text; in spanify()216 text = text.substring(0, startIndex) + text.substring(startIndex + 1, endIndex) + in spanify()219 spanStarts[spanCount] = startIndex; in spanify()223 startIndex = text.indexOf('<'); in spanify()224 } while (startIndex >= 0); in spanify()
123 public static int findMaxIndex(double[] data, int startIndex, int endIndex) { in findMaxIndex() argument124 int maxIndex = startIndex; in findMaxIndex()125 for (int i = startIndex + 1; i <= endIndex; i++) { in findMaxIndex()