/system/core/toolbox/ |
mkdir.c | 53 if(strlen(currpath) + strlen(pathpiece) + 2/*NUL and slash*/ > PATH_MAX) {
|
/external/bison/lib/ |
stat.c | 85 trailing slash. */ 101 c:\) where stat() only succeeds with a trailing slash, and 103 succeeds without a trailing slash. But we want the two to be
|
/external/chromium/base/ |
vlog.cc | 32 // If the pattern contains a {forward,back} slash, we assume that 131 // A slash (forward or back) must match a slash (forward or back).
|
base_switches.cc | 44 // Any pattern containing a forward or backward slash will be tested
|
vlog.h | 38 // Any pattern containing a forward or backward slash will be tested
|
/external/chromium_org/base/ |
vlog.cc | 32 // If the pattern contains a {forward,back} slash, we assume that 131 // A slash (forward or back) must match a slash (forward or back).
|
/external/ipsec-tools/src/libipsec/ |
policy_token.l | 78 slash \/ 146 {slash} { return(SLASH); }
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
UserAgentParser.java | 83 * server-val = product / comment product = token [SLASH 105 if (this.lexer.peekNextToken().getTokenType() == TokenTypes.SLASH) { 107 this.lexer.match(TokenTypes.SLASH);
|
/external/chromium/net/url_request/ |
url_request_file_job.cc | 113 // which doesn't end with a slash, should really be treated as a directory, 233 // slash at the end of the path. 322 // trailing slash. 324 // we will append trailing slash and redirect to FileDirJob. 327 // So what happens is we append it with trailing slash and redirect it to
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
read.c | 28 #define SLASH 0x002F 339 if (c != SLASH) { 350 case SLASH: /* "//" */ 368 return SLASH; 410 if (d != SLASH) {
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
repair.cc | 367 const char* slash = strrchr(fname.c_str(), '/'); local 369 if (slash != NULL) { 370 new_dir.assign(fname.data(), slash - fname.data()); 376 new_file.append((slash == NULL) ? fname.c_str() : slash + 1);
|
/external/e2fsprogs/intl/ |
relocatable.c | 97 /* These prefixes do not end in a slash. Anything that will be concatenated 98 to them must start with a slash. */ 103 prefixes should be directory names without trailing slash (i.e. use "" 141 prefixes should be directory names without trailing slash (i.e. use "" 250 to the slash before it. */
|
/external/icu4c/tools/genrb/ |
read.c | 29 #define SLASH 0x002F 341 if (c != SLASH) { 352 case SLASH: /* "//" */ 370 return SLASH; 412 if (d != SLASH) {
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
jid.cc | 48 // First find the slash and slice off that part 49 size_t slash = jid_string.find('/'); 50 resource_name_ = (slash == std::string::npos ? STR_EMPTY : 51 jid_string.substr(slash + 1)); 56 if (at < slash && at != std::string::npos) { 64 size_t domain_length = (slash == std::string::npos) ? 65 (jid_string.length() - domain_begin) : (slash - domain_begin);
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
search_metadata_unittest.cc | 122 "Slash \xE2\x88\x95 in directory", "dir3", 5, "root"))); 124 "Slash SubDir File.txt", "file3a", 6, "dir3"))); 294 EXPECT_EQ("drive/root/Slash \xE2\x88\x95 in directory/Slash SubDir File.txt", 317 EXPECT_EQ("drive/root/Slash \xE2\x88\x95 in directory/Slash SubDir File.txt",
|
/external/iproute2/ip/ |
iprule.c | 281 char *slash; local 284 if ((slash = strchr(*argv, '/')) != NULL) 285 *slash = '\0'; 289 if (slash) { 290 if (get_u32(&fwmask, slash+1, 0)) 291 invarg("fwmask value is invalid\n", slash+1);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_Configuration.java | 221 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5; 241 if (mode == SLASH) { 300 mode = SLASH;
|
/external/openssh/openbsd-compat/ |
getcwd.c | 151 /* Add trailing slash for next directory. */ 187 * Check for length of the current name, preceding slash, 188 * leading slash.
|
/frameworks/base/core/java/android/content/ |
UriMatcher.java | 73 with a leading slash. For example: 153 * this method will accept leading slash in the path. 170 // Strip leading slash if present.
|
/bionic/libc/include/ |
paths.h | 67 /* Provide trailing slash, since mostly used for building pathnames. */
|
/development/ndk/platforms/android-3/include/ |
paths.h | 67 /* Provide trailing slash, since mostly used for building pathnames. */
|
/external/ceres-solver/internal/ceres/ |
file.h | 45 // Join two path components, adding a slash if necessary. If basename is an
|
/external/chromium/chrome/common/extensions/ |
extension_icon_set.cc | 57 "ExtensionIconSet stores icon paths without leading slash.";
|
/external/chromium/googleurl/src/ |
url_canon_relative.cc | 72 // DoesBeginWindowsDrivePath except that it also requires a slash at the 166 // No slashes means it's a relative path like "http:foo.html". One slash 178 // up until and including the last slash. There should be a slash in the 187 // Find the last slash. 196 return; // No slash. 231 // base to be processed: if there is a "C:", the slash after it, or if 232 // there is no drive letter, the slash at the beginning of the path, or 253 // The path should begin with a slash (as all canonical paths do). We check
|
url_parse_file.cc | 82 // No additional slash found, as in "file://foo", treat the text as the 105 // Otherwise, everything up until that first slash we found is the host name, 139 // Usually this is a slash, but needn't be; we allow paths like "file:c:\foo". 227 // We include the last slash as part of the path if there is one.
|