Home
last modified time | relevance | path

Searched refs:path_prefix (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
Dcommon.py226 def _process_path_prefix(path_prefix): argument
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
Dcloudstorage_api.py185 def listbucket(path_prefix, marker=None, prefix=None, max_keys=None, argument
250 common.validate_bucket_path(path_prefix)
251 bucket = path_prefix
253 bucket, prefix = common._process_path_prefix(path_prefix)
/external/chromium_org/chrome/common/extensions/docs/server2/
Dgitiles_file_system.py59 path_prefix = '' if token is None else _AUTH_PATH_PREFIX
62 GITILES_BASE, path_prefix, GITILES_SRC_ROOT, commit)
65 GITILES_BASE, path_prefix, GITILES_SRC_ROOT)
68 GITILES_BASE, path_prefix, GITILES_SRC_ROOT,
/external/chromium_org/chrome/browser/ui/
Delide_url.cc30 const base::string16& path_prefix, in BuildPathFromComponents() argument
35 base::string16 path = path_prefix; in BuildPathFromComponents()
/external/chromium_org/components/url_matcher/
Durl_matcher.h154 const std::string& path_prefix);
157 const std::string& path_prefix);
Durl_matcher.cc367 const std::string& path_prefix) { in CreateHostSuffixPathPrefixCondition() argument
369 host_suffix + kEndOfDomain + path_prefix); in CreateHostSuffixPathPrefixCondition()
375 const std::string& path_prefix) { in CreateHostEqualsPathPrefixCondition() argument
378 path_prefix); in CreateHostEqualsPathPrefixCondition()
/external/netperf/
Dnettest_unix.c83 path_prefix[32]; variable
135 strcpy(path_prefix,"/tmp"); in init_test_vars()
814 strcpy(myaddr_un.sun_path,tempnam(path_prefix,"netperf.")); in recv_stream_stream()
2039 strcpy(myaddr_un.sun_path,tempnam(path_prefix,"netperf.")); in recv_dg_stream()
2282 strcpy(myaddr_un.sun_path,tempnam(path_prefix,"netperf.")); in send_dg_rr()
2861 strcpy(myaddr_un.sun_path,tempnam(path_prefix,"netperf.")); in recv_dg_rr()
3149 strcpy(myaddr_un.sun_path,tempnam(path_prefix,"netperf.")); in recv_stream_rr()
3394 strcpy(path_prefix,optarg); in scan_unix_args()
/external/chromium_org/native_client_sdk/src/tools/
Dcreate_nmf.py631 if options.path_prefix:
632 options.lib_prefix = options.path_prefix
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_report.cc64 const char *path_prefix = flags()->strip_path_prefix; in StackStripMain() local
65 uptr path_prefix_len = internal_strlen(path_prefix); in StackStripMain()
70 if (ent->file && (pos = internal_strstr(ent->file, path_prefix))) in StackStripMain()