/frameworks/compile/slang/ |
D | slang_rs_reflect_utils.cpp | 34 const char *slash = dot - 1; in GetFileNameStem() local 35 while (slash >= fileName) { in GetFileNameStem() 36 if (*slash == OS_PATH_SEPARATOR) { in GetFileNameStem() 39 if ((*slash == '.') && (*dot == 0)) { in GetFileNameStem() 40 dot = slash; in GetFileNameStem() 42 --slash; in GetFileNameStem() 44 ++slash; in GetFileNameStem() 45 return string(slash, dot - slash); in GetFileNameStem() 68 const char *slash = dot - 1; in InternalFileNameConvert() local 69 while (slash >= rsFileName) { in InternalFileNameConvert() [all …]
|
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/ |
D | SharedStorageAgent.java | 73 int slash = relpath.indexOf('/'); in onRestoreFile() local 74 if (slash > 0) { in onRestoreFile() 76 int i = Integer.parseInt(relpath.substring(0, slash)); in onRestoreFile() 78 outFile = new File(mVolumes[i].getPath(), relpath.substring(slash + 1)); in onRestoreFile() 84 if (DEBUG) Slog.w(TAG, "Bad volume number token: " + relpath.substring(0, slash)); in onRestoreFile()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SimpleSessionDescription.java | 410 int slash = parts[2].indexOf('/'); in getAddress() local 411 return (slash < 0) ? parts[2] : parts[2].substring(0, slash); in getAddress()
|
/frameworks/native/cmds/dumpstate/ |
D | utils.c | 466 char *slash = strrchr(anr_traces_dir, '/'); in dump_traces() local 467 if (slash != NULL) { in dump_traces() 468 *slash = '\0'; in dump_traces()
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
D | DelegateMethodAdapter2.java | 195 int slash = mClassName.lastIndexOf('/'); in generateDelegateCode() local 197 if (dol != -1 && dol > slash && dol == mClassName.indexOf('$')) { in generateDelegateCode()
|
/frameworks/base/services/java/com/android/server/ |
D | WallpaperManagerService.java | 1237 int slash = resName.lastIndexOf('/'); in restoreNamedResourceLocked() local 1238 if (slash > 0) { in restoreNamedResourceLocked() 1239 ident = resName.substring(slash+1); in restoreNamedResourceLocked() 1243 if (colon > 0 && slash > 0 && (slash-colon) > 1) { in restoreNamedResourceLocked() 1244 type = resName.substring(colon+1, slash); in restoreNamedResourceLocked()
|
D | BackupManagerService.java | 4225 int slash = info.path.indexOf('/'); in readTarHeaders() local 4226 … if (slash < 0) throw new IOException("Illegal semantic path in " + info.path); in readTarHeaders() 4227 info.packageName = info.path.substring(0, slash); in readTarHeaders() 4228 info.path = info.path.substring(slash+1); in readTarHeaders() 4232 slash = info.path.indexOf('/'); in readTarHeaders() 4233 … if (slash < 0) throw new IOException("Illegal semantic path in non-manifest " + info.path); in readTarHeaders() 4234 info.domain = info.path.substring(0, slash); in readTarHeaders() 4235 info.path = info.path.substring(slash + 1); in readTarHeaders()
|
/frameworks/base/tools/aidl/ |
D | aidl.cpp | 650 const char* slash = "\\"; local 653 slash = ""; 662 fprintf(to, " %s %s\n", options.inputFileName.c_str(), slash); 666 slash = ""; 669 fprintf(to, " %s %s\n", import->filename, slash);
|
/frameworks/base/docs/html/guide/webapps/ |
D | migrating.jd | 210 and it's important to include the trailing slash at the end, otherwise, any requests from the
|
/frameworks/base/docs/html/google/gcm/ |
D | demo.jd | 191 …server, if you are using App Engine), and it does not include the forward slash (<code>/</code>). …
|
/frameworks/base/docs/html/training/basics/firstapp/ |
D | building-ui.jd | 177 XML. It is followed by the resource type ({@code id} in this case), a slash, then the resource name
|
/frameworks/base/docs/html/guide/topics/search/ |
D | adding-custom-suggestions.jd | 520 the string from {@code android:searchSuggestIntentData}, appends a slash ("/") and then adds the
|
/frameworks/base/docs/html/tools/help/ |
D | adb.jd | 816 contains a "/" (forward-slash); otherwise it assumes the argument is a package name.
|
/frameworks/base/docs/html/tools/testing/ |
D | activity_test.jd | 993 <p>Remove the forward slash characters at the beginning of the line to
|