Home
last modified time | relevance | path

Searched refs:startIndex (Results 1 – 4 of 4) sorted by relevance

/development/tools/repo_diff/service/repodiff/repositories/
Dcommon.go22 startIndex := strings.Index(url, "//")
23 return url[startIndex:]
/development/tools/idegen/src/com/android/idegen/
DMakeFileParser.java201 private int findClosingParen(String value, int startIndex) {
203 for (int i = startIndex; i < value.length(); i++) { in value.length()
/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
DContactsListFragment.java730 final int startIndex = indexOfSearchQuery(displayName); in bindView() local
732 if (startIndex == -1) { in bindView()
754 highlightedName.setSpan(highlightTextSpan, startIndex, in bindView()
755 startIndex + mSearchTerm.length(), 0); in bindView()
/development/tools/bugreport/src/com/android/bugreport/inspector/
DInspector.java857 int startIndex = 0; in trimLogcat() local
863 startIndex = i; in trimLogcat()
868 mBugreport.logcat.lines = new ArrayList<LogLine>(lines.subList(startIndex, endIndex)); in trimLogcat()