| /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/ |
| fnmatch.h | 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
|
| /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/ |
| fnmatch.h | 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
|
| /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/ |
| fnmatch.h | 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
|
| /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/ |
| fnmatch.h | 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
|
| /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/ |
| fnmatch.h | 39 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
|
| /external/iptables/extensions/ |
| libipt_icmp.c | 143 char *slash; local 148 slash = strchr(buffer, '/'); 150 if (slash) 151 *slash = '\0'; 157 if (slash) { 158 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX)) 161 slash+1);
|
| /bootable/recovery/minzip/ |
| DirUtil.c | 70 /* Allocate a path that we can modify; stick a slash on 81 /* Strip everything after the last slash. 95 c[1] = '\0'; // Terminate after the slash we found. 97 /* Make sure that the path ends in a slash. 127 * We know that we'll see a slash before the NUL,
|
| /external/bison/lib/ |
| open.c | 86 /* If the filename ends in a slash and one of O_CREAT, O_WRONLY, O_RDWR 90 "A pathname that contains at least one non-slash character and that 145 /* If the filename ends in a slash and fd does not refer to a directory, 149 "A pathname that contains at least one non-slash character and that 155 If the named file without the slash is not a directory, open() must fail
|
| /external/chromium_org/chrome/common/favicon/ |
| favicon_url_parser.cc | 55 size_t slash = path.find("/", parsed_index); local 56 if (slash == std::string::npos) 65 size_str = path.substr(parsed_index, slash - parsed_index); 69 slash - scale_delimiter - 1); 94 parsed_index = slash + 1;
|
| /external/chromium_org/url/ |
| url_canon_fileurl.cc | 34 // A drive spec is the start of a path, so we need to add a slash for the 35 // authority terminator (typically the third slash). 68 // Copies the rest of the path, starting from the slash following the 69 // drive colon (if any, Windows only), or the first slash of the path. 80 // No input path, canonicalize to a slash.
|
| /build/tools/fs_config/ |
| fs_config.c | 32 // trailing slash) on the stdin, and prints to stdout each input 34 // The leading slash should be stripped from the input. 56 // Note that the output will omit the trailing slash from
|
| /external/blktrace/btt/ |
| trace.c | 81 char *slash = strchr(iop->pdu, '/'); local 82 if (slash) 83 *slash = '\0';
|
| /external/chromium/chrome/browser/resources/ |
| playlist.html | 89 slash = path.lastIndexOf("/") 90 if (slash != -1) { 91 fileName = path.substring(slash+1,path.length)
|
| /external/chromium_org/tools/gn/ |
| source_dir.h | 20 // If there is one slash at the beginning, it will mean a system-absolute file 63 // Returns true if this path starts with a single slash which indicates a 69 // Returns a source-absolute path starting with only one slash at the
|
| filesystem_utils.cc | 46 // Single dot followed by a slash. 47 *consumed_len = 2; // Consume the slash 59 // Double dot folowed by a slash. 77 // Attempts to do a case and slash-insensitive comparison of two 8-bit Windows 282 // The last char of the dir will be a slash. We don't care if the input ends 283 // in a slash or not, so just compare up until there. 311 return false; // Doesn't begin with a slash, is relative. 315 return false; // Double slash at the beginning means source-relative. 359 // The base may or may not have a trailing slash, so skip all slashes from 376 // The base may or may not have a trailing slash, so skip all slashes fro [all...] |
| path_output.cc | 41 // Writing system root is always a slash (this will normally only come up 50 // The inverse_current_dir_ will contain a [back]slash at the end, so we 130 // Input begins with one slash, don't write the current directory since 133 // On Windows, trim the leading slash, since the input for absolute
|
| /external/iproute2/tc/ |
| tc_util.c | 172 char * slash = strchr(str, '/'); local 174 if (slash) 175 *slash = 0; 180 if (slash) { 184 if (get_integer(&cell, slash+1, 0)) 186 *slash = '/'; 310 char * slash = strchr(str, '/'); local 312 if (slash) 313 *slash = 0; 318 if (slash) { [all...] |
| /external/nist-sip/java/gov/nist/javax/sip/header/ |
| Protocol.java | 72 .append(SLASH) 74 .append(SLASH) 105 int slash = name_and_version.indexOf('/'); local 106 if (slash>0) { 107 this.protocolName = name_and_version.substring(0,slash); 108 this.protocolVersion = name_and_version.substring( slash+1 );
|
| /external/bison/m4/ |
| stat.m4 | 61 help when passed a directory name with a trailing slash]);; 66 help when passed a file name with a trailing slash]);;
|
| double-slash-root.m4 | 1 # double-slash-root.m4 serial 4 -*- Autoconf -*-
|
| /external/ipsec-tools/src/libipsec/ |
| policy_parse.h | 56 SLASH = 272, 75 #define SLASH 272
|
| /external/qemu/pc-bios/keymaps/ |
| ar | 60 slash 0x26 shift altgr 95 slash 0x35
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
| AutoExpand.py | 5 ###$ win <Alt-slash> 6 ###$ unix <Alt-slash>
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
| AutoExpand.py | 5 ###$ win <Alt-slash> 6 ###$ unix <Alt-slash>
|
| /system/core/init/ |
| util.c | 278 const char *slash; local 284 while ((slash = strchr(p, '/')) != NULL) { 285 width = slash - pathname; 286 p = slash + 1; 334 char *slash; local 337 slash = strrchr(newpath, '/'); 338 if (!slash) 340 width = slash - newpath;
|