Home | History | Annotate | Download | only in strings

Lines Matching defs:pieces

70   StringPiece pieces[] = {"Hello", "Cruel", "World"};
86 result = tensorflow::strings::StrCat(strs[1], pieces[2]);
89 result = tensorflow::strings::StrCat(strs[0], ", ", pieces[2]);
97 tensorflow::strings::StrCat(pieces[0], ", ", pieces[1], " ", pieces[2]);
217 StringPiece pieces[] = {"Hello", "Cruel", "World"};
229 tensorflow::strings::StrAppend(&result, strs[1], pieces[2]);
233 tensorflow::strings::StrAppend(&result, strs[0], ", ", pieces[2]);
242 tensorflow::strings::StrAppend(&result, pieces[0], ", ", pieces[1], " ",
243 pieces[2]);