HomeSort by relevance Sort by last modified time
    Searched defs:StrAppend (Results 1 - 11 of 11) sorted by null

  /external/libchrome/base/strings/
strcat.h 74 // StrAppend -------------------------------------------------------------------
77 // StrAppend(&foo, ...);
82 BASE_EXPORT void StrAppend(std::string* dest, span<const StringPiece> pieces);
83 BASE_EXPORT void StrAppend(string16* dest, span<const StringPiece16> pieces);
84 BASE_EXPORT void StrAppend(std::string* dest, span<const std::string> pieces);
85 BASE_EXPORT void StrAppend(string16* dest, span<const string16> pieces);
88 inline void StrAppend(std::string* dest,
90 return StrAppend(dest, make_span(pieces.begin(), pieces.size()));
92 inline void StrAppend(string16* dest,
94 return StrAppend(dest, make_span(pieces.begin(), pieces.size()))
    [all...]
strcat.cc 12 // least 2x. Used by StrAppend().
18 // call to StrAppend() would definitely cause a reallocation, and loops with
19 // StrAppend() calls would have O(n^2) complexity to execute. Instead, we want
20 // StrAppend() to have the same semantics as std::string::append().
65 void StrAppend(std::string* dest, span<const StringPiece> pieces) {
69 void StrAppend(string16* dest, span<const StringPiece16> pieces) {
73 void StrAppend(std::string* dest, span<const std::string> pieces) {
77 void StrAppend(string16* dest, span<const string16> pieces) {
  /external/tensorflow/tensorflow/core/kernels/
string_format_op.cc 47 strings::StrAppend(&msg, split_template_[0].c_str());
49 strings::StrAppend(&msg, ctx->input(i).SummarizeValue(summarize_, true));
50 strings::StrAppend(&msg, split_template_[i + 1].c_str());
logging_ops.cc 87 strings::StrAppend(&msg, "[", ctx->input(i).SummarizeValue(summarize_),
89 if (i < ctx->num_inputs() - 1) strings::StrAppend(&msg, " ");
129 strings::StrAppend(&msg, message_);
131 strings::StrAppend(&msg, "[", ctx->input(i).SummarizeValue(summarize_),
163 strings::StrAppend(&error_msg, " ", valid_stream);
198 strings::StrAppend(&error_msg, " ", valid_stream);
200 strings::StrAppend(&error_msg, ", or file://<filename>");
  /external/tensorflow/tensorflow/core/lib/strings/
strcat.cc 137 // It's possible to call StrAppend with a StringPiece that is itself a fragment
165 void StrAppend(string *result, const AlphaNum &a) {
170 void StrAppend(string *result, const AlphaNum &a, const AlphaNum &b) {
180 void StrAppend(string *result, const AlphaNum &a, const AlphaNum &b,
194 void StrAppend(string *result, const AlphaNum &a, const AlphaNum &b,
strcat.h 162 // quadratic time operation with O(n) dynamic allocations. StrAppend
164 // of StrAppend(&str, a, b, c, ...) that none of the a, b, c, ... may
199 // StrAppend()
201 // WARNING: For speed, StrAppend does not try to check each of its input
211 // StrAppend(&s, s);
213 // Note: while StrCat supports appending up to 26 arguments, StrAppend
215 // automatically transforming StrCat to StrAppend, and can easily be
216 // worked around as consecutive calls to StrAppend are quite efficient.
219 void StrAppend(string *dest, const AlphaNum &a);
220 void StrAppend(string *dest, const AlphaNum &a, const AlphaNum &b)
    [all...]
  /external/tensorflow/tensorflow/core/platform/
tensor_coding.cc 84 strings::StrAppend(&rest_, serialized_message);
89 strings::StrAppend(&rest_, s);
92 void Finalize() override { strings::StrAppend(out_, rest_); }
  /external/tensorflow/tensorflow/tools/proto_text/
gen_proto_text_functions_lib.cc 44 string StrAppend(string* to_append, const Args&... args) {
87 StrAppend(&cur_->indent, " ");
101 StrAppend(cur_->str, cur_->indent, args..., "\n");
402 StrAppend(&sig, "::tensorflow::protobuf::Map<", GetCppClass(*key_type),
405 StrAppend(&sig, GetQualifiedName(md), "* msg)");
  /external/tensorflow/tensorflow/core/common_runtime/
bfc_allocator.h 151 strings::StrAppend(
157 strings::StrAppend(&dbg, ", prev: ", p->DebugString(a, false));
161 strings::StrAppend(&dbg, ", next: ", n->DebugString(a, false));
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc     [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
scoped_allocator_optimizer.cc 575 strings::StrAppend(&op_names, nd->name(), ", ");
    [all...]

Completed in 637 milliseconds