Home
last modified time | relevance | path

Searched refs:PrintString (Results 1 – 13 of 13) sorted by relevance

/external/protobuf/src/google/protobuf/
Dtext_format.cc1575 std::string TextFormat::FieldValuePrinter::PrintString( in PrintString() function in google::protobuf::TextFormat::FieldValuePrinter
1577 FORWARD_IMPL(PrintString, val); in PrintString()
1581 return PrintString(val); in PrintBytes()
1618 generator->PrintString(StrCat(val)); in PrintInt32()
1622 generator->PrintString(StrCat(val)); in PrintUInt32()
1626 generator->PrintString(StrCat(val)); in PrintInt64()
1630 generator->PrintString(StrCat(val)); in PrintUInt64()
1634 generator->PrintString(SimpleFtoa(val)); in PrintFloat()
1638 generator->PrintString(SimpleDtoa(val)); in PrintDouble()
1642 generator->PrintString(name); in PrintEnum()
[all …]
Dtext_format.h110 void PrintString(const std::string& str) { Print(str.data(), str.size()); } in PrintString() function
133 virtual void PrintString(const std::string& val,
170 virtual std::string PrintString(const std::string& val) const;
Dtext_format_unittest.cc583 generator->PrintString(field->name()); in PrintFieldName()
646 void PrintString(const std::string& val, in PrintString() function in google::protobuf::text_format_unittest::MultilineStringPrinter
653 TextFormat::FastFieldValuePrinter::PrintString( in PrintString()
660 TextFormat::FastFieldValuePrinter::PrintString(val.substr(last_pos), in PrintString()
/external/compiler-rt/lib/asan/tests/
Dasan_exceptions_test.cc8 void PrintString(const std::string& msg) const { in PrintString() function in Action
12 PrintString("PrintString called!"); // this line is important in Throw()
/external/llvm-project/compiler-rt/lib/asan/tests/
Dasan_exceptions_test.cpp8 void PrintString(const std::string& msg) const { in PrintString() function in Action
12 PrintString("PrintString called!"); // this line is important in Throw()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/bindings/lua/
Dupbc.cc48 static void PrintString(int max_cols, absl::string_view* str, in PrintString() function
99 PrintString(72, &data, &printer); in Generate()
/external/lzma/CPP/7zip/UI/Console/
DList.cpp248 static void PrintString(EAdjustment adj, unsigned width, const char *s) in PrintString() function
487 PrintString(f.TitleAdjustment, ((f.PropID == kpidPath) ? 0: f.Width), f.NameA); in PrintTitle()
709 PrintString(adj, width, s); in PrintNumber()
730 PrintString(f.TextAdjustment, f.Width, s); in PrintSum()
741 PrintString(f.TextAdjustment, 0, s); in PrintSum()
744 PrintString(f.TextAdjustment, f.Width, ""); in PrintSum()
DMain.cpp221 static void PrintString(CStdOutStream &so, const UString &s, unsigned size) in PrintString() function
673 PrintString(so, arc.Name, 8); in Main2()
691 PrintString(so, s, 13); in Main2()
/external/lzma/C/Util/7z/
D7zMain.c243 static SRes PrintString(const UInt16 *s) in PrintString() function
539 res = PrintString(temp); in main()
551 res = PrintString(temp); in main()
/external/lua/src/
Dluac.c221 static void PrintString(const TString* ts) in PrintString() function
322 PrintString(tsvalue(o)); in PrintConstant()
/external/tensorflow/tensorflow/cc/framework/
Dcc_op_gen.cc136 string PrintString(const string& str) { in PrintString() function
215 return PrintString(attr_value.s()); in PrintAttrValue()
235 strings::StrAppend(&ret, PrintString(attr_value.list().s(i))); in PrintAttrValue()
/external/tinyxml2/
Dtinyxml2.cpp2597 void XMLPrinter::PrintString( const char* p, bool restricted ) in PrintString() function in tinyxml2::XMLPrinter
2689 PrintString( value, false ); in PushAttribute()
2791 PrintString( text, true ); in PushText()
Dtinyxml2.h2335 …void PrintString( const char*, bool restrictedEntitySet ); // prints out, after detecting entities.