MCPcopy Create free account
hub / github.com/NativeScript/android / process_password

Method process_password

test-app/runtime/src/main/cpp/ada/ada.cpp:15787–15795  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15785}
15786
15787tl::expected<std::string, errors> url_pattern_init::process_password(
15788 std::string_view value, process_type type) {
15789 // If type is "pattern" then return value.
15790 if (type == process_type::pattern) {
15791 return std::string(value);
15792 }
15793 // Return the result of running canonicalize a password given value.
15794 return url_pattern_helpers::canonicalize_password(value);
15795}
15796
15797tl::expected<std::string, errors> url_pattern_init::process_hostname(
15798 std::string_view value, process_type type) {

Callers

nothing calls this directly

Calls 1

canonicalize_passwordFunction · 0.85

Tested by

no test coverage detected