Home
last modified time | relevance | path

Searched refs:DecodedFormatString (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/pigweed/pw_tokenizer/public/pw_tokenizer/internal/
H A Ddecode.h188 class DecodedFormatString {
190 DecodedFormatString(std::vector<DecodedArg>&& segments, in DecodedFormatString() function
194 DecodedFormatString(const DecodedFormatString&) = default;
195 DecodedFormatString(DecodedFormatString&&) = default;
197 DecodedFormatString& operator=(const DecodedFormatString&) = default;
198 DecodedFormatString& operator=(DecodedFormatString&&) = default;
233 DecodedFormatString Format(span<const uint8_t> arguments) const;
235 DecodedFormatString Format(std::string_view arguments) const { in Format()
/aosp_15_r20/external/pigweed/pw_tokenizer/
H A Ddecode.cc280 std::string DecodedFormatString::value() const { in value()
290 std::string DecodedFormatString::value_with_errors() const { in value_with_errors()
300 size_t DecodedFormatString::argument_count() const { in argument_count()
306 size_t DecodedFormatString::decoding_errors() const { in decoding_errors()
340 DecodedFormatString FormatString::Format(span<const uint8_t> arguments) const { in Format()
358 return DecodedFormatString(std::move(results), arguments.size()); in Format()
H A Ddetokenize.cc121 using DecodingResult = std::pair<DecodedFormatString, uint32_t>;
/aosp_15_r20/external/pigweed/pw_tokenizer/public/pw_tokenizer/
H A Ddetokenize.h62 const std::vector<DecodedFormatString>& matches() const { return matches_; } in matches()
78 std::vector<DecodedFormatString> matches_;