Lines Matching full:substitute
17 // File: substitute.h
22 // `Substitute()` and `SubstituteAndAppend()`.
24 // Unlike printf-style format specifiers, `Substitute()` functions do not need
30 // `Substitute()` does not allow you to specify *how* to format a value, beyond
42 // std::string s = Substitute("$1 purchased $0 $2 for $$10. Thanks $1!",
59 // If an invalid format string is provided, Substitute returns an empty string
65 // e.g. Substitute("Hello $2", "world"), or
94 // This class provides an argument type for `absl::Substitute()` and
469 // Substitute()
474 // The declarations of `Substitute()` below consist of overloads for passing 0
477 // NOTE: A zero-argument `Substitute()` may be used within variadic templates to
483 // std::string s = absl::Substitute(format, args...);
485 ABSL_MUST_USE_RESULT inline std::string Substitute(absl::string_view format) { in Substitute() function
491 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
498 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
506 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
514 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
523 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
532 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
542 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
552 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
563 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
574 ABSL_MUST_USE_RESULT inline std::string Substitute( in Substitute() function
589 std::string Substitute(const char* format)
594 std::string Substitute(const char* format, const substitute_internal::Arg& a0)
600 std::string Substitute(const char* format, const substitute_internal::Arg& a0,
607 std::string Substitute(const char* format, const substitute_internal::Arg& a0,
615 std::string Substitute(const char* format, const substitute_internal::Arg& a0,
624 std::string Substitute(const char* format, const substitute_internal::Arg& a0,
634 std::string Substitute(const char* format, const substitute_internal::Arg& a0,
645 std::string Substitute(const char* format, const substitute_internal::Arg& a0,
657 std::string Substitute(const char* format, const substitute_internal::Arg& a0,
670 std::string Substitute(
681 std::string Substitute(