Home
last modified time | relevance | path

Searched defs:to_repl (Results 1 – 3 of 3) sorted by relevance

/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbitmq_auth_backend_ldap/src/
H A Drabbit_auth_backend_ldap_util.erl19 to_repl(V) when is_atom(V) -> to_repl(atom_to_list(V)); function
20 to_repl(V) when is_binary(V) -> to_repl(binary_to_list(V)); function
21 to_repl([]) -> []; function
22 to_repl([$\\ | T]) -> [$\\, $\\ | to_repl(T)]; function
23 to_repl([$& | T]) -> [$\\, $& | to_repl(T)]; function
24 to_repl([H | T]) -> [H | to_repl(T)]; function
25 to_repl(_) -> []. % fancy variables like peer IP are just ignored function
/dports/www/epiphany/epiphany-41.0/lib/
H A Dephy-string.c244 const char *to_repl) in ephy_string_find_and_replace()
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Dtags.cc4771 static const string to_repl = "dragon armour"; in _fixup_dragon_artefact_name() local