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.java2208 int slash = resName.lastIndexOf('/');
2209 if (slash > 0) {
2210 ident = resName.substring(slash+1);
2214 if (colon > 0 && slash > 0 && (slash-colon) > 1) {
2215 type = resName.substring(colon+1, slash);
/frameworks/native/cmds/dumpstate/
H A Dutils.cpp518 const char *slash = "/"; local
527 ++slash;
545 asprintf(&newpath, "%s%s%s%s", dir, slash, d->d_name,
954 /* skip initial slash */
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java6258 int slash = info.path.indexOf('/');
6259 if (slash < 0) throw new IOException("Illegal semantic path in " + info.path);
6260 info.packageName = info.path.substring(0, slash);
6261 info.path = info.path.substring(slash+1);
6267 slash = info.path.indexOf('/');
6268 if (slash < 0) {
6272 info.domain = info.path.substring(0, slash);
6273 info.path = info.path.substring(slash + 1);
7672 int slash = info.path.indexOf('/');
7673 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 423 milliseconds