HomeSort by relevance Sort by last modified time
    Searched refs:slash (Results 76 - 100 of 536) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/services/backup/java/com/android/server/backup/utils/
TarBackupReader.java 198 int slash = info.path.indexOf('/'); local
199 if (slash < 0) {
202 info.packageName = info.path.substring(0, slash);
203 info.path = info.path.substring(slash + 1);
209 slash = info.path.indexOf('/');
210 if (slash < 0) {
214 info.domain = info.path.substring(0, slash);
215 info.path = info.path.substring(slash + 1);
    [all...]
  /prebuilts/go/darwin-x86/src/os/exec/
lp_unix.go 32 // If file contains a slash, it is tried directly and the PATH is not consulted.
lp_windows.go 55 // If file contains a slash, it is tried directly and the PATH is not consulted.
  /prebuilts/go/linux-x86/src/os/exec/
lp_unix.go 32 // If file contains a slash, it is tried directly and the PATH is not consulted.
lp_windows.go 55 // If file contains a slash, it is tried directly and the PATH is not consulted.
  /external/syslinux/dos/
syslinux.c 577 int slash = 1; local
587 if (slash)
590 slash = 1;
592 slash = 0;
600 if (!slash)
  /external/toybox/kconfig/
confdata.c 413 char *slash; local
419 } else if ((slash = strrchr(name, '/'))) {
420 int size = slash - name + 1;
423 if (slash[1])
424 basename = slash + 1;
  /external/syslinux/com32/lib/sys/module/
common.c 71 bool slash = false; local
75 slash = true;
78 entry->str, slash ? "/" : "", name);
  /external/toybox/toys/pending/
tftp.c 431 char *slash = strrchr(TT.remote_file, '/'); local
432 TT.local_file = (slash) ? slash + 1 : TT.remote_file;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
BluetoothTile.java 124 if (state.slash == null) {
125 state.slash = new SlashState();
127 state.slash.isSlashed = !enabled;
DndTile.java 180 if (state.slash == null) state.slash = new SlashState();
184 state.slash.isSlashed = !state.value;
  /frameworks/opt/net/voip/src/java/android/net/sip/
SimpleSessionDescription.java 410 int slash = parts[2].indexOf('/'); local
411 return (slash < 0) ? parts[2] : parts[2].substring(0, slash);
  /external/freetype/src/base/
ftrfork.c 870 const char* slash; local
888 slash = tmp + 1;
892 slash = original_name;
897 ft_strcat( new_name, slash );
  /external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
SimpleWebServer.java 293 int slash = u.lastIndexOf('/'); local
294 if (slash >= 0 && slash < u.length()) {
295 up = uri.substring(0, slash + 1);
  /external/pdfium/third_party/freetype/src/base/
ftrfork.c 813 const char* slash; local
831 slash = tmp + 1;
835 slash = original_name;
840 ft_strcat( new_name, slash );
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter.java 199 int slash = mClassName.lastIndexOf('/'); local
201 if (dol != -1 && dol > slash && dol == mClassName.indexOf('$')) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 372 int slash = reference.indexOf('/'); local
373 return reference.substring(slash);
  /external/openssh/
misc.c 592 u_int len, slash; local
600 slash = path - filename;
601 if (slash > sizeof(user) - 1)
603 memcpy(user, filename, slash);
604 user[slash] = '\0';
  /toolchain/binutils/binutils-2.25/binutils/
dllwrap.c 248 const char *slash; local
252 slash = NULL;
264 slash = cp;
276 if (slash != NULL && cmd == NULL)
279 cmd = look_for_prog (name, prog_name, slash - prog_name + 1);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/goobj/
read.go 251 // and any '.' after the final slash.
256 // find index of last slash, if any, or else -1.
257 // used for determining whether an index is after the last slash.
258 slash := strings.LastIndex(s, "/")
263 if c := s[r]; c <= ' ' || (c == '.' && r > slash) || c == '%' || c == '"' || c >= 0x7F {
277 if c := s[r]; c <= ' ' || (c == '.' && r > slash) || c == '%' || c == '"' || c >= 0x7F {
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 72 // The returned path ends in a slash only if it represents a root directory,
75 // Finally, any occurrences of slash are replaced by Separator.
100 // it is the leading slash or it is a leading ../../.. prefix.
138 // add slash if needed
158 // in path with a slash ('/') character. Multiple separators are
167 // FromSlash returns the result of replacing each slash ('/') character
  /prebuilts/go/linux-x86/src/cmd/internal/goobj/
read.go 251 // and any '.' after the final slash.
256 // find index of last slash, if any, or else -1.
257 // used for determining whether an index is after the last slash.
258 slash := strings.LastIndex(s, "/")
263 if c := s[r]; c <= ' ' || (c == '.' && r > slash) || c == '%' || c == '"' || c >= 0x7F {
277 if c := s[r]; c <= ' ' || (c == '.' && r > slash) || c == '%' || c == '"' || c >= 0x7F {
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 72 // The returned path ends in a slash only if it represents a root directory,
75 // Finally, any occurrences of slash are replaced by Separator.
100 // it is the leading slash or it is a leading ../../.. prefix.
138 // add slash if needed
158 // in path with a slash ('/') character. Multiple separators are
167 // FromSlash returns the result of replacing each slash ('/') character
  /system/core/adb/client/
usb_linux.cpp 278 const char* slash = strrchr(link, '/'); local
279 if (slash) {
281 "usb:%s", slash + 1);
  /build/soong/cc/
test_data_test.go 93 name: "relative filegroup trailing slash",

Completed in 2633 milliseconds

1 2 34 5 6 7 8 91011>>