Home
last modified time | relevance | path

Searched refs:url_path (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/tools/inspect/
Dlink_check.cpp47 std::string decode_ampersands(std::string const& url_path) { in decode_ampersands() argument
50 result.reserve(url_path.length()); in decode_ampersands()
52 while((next = url_path.find('&', pos)) != std::string::npos) { in decode_ampersands()
53 result.append(url_path, pos, next - pos); in decode_ampersands()
55 if(url_path.substr(pos, 5) == "&") { in decode_ampersands()
64 result.append(url_path, pos, url_path.length()); in decode_ampersands()
70 std::string decode_percents(std::string const& url_path) { in decode_percents() argument
73 result.reserve(url_path.length()); in decode_percents()
75 while((next = url_path.find('%', pos)) != std::string::npos) { in decode_percents()
76 result.append(url_path, pos, next - pos); in decode_percents()
[all …]
/third_party/cef/tests/shared/browser/
Dresource_util_win.cc36 BinaryResourceProvider(const std::string& url_path, in BinaryResourceProvider() argument
38 : url_path_(url_path), resource_path_prefix_(resource_path_prefix) { in BinaryResourceProvider()
39 DCHECK(!url_path.empty()); in BinaryResourceProvider()
121 const std::string& url_path, in CreateBinaryResourceProvider() argument
123 return new BinaryResourceProvider(url_path, resource_path_prefix); in CreateBinaryResourceProvider()
Dresource_util.h33 const std::string& url_path,
/third_party/cef/libcef_dll/wrapper/
Dcef_resource_manager.cc96 DirectoryProvider(const std::string& url_path, in DirectoryProvider() argument
98 : url_path_(url_path), directory_path_(directory_path) { in DirectoryProvider()
173 ArchiveProvider(const std::string& url_path, in ArchiveProvider() argument
176 : url_path_(url_path), in ArchiveProvider()
451 void CefResourceManager::AddDirectoryProvider(const std::string& url_path, in AddDirectoryProvider() argument
455 AddProvider(new DirectoryProvider(url_path, directory_path), order, in AddDirectoryProvider()
459 void CefResourceManager::AddArchiveProvider(const std::string& url_path, in AddArchiveProvider() argument
464 AddProvider(new ArchiveProvider(url_path, archive_path, password), order, in AddArchiveProvider()
/third_party/grpc/src/core/lib/security/authorization/
Dauthorization_engine.cc98 absl::string_view url_path(args.GetPath()); in CreateActivation() local
99 if (!url_path.empty()) { in CreateActivation()
101 mock_cel::CelValue::CreateStringView(url_path)); in CreateActivation()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/ir/datasetops/source/
Dsbu_node.cc51 Path url_path = root_dir / Path("SBU_captioned_photo_dataset_urls.txt"); in ValidateParams() local
55 RETURN_IF_NOT_OK(ValidateDatasetFilesParam("SBUNode", {url_path.ToString()})); in ValidateParams()
/third_party/cef/include/wrapper/
Dcef_resource_manager.h235 void AddDirectoryProvider(const std::string& url_path,
247 void AddArchiveProvider(const std::string& url_path,
/third_party/cef/tests/cefclient/browser/
Dtest_runner.cc871 const std::string& url_path = CefString(&parts.path); in IsTestURL() local
872 return url_path.find(path) == 0; in IsTestURL()