HomeSort by relevance Sort by last modified time
    Searched full:slash (Results 301 - 325 of 1229) sorted by null

<<11121314151617181920>>

  /ndk/sources/host-tools/make-3.81/
vpath.c 249 /* Make sure there's no trailing slash,
252 /* We need also to leave alone a trailing slash in "d:/". */
404 /* We need the rightmost slash or backslash. */
417 a slash, the directory prefix that came with *FILE,
418 another slash (although this one may not always be
445 /* Cause the next if to treat backslash and slash alike. */
503 /* Clobber a null into the name at the last slash.
525 /* Put the slash back in NAME. */
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
FileSystemProjectDelegate.js 177 var slash = filePath.lastIndexOf("/");
178 var parentPath = filePath.substring(0, slash);
506 var slash = filePath.lastIndexOf("/");
507 var parentPath = filePath.substring(0, slash);
508 var name = filePath.substring(slash + 1);
  /external/chromium_org/third_party/leveldatabase/src/db/
repair.cc 440 const char* slash = strrchr(fname.c_str(), '/'); local
442 if (slash != NULL) {
443 new_dir.assign(fname.data(), slash - fname.data());
449 new_file.append((slash == NULL) ? fname.c_str() : slash + 1);
  /external/chromium_org/webkit/common/fileapi/
file_system_util.cc 157 url += (kTemporaryDir + 1); // We don't want the leading slash.
160 url += (kPersistentDir + 1); // We don't want the leading slash.
163 url += (kExternalDir + 1); // We don't want the leading slash.
166 url += (kIsolatedDir + 1); // We don't want the leading slash.
169 url += (kTestDir + 1); // We don't want the leading slash.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 91 everything after the final slash. Either part may be empty."""
324 slash, dot = (u'/', u'.') if isinstance(path, _unicode) else ('/', '.')
329 # as single slash.
344 path = slash.join(comps)
346 path = slash*initial_slashes + path
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 91 everything after the final slash. Either part may be empty."""
324 slash, dot = (u'/', u'.') if isinstance(path, _unicode) else ('/', '.')
329 # as single slash.
344 path = slash.join(comps)
346 path = slash*initial_slashes + path
  /libcore/luni/src/main/java/java/util/prefs/
Preferences.java 35 * name is "", and other node name strings cannot contain the slash character
39 * tree with the root node at its base, all absolute paths start with the slash
41 * relative path doesn't start with slash: it equals the node's absolute path
43 * and a slash.
481 * slash, otherwise it will be treated as an absolute path.
498 * path is treated as relative to this node if it doesn't start with a slash,
784 * The absolute path of the returned node is one slash followed by the given
786 * a slash. For example, the absolute path of the preference associated with
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FilenameUtils.java 71 * ~ --> "~/" --> current user (slash added)
73 * ~user --> "~user/" --> named user (slash added)
170 * A trailing slash will be retained.
171 * A double slash will be merged to a single slash (but UNC names are handled).
216 * A trailing slash will be removed.
217 * A double slash will be merged to a single slash (but UNC names are handled).
273 char[] array = new char[size + 2]; // +1 for possible extra slash, +2 for arraycopy
299 // dot slash
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.cc 54 // First find the slash and slice of that part
55 size_t slash = jid_string.find('/'); local
56 std::string resource_name = (slash == std::string::npos ? STR_EMPTY :
57 jid_string.substr(slash + 1));
63 if (at < slash && at != std::string::npos) {
72 ( slash == std::string::npos
74 : slash - domain_begin);
  /system/core/init/
devices.c 372 char *slash; local
399 slash = strchr(++parent, '/');
400 if (!slash)
402 width = slash - parent;
426 char *slash; local
470 slash = strrchr(uevent->path, '/');
471 if (asprintf(&links[link_num], "%s/%s", link_path, slash + 1) > 0)
  /external/chromium_org/third_party/icu/source/common/
rbbirpt.txt 165 '/' n expr-cont-no-slash doSlash
170 # expr-cont-no-slash Expression, continuation. At a point where additional terms are
175 expr-cont-no-slash:
  /external/icu4c/common/
rbbirpt.txt 165 '/' n expr-cont-no-slash doSlash
170 # expr-cont-no-slash Expression, continuation. At a point where additional terms are
175 expr-cont-no-slash:
  /external/nist-sip/java/gov/nist/javax/sip/header/
RequestLine.java 147 boolean slash = false;
151 if (slash) {
158 slash = true;
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 305 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
325 if (mode == SLASH) {
384 mode = SLASH;
  /build/core/
notice_files.mk 28 # Includes the leading slash
  /external/chromium/googleurl/src/
gurl.h 189 // A helper function that is equivalent to replacing the path with a slash
202 // replacing the path with a slash, and clearing everything after that. If
259 std::string path() const { // Including first slash following host
311 // is everything after the last slash in the path. This may be empty.
url_file.h 52 // Returns the index of the next slash in the input after the given index, or
  /external/chromium_org/base/
base_switches.cc 45 // Any pattern containing a forward or backward slash will be tested
  /external/chromium_org/chrome/browser/chromeos/file_manager/
zip_file_creator_browsertest.cc 109 // ZipReader returns directory path with trailing slash.
  /external/chromium_org/chrome/common/cloud_print/
cloud_print_helpers.h 27 // URL's path does not end with a slash. It is assumed that |path| does not
  /external/chromium_org/chrome/test/remoting/
key_code_map.h 89 {'/', '?', "Slash", ui::VKEY_OEM_2}, // /?
  /external/chromium_org/extensions/browser/
event_router_unittest.cc 64 // Sub-events are converted to the part before the slash.
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/
frame.js 86 // Strip trailing slash, if any.
  /external/chromium_org/ppapi/proxy/
file_chooser_resource_unittest.cc 141 // No dot or slash ones should be skipped.
  /external/chromium_org/remoting/client/jni/
android_keymap.cc 101 0x070038, // SLASH

Completed in 1567 milliseconds

<<11121314151617181920>>