Home
last modified time | relevance | path

Searched refs:debug_string (Results 1 – 14 of 14) sorted by relevance

/external/protobuf/src/google/protobuf/
Dtext_format.cc56 string debug_string; in DebugString() local
58 TextFormat::PrintToString(*this, &debug_string); in DebugString()
60 return debug_string; in DebugString()
64 string debug_string; in ShortDebugString() local
69 printer.PrintToString(*this, &debug_string); in ShortDebugString()
71 if (debug_string.size() > 0 && in ShortDebugString()
72 debug_string[debug_string.size() - 1] == ' ') { in ShortDebugString()
73 debug_string.resize(debug_string.size() - 1); in ShortDebugString()
76 return debug_string; in ShortDebugString()
80 string debug_string; in Utf8DebugString() local
[all …]
Dunknown_field_set_unittest.cc262 const string debug_string = empty_message_.DebugString(); in TEST_F() local
264 EXPECT_NE(debug_string, other_debug_string); in TEST_F()
267 EXPECT_EQ(debug_string, other_message.DebugString()); in TEST_F()
272 const string debug_string = empty_message_.DebugString(); in TEST_F() local
277 EXPECT_EQ(debug_string, empty_message_.DebugString()); in TEST_F()
Dtext_format_unittest.cc186 string debug_string = proto_.DebugString(); in TEST_F() local
195 EXPECT_EQ(correct_string, debug_string); in TEST_F()
210 string debug_string = proto_.DebugString(); in TEST_F() local
223 EXPECT_EQ(correct_string, debug_string); in TEST_F()
/external/chromium_org/third_party/protobuf/src/google/protobuf/
Dtext_format.cc59 string debug_string; in DebugString() local
61 TextFormat::PrintToString(*this, &debug_string); in DebugString()
63 return debug_string; in DebugString()
67 string debug_string; in ShortDebugString() local
72 printer.PrintToString(*this, &debug_string); in ShortDebugString()
74 if (debug_string.size() > 0 && in ShortDebugString()
75 debug_string[debug_string.size() - 1] == ' ') { in ShortDebugString()
76 debug_string.resize(debug_string.size() - 1); in ShortDebugString()
79 return debug_string; in ShortDebugString()
83 string debug_string; in Utf8DebugString() local
[all …]
Dunknown_field_set_unittest.cc262 const string debug_string = empty_message_.DebugString(); in TEST_F() local
264 EXPECT_NE(debug_string, other_debug_string); in TEST_F()
267 EXPECT_EQ(debug_string, other_message.DebugString()); in TEST_F()
272 const string debug_string = empty_message_.DebugString(); in TEST_F() local
277 EXPECT_EQ(debug_string, empty_message_.DebugString()); in TEST_F()
Dtext_format_unittest.cc186 string debug_string = proto_.DebugString(); in TEST_F() local
195 EXPECT_EQ(correct_string, debug_string); in TEST_F()
210 string debug_string = proto_.DebugString(); in TEST_F() local
223 EXPECT_EQ(correct_string, debug_string); in TEST_F()
/external/chromium_org/sync/internal_api/public/base/
Dunique_position.cc206 std::string debug_string = base::HexEncode(bytes.data(), bytes.length()); in ToDebugString() local
208 debug_string = "INVALID[" + debug_string + "]"; in ToDebugString()
213 debug_string.append(", compressed: " + compressed_string); in ToDebugString()
214 return debug_string; in ToDebugString()
Dordinal.h263 std::string debug_string = in ToDebugString() local
266 debug_string = "INVALID[" + debug_string + "]"; in ToDebugString()
268 return debug_string; in ToDebugString()
/external/mdnsresponder/mDNSShared/
DDebugServices.h1149 #undef debug_string
1151 #if( !defined( debug_string ) )
1153 #define debug_string( STR ) \ macro
1160 #define debug_string( STR ) macro
DDebugServices.c2788 debug_string( "debug_string" ); in DebugServicesTest()
/external/protobuf/src/google/protobuf/compiler/
Dparser_unittest.cc1214 string debug_string = original_file->DebugString(); in TEST_F() local
1217 SetupParser(debug_string.c_str()); in TEST_F()
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
Dparser_unittest.cc1294 string debug_string = original_file->DebugString(); in TEST_F() local
1297 SetupParser(debug_string.c_str()); in TEST_F()
1341 string debug_string = original_file->DebugString(); in TEST_F() local
1344 SetupParser(debug_string.c_str()); in TEST_F()
/external/chromium_org/v8/src/
Dbootstrapper.cc2253 Handle<String> debug_string = in InstallSpecialObjects() local
2256 if (debug_string->AsArrayIndex(&index)) return true; in InstallSpecialObjects()
2258 JSObject::AddProperty(global, debug_string, global_proxy, DONT_ENUM); in InstallSpecialObjects()
/external/chromium_org/v8/test/cctest/
Dtest-debug.cc116 Handle<v8::internal::String> debug_string = in ExposeDebug() local
118 v8::internal::Runtime::DefineObjectProperty(global, debug_string, in ExposeDebug()