/external/tensorflow/tensorflow/compiler/jit/ |
D | node_matchers_test.cc | 42 string Explain(const T& t, const M& m) { in Explain() function 64 EXPECT_EQ(Explain(placeholder.node(), NodeWith(Op("Add"))), in TEST() 66 EXPECT_EQ(Explain(placeholder.node(), NodeWith(Name("add"))), in TEST() 68 EXPECT_EQ(Explain(placeholder.node(), NodeWith(Inputs(Out(NodeWith())))), in TEST() 86 EXPECT_EQ(Explain(add.node(), NodeWith(Inputs())), in TEST() 89 Explain(add.node(), NodeWith(Inputs(Out(NodeWith(Name("blah"))), _))), in TEST() 93 Explain(add.node(), NodeWith(Inputs(_, Out(NodeWith(Name("blah")))))), in TEST() 121 Explain(placeholder_c.node(), NodeWith(CtrlDeps())), in TEST() 123 EXPECT_EQ(Explain(placeholder_d.node(), NodeWith(CtrlDeps(NodeWith()))), in TEST() 141 EXPECT_EQ(Explain(placeholder.node(), NodeWith(ConstantValue(42))), in TEST() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_matchers_test.cc | 39 std::string Explain(const T& t, const M& m) { in Explain() function 61 Explain(add.get(), op::Parameter()), in TEST_F() 64 Explain(add.get(), op::Add(op::Parameter())), in TEST_F() 68 Explain(add.get(), op::Add(op::Parameter(), op::Parameter())), in TEST_F() 77 Explain(add.get(), in TEST_F() 115 EXPECT_THAT(Explain(call.get(), op::CustomCall("bar")), in TEST_F() 151 EXPECT_THAT(Explain(p0.get(), op::Shape(ShapeUtil::MakeShape(F32, {7, 5}))), in TEST_F() 155 Explain(p0.get(), op::ShapeWithLayout(ShapeUtil::MakeShapeWithLayout( in TEST_F() 192 EXPECT_THAT(Explain(p0.get(), op::Sharding(HloSharding::AssignDevice(1))), in TEST_F() 195 EXPECT_THAT(Explain(p1.get(), op::NoSharding()), in TEST_F() [all …]
|
D | instruction_fusion.h | 82 return {absl::StrCat(explanation_.value_or(""), " ; ", decision.Explain())}; in Or() 110 std::string Explain() const { return *explanation_; } in Explain() function
|
D | pattern_matcher_gmock_test.cc | 37 std::string Explain( in Explain() function
|
D | instruction_fusion.cc | 626 << should_fuse.Explain(); in Run() 635 "| as ", should_fuse.Explain()), in Run()
|
/external/cronet/third_party/googletest/src/googlemock/test/ |
D | gmock-matchers-misc_test.cc | 157 EXPECT_EQ("", Explain(m, container)); in TEST() 159 EXPECT_EQ("whose size is 1", Explain(m, container)); in TEST() 222 EXPECT_EQ("", Explain(m, my_set)); in TYPED_TEST() 234 Explain(m, test_set)); in TYPED_TEST() 245 EXPECT_EQ("which has these unexpected elements: 46", Explain(m, test_set)); in TYPED_TEST() 259 Explain(m, test_set)); in TYPED_TEST() 271 EXPECT_EQ("", Explain(m, test_set)); in TYPED_TEST() 285 Explain(m, test_set)); in TEST() 298 Explain(m, test_set)); in TEST() 312 Explain(m, test_set)); in TEST() [all …]
|
D | gmock-matchers-containers_test.cc | 320 EXPECT_EQ("", Explain(m, static_cast<const std::string*>(nullptr))); in TEST() 325 Explain(m2, &n)); in TEST() 331 EXPECT_EQ("which points to 42" + OfType("int"), Explain(m, &n)); in TEST() 483 EXPECT_EQ("whose given field is 1" + OfType("int"), Explain(m, a)); in TEST() 488 Explain(m, a)); in TEST() 496 EXPECT_EQ("whose field `field_name` is 1" + OfType("int"), Explain(m, a)); in TEST() 501 Explain(m, a)); in TEST() 575 EXPECT_EQ("", Explain(m, static_cast<const AStruct*>(nullptr))); in TEST() 577 Explain(m, &a)); in TEST() 582 Explain(m, &a)); in TEST() [all …]
|
D | gmock-matchers-comparisons_test.cc | 129 EXPECT_EQ("value % 2 == 0", Explain(m, 2)); in TEST() 130 EXPECT_EQ("value % 2 == 1", Explain(m, 3)); in TEST() 365 EXPECT_EQ("% 2 == 0", Explain(m1, 42)); in TEST() 376 EXPECT_EQ("% 2 == 0", Explain(m2, '\x42')); in TEST() 1094 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), n), in TEST() 1098 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), m), in TEST() 1330 Explain(m, make_pair(5, true))); in TEST() 1332 Explain(m, make_pair(15, true))); in TEST() 1441 Explain(m, make_pair(-1, -2))); in TEST() 1446 Explain(m, make_pair(1, -2))); in TEST() [all …]
|
D | gmock-matchers-arithmetic_test.cc | 562 EXPECT_EQ("which is 15 more than 10", Explain(m, 25)); in TEST() 567 Explain(m, 30)); in TEST() 573 Explain(m, 25)); in TEST() 580 Explain(m, 40)); in TEST() 585 EXPECT_EQ("which is 5 less than 10", Explain(m, 5)); in TEST() 591 EXPECT_EQ("", Explain(m, 40)); in TEST() 596 EXPECT_EQ("which is 5 less than 20", Explain(m, 15)); in TEST() 776 EXPECT_EQ("which is 5 less than 10", Explain(m, 5)); in TEST() 781 Explain(m, 5)); in TEST() 787 Explain(m, 5)); in TEST() [all …]
|
D | gmock-matchers_test.h | 145 std::string Explain(const MatcherType& m, const Value& x) { in Explain() function
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 166 std::string Explain(const MatcherType& m, const Value& x) { in Explain() function 253 EXPECT_EQ("value % 2 == 0", Explain(m, 2)); in TEST() 254 EXPECT_EQ("value % 2 == 1", Explain(m, 3)); in TEST() 495 EXPECT_EQ("% 2 == 0", Explain(m1, 42)); in TEST() 506 EXPECT_EQ("% 2 == 0", Explain(m2, '\x42')); in TEST() 1227 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), n), in TEST() 1231 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), m), in TEST() 1463 Explain(m, make_pair(5, true))); in TEST() 1465 Explain(m, make_pair(15, true))); in TEST() 1571 Explain(m, make_pair(-1, -2))); in TEST() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | fusion_merger.cc | 217 << "| with all of it's users due to: " << was_fused.Explain(); in Run() 223 "| into all of its users due to: ", was_fused.Explain()), in Run()
|
/external/bazelbuild-rules_android/ |
D | CONTRIBUTING.md | 24 1. Explain your idea and discuss your plan with members of the team. The best
|
/external/kotlinx.coroutines/.github/ISSUE_TEMPLATE/ |
D | feature_request.md | 22 Explain what *specifically* you are trying to do and why.
|
/external/mbedtls/ChangeLog.d/ |
D | 00README.md | 76 **Explain why, not how**. Remember that the audience is the users of the
|
/external/openthread/third_party/mbedtls/repo/ChangeLog.d/ |
D | 00README.md | 76 **Explain why, not how**. Remember that the audience is the users of the
|
/external/pigweed/docs/templates/docs/ |
D | docs.rst | 95 Explain how developers use this module in their project, including any
|
/external/python/setuptools/docs/development/ |
D | developer-guide.rst | 42 the perspective of the reader. Explain what behavior you expected, what you
|
/external/scapy/ |
D | CONTRIBUTING.md | 56 Explain if possible the API you would like to have (e.g., give examples
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.11rc1.rst | 890 Explain some differences between IDLE and console Python. 899 Explain need for *print* when running file from Idle editor.
|
/external/bcc/ |
D | CONTRIBUTING-SCRIPTS.md | 39 …n intro sentence, then have examples, and finish with the USAGE message. Explain everything: the f…
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.1rc1.rst | 1108 Explain some differences between IDLE and console Python. 1117 Explain need for *print* when running file from Idle editor.
|
D | 3.7.0b1.rst | 713 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
D | 3.6.5rc1.rst | 611 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
/external/python/cpython3/Lib/idlelib/ |
D | NEWS.txt | 398 bpo-23220: Explain how IDLE's Shell displays output. 411 bpo-1529353: Explain Shell text squeezing in the IDLE doc. 1077 - Issue #21995: Explain some differences between IDLE and console Python. 1079 - Issue #22820: Explain need for *print* when running file from Idle editor.
|