Home
last modified time | relevance | path

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

/frameworks/base/mime/java/android/content/type/
DDefaultMimeMapFactory.java86 int startIdx = 0; in parseTypes() local
88 int endIdx = line.indexOf(' ', startIdx); in parseTypes()
92 String spec = line.substring(startIdx, endIdx); in parseTypes()
97 startIdx = endIdx + 1; // skip over the space in parseTypes()
98 } while (startIdx < line.length()); in parseTypes()
/frameworks/base/core/java/com/android/internal/os/
DKernelSingleUidTimeReader.java238 final int startIdx = mLastUidCpuTimeMs.indexOfKey(startUid); in removeUidsInRange() local
240 mLastUidCpuTimeMs.removeAtRange(startIdx, endIdx - startIdx + 1); in removeUidsInRange()
/frameworks/base/core/tests/coretests/src/android/widget/
DEditorCursorDragTest.java223 int startIdx = text.indexOf("5"); in testCursorDrag_diagonal_thresholdConfig() local
225 onView(withId(R.id.textview)).perform(dragOnText(startIdx, endIdx)); in testCursorDrag_diagonal_thresholdConfig()
231 onView(withId(R.id.textview)).perform(dragOnText(startIdx, endIdx)); in testCursorDrag_diagonal_thresholdConfig()
/frameworks/base/tools/aapt/
DResourceTable.cpp1034 ssize_t startIdx = block.indexOfAttribute(NULL, "start"); in compileResourceFile() local
1035 if (startIdx >= 0) { in compileResourceFile()
1036 const char16_t* startStr = block.getAttributeStringValue(startIdx, &len); in compileResourceFile()
1040 String8(block.getAttributeStringValue(startIdx, &len)).string()); in compileResourceFile()