Home
last modified time | relevance | path

Searched refs:Detail (Results 1 – 25 of 64) sorted by relevance

123

/external/catch2/projects/SelfTest/UsageTests/
DToStringVector.tests.cpp9 REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" );
11 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" );
13 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" );
19 REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" );
21 REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\" }" );
23 REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\", \"world\" }" );
53 REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" );
55 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" );
57 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" );
64 REQUIRE( ::Catch::Detail::stringify(v) == "{ }" );
[all …]
DToStringVariant.tests.cpp24 CHECK( "{ }" == ::Catch::Detail::stringify(type{}) );
26 CHECK( "{ }" == ::Catch::Detail::stringify(value) );
27 CHECK( "{ }" == ::Catch::Detail::stringify(std::get<0>(value)) );
33 CHECK( "0" == ::Catch::Detail::stringify(type{0}) );
39 CHECK( "0.5f" == ::Catch::Detail::stringify(type{0.5f}) );
40 CHECK( "0" == ::Catch::Detail::stringify(type{0}) );
49 CHECK("{valueless variant}" == ::Catch::Detail::stringify(value));
56 CHECK( "\"foo\"" == ::Catch::Detail::stringify(type{"foo"}) );
57 CHECK( "0" == ::Catch::Detail::stringify(type{0}) );
64 CHECK( "0.5f" == ::Catch::Detail::stringify(type{0.5f}) );
[all …]
DToStringGeneral.tests.cpp63 REQUIRE( Catch::Detail::stringify( emptyMap ) == "{ }" );
69 REQUIRE( Catch::Detail::stringify( map ) == "{ { \"one\", 1 } }" );
79 …REQUIRE( Catch::Detail::stringify( map ) == "{ { \"abc\", 1 }, { \"def\", 2 }, { \"ghi\", 3 } }" );
88 REQUIRE( Catch::Detail::stringify( emptySet ) == "{ }" );
94 REQUIRE( Catch::Detail::stringify( set ) == "{ \"one\" }" );
100 REQUIRE( Catch::Detail::stringify( set ) == "{ \"abc\", \"def\", \"ghi\" }" );
107 REQUIRE(Catch::Detail::stringify(singular) == "{ 1 }");
111 REQUIRE(Catch::Detail::stringify(arr) == "{ 3, 2, 1 }");
115 … REQUIRE(Catch::Detail::stringify(arr) == R"({ { "1:1", "1:2", "1:3" }, { "2:1", "2:2" } })");
123 CHECK(Catch::Detail::stringify(view) == R"("abc")");
[all …]
DToStringWhich.tests.cpp71 REQUIRE( ::Catch::Detail::stringify( item ) == "operator<<( has_operator )" );
77 REQUIRE( ::Catch::Detail::stringify( item ) == "StringMaker<has_maker>" );
83 REQUIRE( ::Catch::Detail::stringify( item ) == "StringMaker<has_maker_and_operator>" );
88 REQUIRE( ::Catch::Detail::stringify(item) == "{ !!! }" );
94 REQUIRE( ::Catch::Detail::stringify( item ) == "operator<<( has_template_operator )" );
102 REQUIRE( ::Catch::Detail::stringify( v ) == "{ operator<<( has_operator ) }" );
107 REQUIRE( ::Catch::Detail::stringify( v ) == "{ StringMaker<has_maker> }" );
112 REQUIRE( ::Catch::Detail::stringify( v ) == "{ StringMaker<has_maker_and_operator> }" );
189 REQUIRE(::Catch::Detail::stringify(streamable_range{}) == "op<<(streamable_range)");
190 REQUIRE(::Catch::Detail::stringify(stringmaker_range{}) == "stringmaker(streamable_range)");
[all …]
DEnumToString.tests.cpp18 CHECK( ::Catch::Detail::stringify(e0) == "0" );
20 CHECK( ::Catch::Detail::stringify(e1) == "1" );
25 CHECK( ::Catch::Detail::stringify(e0) == "E2{0}" );
27 CHECK( ::Catch::Detail::stringify(e1) == "E2{1}" );
52 CHECK( ::Catch::Detail::stringify(e0) == "0" );
54 CHECK( ::Catch::Detail::stringify(e1) == "1" );
60 CHECK( ::Catch::Detail::stringify(e0) == "E2/V0" );
62 CHECK( ::Catch::Detail::stringify(e1) == "E2/V1" );
65 CHECK( ::Catch::Detail::stringify(e3) == "Unknown enum value 10" );
DToStringTuple.tests.cpp9 CHECK( "{ }" == ::Catch::Detail::stringify(type{}) );
11 CHECK( "{ }" == ::Catch::Detail::stringify(value) );
17 CHECK( "{ 0 }" == ::Catch::Detail::stringify(type{0}) );
24 CHECK( "1.2f" == ::Catch::Detail::stringify(float(1.2)) );
25 CHECK( "{ 1.2f, 0 }" == ::Catch::Detail::stringify(type{1.2f,0}) );
31 CHECK( "{ \"hello\", \"world\" }" == ::Catch::Detail::stringify(type{"hello","world"}) );
38 CHECK( "{ { 42 }, { }, 1.2f }" == ::Catch::Detail::stringify(value) );
45 CHECK( "{ nullptr, 42, \"Catch me\" }" == ::Catch::Detail::stringify(value) );
DToStringOptional.tests.cpp8 REQUIRE( "{ }" == ::Catch::Detail::stringify( type{} ) );
9 REQUIRE( "0" == ::Catch::Detail::stringify( type{ 0 } ) );
14 REQUIRE( "{ }" == ::Catch::Detail::stringify( type{} ) );
15 REQUIRE( "\"abc\"" == ::Catch::Detail::stringify( type{ "abc" } ) );
20 REQUIRE( "{ 0, { }, 2 }" == ::Catch::Detail::stringify( type{ 0, {}, 2 } ) );
DToStringPair.tests.cpp6 REQUIRE( ::Catch::Detail::stringify( value ) == "{ 34, \"xyzzy\" }" );
11 REQUIRE( ::Catch::Detail::stringify(value) == "{ 34, \"xyzzy\" }" );
17 REQUIRE( ::Catch::Detail::stringify( pr ) == "{ { \"green\", 55 } }" );
29 REQUIRE( ::Catch::Detail::stringify( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }" );
DMisc.tests.cpp348 std::string result = ::Catch::Detail::stringify( s );
354 std::string result = ::Catch::Detail::stringify( s );
360 std::string result = ::Catch::Detail::stringify( s );
366 std::string result = ::Catch::Detail::stringify( s );
/external/catch2/include/internal/
Dcatch_tostring.cpp30 namespace Detail { namespace
122 return ::Catch::Detail::stringify(std::string{ str }); in convert()
128 return ::Catch::Detail::stringify(std::string{ str }); in convert()
135 return ::Catch::Detail::stringify(std::string{ str }); in convert()
148 return ::Catch::Detail::stringify(s); in convert()
159 return ::Catch::Detail::stringify(std::wstring{ str }); in convert()
166 return ::Catch::Detail::stringify(std::wstring{ str }); in convert()
175 return ::Catch::Detail::stringify(static_cast<long long>(value)); in convert()
178 return ::Catch::Detail::stringify(static_cast<long long>(value)); in convert()
183 if (value > Detail::hexThreshold) { in convert()
[all …]
Dcatch_approx.cpp26 namespace Detail { namespace
48 rss << "Approx( " << ::Catch::Detail::stringify( m_value ) << " )"; in toString()
75 Detail::Approx operator "" _a(long double val) { in operator ""_a()
76 return Detail::Approx(val); in operator ""_a()
78 Detail::Approx operator "" _a(unsigned long long val) { in operator ""_a()
79 return Detail::Approx(val); in operator ""_a()
83 std::string StringMaker<Catch::Detail::Approx>::convert(Catch::Detail::Approx const& value) { in convert()
Dcatch_tostring.h33 namespace Detail {
64 return Detail::unprintableString; in convertUnstreamable()
101 typename std::enable_if<::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>::type
112 … typename std::enable_if<!::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>::type
115 return Detail::convertUnstreamable(value); in convert()
122 namespace Detail {
133 … return ::Catch::Detail::stringify(static_cast<typename std::underlying_type<E>::type>(e)); in convertUnknownEnumToString()
196 return ::Catch::Detail::stringify(std::string{ str });
202 return ::Catch::Detail::stringify(std::string{ reinterpret_cast<char const *>(str) });
208 return ::Catch::Detail::stringify(std::string{ reinterpret_cast<char const *>(str) });
[all …]
Dcatch_matchers_vector.h19 namespace Detail {
56 return "Contains: " + ::Catch::Detail::stringify( m_comparator ); in describe()
86 return "Contains: " + ::Catch::Detail::stringify( m_comparator ); in describe()
110 return "Equals: " + ::Catch::Detail::stringify( m_comparator ); in describe()
136 if (Detail::contains(lfirst, mid, *mid)) { in match()
139 size_t num_vec = Detail::count(rfirst, rlast, *mid); in match()
140 if (num_vec == 0 || Detail::count(lfirst, llast, *mid) != num_vec) { in match()
149 return "UnorderedEquals: " + ::Catch::Detail::stringify(m_target); in describe()
Dcatch_objc.hpp59 namespace Detail{ namespace
92 std::string name = Detail::getAnnotation( cls, "Name", testCaseName ); in registerTestMethods()
93 … std::string desc = Detail::getAnnotation( cls, "Description", testCaseName ); in registerTestMethods()
135 return "equals string: " + Catch::Detail::stringify( m_substr ); in describe()
148 return "contains string: " + Catch::Detail::stringify( m_substr ); in describe()
161 return "starts with: " + Catch::Detail::stringify( m_substr ); in describe()
173 return "ends with: " + Catch::Detail::stringify( m_substr ); in describe()
Dcatch_approx.h16 namespace Detail {
121 Detail::Approx operator "" _a(long double val);
122 Detail::Approx operator "" _a(unsigned long long val);
126 struct StringMaker<Catch::Detail::Approx> {
127 static std::string convert(Catch::Detail::Approx const& value);
Dcatch_matchers_floating.cpp96 …return "is within " + ::Catch::Detail::stringify(m_margin) + " of " + ::Catch::Detail::stringify(m… in describe()
128 …return "is within " + Catch::to_string(m_ulps) + " ULPs of " + ::Catch::Detail::stringify(m_target… in describe()
/external/syzkaller/vendor/google.golang.org/appengine/internal/
Dinternal.go45 Detail string member
51 if e.Detail == "" {
54 return e.Detail
63 if e.Detail != "" {
64 s += ": " + e.Detail
76 Detail string member
86 return e.Detail
96 s := msg + ": " + e.Detail
Dapi_classic.go134 Detail: v.Detail,
139 Detail: v.Detail,
/external/golang-protobuf/protoc-gen-go/testdata/extension_user/
Dextension_user.pb.go163 type Detail struct { struct
170 func (m *Detail) Reset() { *m = Detail{} } argument
171 func (m *Detail) String() string { return proto.CompactTextString(m) } argument
172 func (*Detail) ProtoMessage() {} argument
173 func (*Detail) Descriptor() ([]byte, []int) { argument
177 func (m *Detail) XXX_Unmarshal(b []byte) error { argument
180 func (m *Detail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
183 func (m *Detail) XXX_Merge(src proto.Message) { argument
186 func (m *Detail) XXX_Size() int { argument
189 func (m *Detail) XXX_DiscardUnknown() { argument
[all …]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
DSoapFault12.java47 public Node Detail; field in SoapFault12
66 this.detail = this.Detail; in parse()
90 this.Detail = new Node(); in parseSelf()
91 this.Detail.parse(parser); in parseSelf()
127 if (this.Detail != null) { in write()
129 this.Detail.write(xw); in write()
/external/syzkaller/vendor/google.golang.org/appengine/internal/remote_api/
Dremote_api.pb.go136 Detail *string `protobuf:"bytes,2,req,name=detail" json:"detail,omitempty"` member
152 if m != nil && m.Detail != nil {
153 return *m.Detail
160 Detail *string `protobuf:"bytes,2,opt,name=detail" json:"detail,omitempty"` member
176 if m != nil && m.Detail != nil {
177 return *m.Detail
/external/tensorflow/tensorflow/core/util/
Dstats_calculator.h156 struct Detail { struct
166 const std::map<std::string, Detail>& GetDetails() const { return details_; } in GetDetails() argument
174 std::vector<const Detail*>* details) const;
177 std::string ColumnString(const Detail& detail,
184 std::map<std::string, Detail> details_;
Dstats_calculator.cc68 std::string StatsCalculator::ColumnString(const Detail& detail, in ColumnString()
93 SortingMetric metric, std::vector<const Detail*>* details) const { in OrderNodesByMetric()
94 std::priority_queue<std::pair<std::string, const Detail*>> sorted_list; in OrderNodesByMetric()
98 const Detail* detail = &(det.second); in OrderNodesByMetric()
144 const Detail& detail = det.second; in ComputeStatsByType()
229 std::vector<const Detail*> details; in GetStatsByMetric()
279 Detail* detail = nullptr; in AddNodeStats()
Dstats_calculator_test.cc22 using Detail = StatsCalculator::Detail; typedef
52 const Detail& detail = calc.GetDetails().at("node1"); in TEST()
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DCustomErrorDetailsTest.cs81 Assert.AreEqual(debugInfo.Detail, ExceptionDetail); in ErrorDetailsFromCallObject()
98 Assert.AreEqual(debugInfo.Detail, ExceptionDetail); in ErrorDetailsFromRpcException()
121 debugInfo.Detail = e.Message; in UnaryCall()

123