/external/catch2/projects/SelfTest/UsageTests/ |
D | ToStringVector.tests.cpp | 9 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 …]
|
D | ToStringVariant.tests.cpp | 24 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 …]
|
D | ToStringGeneral.tests.cpp | 63 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 …]
|
D | ToStringWhich.tests.cpp | 71 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 …]
|
D | EnumToString.tests.cpp | 18 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" );
|
D | ToStringTuple.tests.cpp | 9 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) );
|
D | ToStringOptional.tests.cpp | 8 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 } ) );
|
D | ToStringPair.tests.cpp | 6 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 } }" );
|
/external/catch2/include/internal/ |
D | catch_tostring.cpp | 30 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 …]
|
D | catch_approx.cpp | 26 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()
|
D | catch_tostring.h | 33 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 …]
|
D | catch_matchers_vector.h | 35 return "Contains: " + ::Catch::Detail::stringify( m_comparator ); in describe() 65 return "Contains: " + ::Catch::Detail::stringify( m_comparator ); in describe() 89 return "Equals: " + ::Catch::Detail::stringify( m_comparator ); in describe() 108 return "is approx: " + ::Catch::Detail::stringify( m_comparator ); in describe() 127 mutable Catch::Detail::Approx approx = Catch::Detail::Approx::custom(); 143 return "UnorderedEquals: " + ::Catch::Detail::stringify(m_target); in describe()
|
D | catch_objc.hpp | 59 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()
|
D | catch_approx.h | 16 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);
|
D | catch_matchers_floating.cpp | 96 …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()
|
D | catch_matchers_generic.hpp | 20 namespace Detail { namespace 32 m_description(Detail::finalizeDescription(descr)) in PredicateMatcher()
|
/external/golang-protobuf/protoc-gen-go/testdata/extension_user/ |
D | extension_user.pb.go | 163 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/ |
D | SoapFault12.java | 47 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/dokka/core/src/main/kotlin/Java/ |
D | JavaPsiDocumentationBuilder.kt | 136 node.append(it, RefKind.Detail) in appendFile() 139 node.append(it, RefKind.Detail) in appendFile() 142 node.append(it, RefKind.Detail) in appendFile() 145 refGraph.link(node, it, RefKind.Detail) in appendFile() 198 appendChildren(elements, RefKind.Detail, buildFn) in appendFile() 266 append(DocumentationNode(text, Content.Empty, NodeKind.Value), RefKind.Detail) in appendFile() 296 node.appendTextNode("vararg", NodeKind.Modifier, RefKind.Detail) in appendFile() 324 append(node, RefKind.Detail) in appendFile() 346 node.append(componentType.build(NodeKind.Type), RefKind.Detail) in appendFile() 359 parameter.append(valueNode, RefKind.Detail) in appendFile() [all …]
|
/external/tensorflow/tensorflow/core/util/ |
D | stats_calculator.h | 169 struct Detail { struct 179 const std::map<std::string, Detail>& GetDetails() const { return details_; } in GetDetails() argument 187 std::vector<const Detail*>* details) const; 190 std::string ColumnString(const Detail& detail, 197 std::map<std::string, Detail> details_;
|
D | stats_calculator.cc | 68 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()
|
D | stats_calculator_test.cc | 25 using Detail = StatsCalculator::Detail; typedef 55 const Detail& detail = calc.GetDetails().at("node1"); in TEST()
|
/external/dokka/core/src/main/kotlin/Kotlin/ |
D | DescriptorDocumentationParser.kt | 141 it.getAttr(descriptor)?.let { append(it, RefKind.Detail) } in <lambda>() 144 append(apiLevel, RefKind.Detail) in <lambda>() 147 append(deprecatedLevel, RefKind.Detail) in <lambda>() 150 append(artifactId, RefKind.Detail) in <lambda>() 214 refGraph.link(node, classAttrSignature, RefKind.Detail) in <lambda>() 224 node.append(it, RefKind.Detail) in <lambda>() 227 node.append(it, RefKind.Detail) in <lambda>() 230 node.append(it, RefKind.Detail) in <lambda>() 276 refGraph.link(it, targetDescriptor.first().signature(), RefKind.Detail) in <lambda>()
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | CustomErrorDetailsTest.cs | 81 Assert.AreEqual(debugInfo.Detail, ExceptionDetail); in ErrorDetailsFromCallObject() 98 Assert.AreEqual(debugInfo.Detail, ExceptionDetail); in ErrorDetailsFromRpcException() 121 debugInfo.Detail = e.Message; in UnaryCall()
|
/external/u-boot/tools/binman/ |
D | entry.py | 317 self.Detail('ResetForPack: offset %s->%s, size %s->%s' % 342 self.Detail('Packing: offset=%s, size=%s, content_size=%x' % 376 self.Detail(' - packed: offset=%#x, size=%#x, content_size=%#x, next_offset=%x' % 385 def Detail(self, msg): member in Entry 388 tout.Detail('%30s: %s' % (tag, msg)) 426 self.Detail('GetData: size %s' % ToHexSize(self.data)) 737 self.Detail('Loaded data size %x' % len(data)) 769 self.Detail('WriteData: size=%x, ok=%s' % (len(data), ok))
|