HomeSort by relevance Sort by last modified time
    Searched refs:path_prefix (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
common.py 226 def _process_path_prefix(path_prefix):
230 path_prefix: a Google Cloud Storage path prefix of format '/bucket/prefix'
239 _validate_path(path_prefix)
240 if not _GCS_PATH_PREFIX_REGEX.match(path_prefix):
242 'or /bucket/prefix but got %s.' % path_prefix)
243 bucket_name_end = path_prefix.find('/', 1)
244 bucket = path_prefix
247 bucket = path_prefix[:bucket_name_end]
248 prefix = path_prefix[bucket_name_end + 1:] or None
cloudstorage_api.py 185 def listbucket(path_prefix, marker=None, prefix=None, max_keys=None,
196 In this mode, the "path_prefix" argument should end in the delimiter
204 path_prefix: A Google Cloud Storage path of format "/bucket" or
206 path_prefix will be returned.
209 prefix: Deprecated. Use path_prefix.
250 common.validate_bucket_path(path_prefix)
251 bucket = path_prefix
253 bucket, prefix = common._process_path_prefix(path_prefix)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ntpath.py 501 path_is_unc, path_prefix, path_list = _abspath_split(path)
506 if path_prefix.lower() != start_prefix.lower():
509 % (path_prefix, start_prefix))
512 % (path_prefix, start_prefix))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ntpath.py 501 path_is_unc, path_prefix, path_list = _abspath_split(path)
506 if path_prefix.lower() != start_prefix.lower():
509 % (path_prefix, start_prefix))
512 % (path_prefix, start_prefix))
  /external/chromium_org/chrome/browser/ui/
elide_url.cc 28 // Prepends |path_prefix|, appends |filename|, inserts ellipsis if appropriate.
30 const base::string16& path_prefix,
35 base::string16 path = path_prefix;
  /external/chromium_org/components/url_matcher/
url_matcher.h 42 PATH_PREFIX,
151 // should be followed by a given |path_prefix|.
154 const std::string& path_prefix);
157 const std::string& path_prefix);
url_matcher.cc 302 return CreateCondition(URLMatcherCondition::PATH_PREFIX,
366 const std::string& path_prefix) {
368 host_suffix + kEndOfDomain + path_prefix);
374 const std::string& path_prefix) {
377 path_prefix);
    [all...]
  /external/netperf/
nettest_unix.c 84 path_prefix[32];
137 strcpy(path_prefix,"/tmp");
819 strcpy(myaddr_un.sun_path,tempnam(path_prefix,"netperf."));
83 path_prefix[32]; variable
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 64 const char *path_prefix = flags()->strip_path_prefix; local
65 uptr path_prefix_len = internal_strlen(path_prefix);
70 if (ent->file && (pos = internal_strstr(ent->file, path_prefix)))
  /bionic/libc/tzcode/
localtime.c 2127 const char* path_prefix = getenv(path_prefix_variable); local
    [all...]

Completed in 277 milliseconds