Home
last modified time | relevance | path

Searched refs:typeEnd (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
DAttributeInfo.java252 int typeEnd = url.indexOf('/', 1); in isValid() local
253 if (typeEnd != -1) { in isValid()
255 int colon = url.lastIndexOf(':', typeEnd); in isValid()
259 String typeName = url.substring(typeBegin, typeEnd); in isValid()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DIncludeFinder.java596 int typeEnd = url.indexOf('/', 1); in urlToLocalResource() local
597 if (typeEnd == -1) { in urlToLocalResource()
600 int nameBegin = typeEnd + 1; in urlToLocalResource()
602 int colon = url.lastIndexOf(':', typeEnd); in urlToLocalResource()
611 assert "layout".equals(url.substring(typeBegin, typeEnd)); //$NON-NLS-1$ in urlToLocalResource()
DGraphicalEditorPart.java2336 int typeEnd = url.indexOf('/', 1); in findResourceFile() local
2337 if (typeEnd == -1) { in findResourceFile()
2340 int nameBegin = typeEnd + 1; in findResourceFile()
2342 int colon = url.lastIndexOf(':', typeEnd); in findResourceFile()
2357 String typeName = url.substring(typeBegin, typeEnd); in findResourceFile()