HomeSort by relevance Sort by last modified time
    Searched full:slash (Results 1 - 25 of 1031) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/util/
libecho.c 42 char *slash; local
49 while((slash = strrchr(f, '/')) != NULL)
50 *slash = '\\';
54 slash = strrchr(filepath, '\\');
56 if (slash) {
57 slash++;
58 *slash = 0;
  /external/linux-tools-perf/src/tools/perf/util/
exec_cmd.c 27 const char *slash; local
31 slash = argv0 + strlen(argv0);
33 while (argv0 <= slash && !is_dir_sep(*slash))
34 slash--;
36 if (slash >= argv0) {
37 argv0_path = strndup(argv0, slash - argv0);
38 return argv0_path ? slash + 1 : NULL;
  /external/bison/m4/
fopen.m4 15 dnl fopen on mingw also has the trailing slash bug.
20 dnl trailing slash.
21 AC_CACHE_CHECK([whether fopen recognizes a trailing slash],
51 [Define to 1 if fopen() fails to recognize a trailing slash.])
open.m4 16 dnl trailing slash. FreeBSD only has the problem on symlinks.
18 AC_CACHE_CHECK([whether open recognizes a trailing slash],
59 [Define to 1 if open() fails to recognize a trailing slash.])
  /external/llvm/test/MC/AArch64/
single-slash.s 3 // Test that a single slash is not mistaken as the start of comment.
  /external/toybox/toys/posix/
echo.c 60 int slash = *(c++), n = unescape(slash); local
63 else if (slash=='c') goto done;
64 else if (slash=='0') {
67 } else if (slash=='x') {
79 // Slash in front of unknown character, print literal.
rmdir.c 32 // Each -p cycle back up one slash, ignoring trailing and repeated /.
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 37 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 = dot - 1 local
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
XMLLexer.tokens 3 SLASH=13
XMLParser.tokens 3 SLASH=13
  /external/compiler-rt/test/asan/TestCases/
strip_path_prefix.c 9 // Check that paths in error report don't start with slash.
  /external/google-breakpad/src/processor/
pathname_stripper.cc 42 string::size_type slash = path.rfind('/'); local
46 if (slash != string::npos &&
47 (backslash == string::npos || slash > backslash)) {
48 file_start = slash + 1;
  /external/bison/lib/
stripslash.c 23 /* Remove trailing slashes from FILE. Return true if a trailing slash
27 have different semantics according to whether a trailing slash is
progname.c 46 const char *slash; local
59 slash = strrchr (argv0, '/');
60 base = (slash != NULL ? slash + 1 : argv0);
  /external/iproute2/tc/
f_fw.c 45 char *slash; local
46 if ((slash = strchr(handle, '/')) != NULL)
47 *slash = '\0';
52 if (slash) {
53 if (get_u32(&mask, slash+1, 0)) {
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
SharedStorageAgent.java 75 int slash = relpath.indexOf('/'); local
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));
  /external/iptables/extensions/
libip6t_icmp6.c 119 char *slash; local
124 slash = strchr(buffer, '/');
126 if (slash)
127 *slash = '\0';
133 if (slash) {
134 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX))
137 slash+1);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 101 int slash = hop.indexOf('/',colon); local
106 if (slash>0) {
107 portstr = hop.substring(colon+1,slash);
108 this.transport = hop.substring(slash+1);
119 if (slash>0) {
120 this.host = hop.substring(0,slash);
121 this.transport = hop.substring(slash+1);
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
AntJarProcessor.java 82 int slash = file.lastIndexOf('/'); local
83 if (slash >= 0) {
84 String dir = file.substring(0, slash);
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 151 const int slash = !!(flags & FNM_PATHNAME); local
187 if (slash && (**pattern == '/'))
208 * or ranges containing a slash in FNM_PATHNAME mode pattern
211 if (!**pattern || (slash && (**pattern == '/')))
250 if (!**string || (slash && (**string == '/')))
268 /* Refuse to advance over trailing slash or nulls
270 if (!**string || !**pattern || (slash && ((**string == '/') || (**pattern == '/'))))
284 const int slash = !!(flags & FNM_PATHNAME); local
309 if (slash && escape && (*pattern == '\\') && (pattern[1] == '/'))
311 if (slash && (*pattern == '/') && (*string == '/'))
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_parse.y 144 %token SLASH HYPHEN
287 : protocol SLASH mode SLASH addresses SLASH level
288 | protocol SLASH mode SLASH addresses SLASH
289 | protocol SLASH mode SLASH addresses
290 | protocol SLASH mode SLAS
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
PackageRemapper.java 62 int slash = s.lastIndexOf('/'); local
64 if (slash < 0) {
68 end = s.substring(slash + 1);
69 s = s.substring(0, slash + 1) + RESOURCE_SUFFIX;
  /bionic/libc/include/
fnmatch.h 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
  /development/ndk/platforms/android-21/include/
fnmatch.h 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
  /development/ndk/platforms/android-3/include/
fnmatch.h 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */

Completed in 3143 milliseconds

1 2 3 4 5 6 7 8 91011>>