Searched refs:slash (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.cpp37 const char *slash = dot - 1; local
38 while (slash >= fileName) {
39 if (*slash == OS_PATH_SEPARATOR) {
42 if ((*slash == '.') && (*dot == 0)) {
43 dot = slash;
45 --slash;
47 ++slash;
48 return string(slash, dot - slash);
71 const char *slash local
[all...]
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DSharedStorageAgent.java75 int slash = relpath.indexOf('/');
76 if (slash > 0) {
78 int i = Integer.parseInt(relpath.substring(0, slash));
80 outFile = new File(mVolumes[i].getPath(), relpath.substring(slash + 1));
86 if (DEBUG) Slog.w(TAG, "Bad volume number token: " + relpath.substring(0, slash));
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSimpleSessionDescription.java410 int slash = parts[2].indexOf('/');
411 return (slash < 0) ? parts[2] : parts[2].substring(0, slash);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter.java199 int slash = mClassName.lastIndexOf('/');
201 if (dol != -1 && dol > slash && dol == mClassName.indexOf('$')) {
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java2101 int slash = resName.lastIndexOf('/');
2102 if (slash > 0) {
2103 ident = resName.substring(slash+1);
2107 if (colon > 0 && slash > 0 && (slash-colon) > 1) {
2108 type = resName.substring(colon+1, slash);
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp516 const char *slash = "/"; local
525 ++slash;
543 asprintf(&newpath, "%s%s%s%s", dir, slash, d->d_name,
951 /* skip initial slash */
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java6222 int slash = info.path.indexOf('/');
6223 if (slash < 0) throw new IOException("Illegal semantic path in " + info.path);
6224 info.packageName = info.path.substring(0, slash);
6225 info.path = info.path.substring(slash+1);
6231 slash = info.path.indexOf('/');
6232 if (slash < 0) {
6236 info.domain = info.path.substring(0, slash);
6237 info.path = info.path.substring(slash + 1);
7632 int slash = info.path.indexOf('/');
7633 if (slash <
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 8861 milliseconds