Searched refs:sep (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/
H A DComponentName.java160 int sep = str.indexOf('/');
161 if (sep < 0 || (sep+1) >= str.length()) {
164 String pkg = str.substring(0, sep);
165 String cls = str.substring(sep+1);
H A DIntent.java3798 int sep = uri.indexOf('!', i);
3799 if (sep < 0) sep = j;
3800 if (i < sep) {
3801 intent.addCategory(uri.substring(i, sep));
3803 i = sep + 1;
3828 int sep = uri.indexOf('!', i);
3829 if (sep >= 0 && sep < j) {
3830 String pkg = uri.substring(i, sep);
[all...]
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_file.c241 char *sep = strrchr(tmpPathBuf1, '/'); local
243 if (sep == NULL || ((sep != NULL) && (sep == tmpPathBuf1)))
248 sep = " <empty>"; /* trace will show sep+1 */
253 *iteration = sep - tmpPathBuf1 + 1;
254 *sep = 0;
265 Trace("DRM_file_listOpen: dir %s, filter %s", tmpPathBuf1, sep+1);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1432 ssize_t sep = ident.findLast('.'); local
1433 if (sep >= 0) {
1434 parentIdent.setTo(ident, sep);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java937 static String[] splitString(String str, char sep) { argument
940 while ((i=str.indexOf(sep, i)) >= 0) {
949 while ((i=str.indexOf(sep, i)) >= 0) {

Completed in 2758 milliseconds