HomeSort by relevance Sort by last modified time
    Searched refs:LiteStrAppend (Results 1 - 2 of 2) sorted by null

  /external/libtextclassifier/lang_id/common/fel/
feature-descriptors.cc 25 LiteStrAppend(output, function.type());
27 LiteStrAppend(output, "(");
30 LiteStrAppend(output, function.argument());
34 if (!first) LiteStrAppend(output, ",");
35 LiteStrAppend(output, function.parameter(i).name(), "=\"",
39 LiteStrAppend(output, ")");
46 LiteStrAppend(output, ".");
49 LiteStrAppend(output, " { ");
51 if (i > 0) LiteStrAppend(output, " ");
54 LiteStrAppend(output, " } ")
    [all...]
  /external/libtextclassifier/lang_id/common/lite_strings/
str-cat.h 71 // Less efficient but more compact version of absl::LiteStrAppend().
73 inline void LiteStrAppend(string *dest, T v) {
78 inline void LiteStrAppend(string *dest, T1 v1, T2 v2) {
84 inline void LiteStrAppend(string *dest, T1 v1, T2 v2, T3 v3) {
85 LiteStrAppend(dest, v1, v2);
90 inline void LiteStrAppend(string *dest, T1 v1, T2 v2, T3 v3, T4 v4) {
91 LiteStrAppend(dest, v1, v2, v3);

Completed in 1202 milliseconds