Searched refs:sep (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/content/ |
D | ComponentName.java | 160 int sep = str.indexOf('/'); in unflattenFromString() local 161 if (sep < 0 || (sep+1) >= str.length()) { in unflattenFromString() 164 String pkg = str.substring(0, sep); in unflattenFromString() 165 String cls = str.substring(sep+1); in unflattenFromString()
|
D | Intent.java | 3608 int sep = uri.indexOf('!', i); in getIntentOld() local 3609 if (sep < 0) sep = j; in getIntentOld() 3610 if (i < sep) { in getIntentOld() 3611 intent.addCategory(uri.substring(i, sep)); in getIntentOld() 3613 i = sep + 1; in getIntentOld() 3638 int sep = uri.indexOf('!', i); in getIntentOld() local 3639 if (sep >= 0 && sep < j) { in getIntentOld() 3640 String pkg = uri.substring(i, sep); in getIntentOld() 3641 String cls = uri.substring(sep + 1, j); in getIntentOld()
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
D | drm_file.c | 241 char *sep = strrchr(tmpPathBuf1, '/'); in DRM_file_listOpen() local 243 if (sep == NULL || ((sep != NULL) && (sep == tmpPathBuf1))) in DRM_file_listOpen() 248 sep = " <empty>"; /* trace will show sep+1 */ in DRM_file_listOpen() 253 *iteration = sep - tmpPathBuf1 + 1; in DRM_file_listOpen() 254 *sep = 0; in DRM_file_listOpen() 265 Trace("DRM_file_listOpen: dir %s, filter %s", tmpPathBuf1, sep+1); in DRM_file_listOpen()
|
/frameworks/base/tools/aapt/ |
D | ResourceTable.cpp | 1431 ssize_t sep = ident.findLast('.'); in compileResourceFile() local 1432 if (sep >= 0) { in compileResourceFile() 1433 parentIdent.setTo(ident, sep); in compileResourceFile()
|
/frameworks/base/services/java/com/android/server/pm/ |
D | PackageManagerService.java | 842 static String[] splitString(String str, char sep) { in splitString() argument 845 while ((i=str.indexOf(sep, i)) >= 0) { in splitString() 854 while ((i=str.indexOf(sep, i)) >= 0) { in splitString()
|