Searched defs:to_repl (Results 1 – 3 of 3) sorted by relevance
19 to_repl(V) when is_atom(V) -> to_repl(atom_to_list(V)); function20 to_repl(V) when is_binary(V) -> to_repl(binary_to_list(V)); function21 to_repl([]) -> []; function22 to_repl([$\\ | T]) -> [$\\, $\\ | to_repl(T)]; function23 to_repl([$& | T]) -> [$\\, $& | to_repl(T)]; function24 to_repl([H | T]) -> [H | to_repl(T)]; function25 to_repl(_) -> []. % fancy variables like peer IP are just ignored function
244 const char *to_repl) in ephy_string_find_and_replace()
4771 static const string to_repl = "dragon armour"; in _fixup_dragon_artefact_name() local