/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 | 35 string Explain(const T& t, const M& m) { in Explain() function 56 EXPECT_THAT(Explain(add.get(), op::Parameter()), Eq("")); in TEST() 57 EXPECT_THAT(Explain(add.get(), op::Add(op::Parameter())), in TEST() 60 Explain(add.get(), op::Add(op::Parameter(), op::Parameter())), in TEST() 66 Explain(add.get(), in TEST() 101 EXPECT_THAT(Explain(call.get(), op::CustomCall("bar")), in TEST() 135 EXPECT_THAT(Explain(p0.get(), op::Shape(ShapeUtil::MakeShape(F32, {7, 5}))), in TEST() 139 Explain(p0.get(), op::ShapeWithLayout(ShapeUtil::MakeShapeWithLayout( in TEST() 176 EXPECT_THAT(Explain(p0.get(), op::Sharding(HloSharding::AssignDevice(1))), in TEST() 179 EXPECT_THAT(Explain(p1.get(), op::NoSharding()), in TEST() [all …]
|
D | pattern_matcher_gmock_test.cc | 36 string Explain( in Explain() function
|
/external/googletest/googlemock/test/ |
D | gmock-generated-matchers_test.cc | 111 std::string Explain(const MatcherType& m, const Value& x) { in Explain() function 190 EXPECT_EQ("", Explain(m, test_list)); // No need to explain anything. in TEST() 201 Explain(m, test_vector)); in TEST() 209 EXPECT_EQ("", Explain(m, test_list)); in TEST() 212 EXPECT_EQ("which has 1 element", Explain(m, test_list)); in TEST() 221 EXPECT_EQ("whose element #0 doesn't match", Explain(m, v)); in TEST() 225 Explain(m, v)); in TEST() 594 EXPECT_EQ("", Explain(m, 6)); in TEST() 595 EXPECT_EQ("", Explain(m, 7)); in TEST() 644 EXPECT_EQ("OK", Explain(m1, 4)); in TEST() [all …]
|
D | gmock-matchers_test.cc | 160 std::string Explain(const MatcherType& m, const Value& x) { in Explain() function 247 EXPECT_EQ("value % 2 == 0", Explain(m, 2)); in TEST() 248 EXPECT_EQ("value % 2 == 1", Explain(m, 3)); in TEST() 555 EXPECT_EQ("% 2 == 0", Explain(m1, 42)); in TEST() 566 EXPECT_EQ("% 2 == 0", Explain(m2, '\x42')); in TEST() 1282 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), n), in TEST() 1286 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), m), in TEST() 1495 Explain(m, make_pair(5, true))); in TEST() 1497 Explain(m, make_pair(15, true))); in TEST() 1603 Explain(m, make_pair(-1, -2))); in TEST() [all …]
|
/external/google-breakpad/src/testing/test/ |
D | gmock-generated-matchers_test.cc | 100 string Explain(const MatcherType& m, const Value& x) { in Explain() function 219 Explain(m, make_tuple(false, 42, 42))); in TEST() 221 Explain(m, make_tuple(false, 42, 43))); in TEST() 248 Explain(m, make_tuple('a', 42, 42))); in TEST() 250 Explain(m, make_tuple('\0', 42, 43))); in TEST() 330 EXPECT_EQ("", Explain(m, test_list)); // No need to explain anything. in TEST() 341 Explain(m, test_vector)); in TEST() 349 EXPECT_EQ("", Explain(m, test_list)); in TEST() 352 EXPECT_EQ("which has 1 element", Explain(m, test_list)); in TEST() 361 EXPECT_EQ("whose element #0 doesn't match", Explain(m, v)); in TEST() [all …]
|
D | gmock-matchers_test.cc | 198 string Explain(const MatcherType& m, const Value& x) { in Explain() function 277 EXPECT_EQ("value % 2 == 0", Explain(m, 2)); in TEST() 278 EXPECT_EQ("value % 2 == 1", Explain(m, 3)); in TEST() 451 EXPECT_EQ("% 2 == 0", Explain(m1, 42)); in TEST() 462 EXPECT_EQ("% 2 == 0", Explain(m2, '\x42')); in TEST() 1033 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), n), in TEST() 1037 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), m), in TEST() 1182 Explain(m, make_pair(5, true))); in TEST() 1184 Explain(m, make_pair(15, true))); in TEST() 1258 Explain(m, make_pair(-1, -2))); in TEST() [all …]
|
/external/perfetto/docs/ |
D | embedder-guide.md | 12 - Explain how they are supposed to be wired up together, with or without 14 - Explain the basic embedder requirements (e.g. [`TaskRunner`](/include/perfetto/base/task_runner.h… 17 - Explain the API surface: 21 - Explain the ABI surface:
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | ExplainOutputStyle.cpp | 397 Entry.Explain(P, Stream, SubOffset); in explainSubstreamOffset() 414 void (*Explain)(LinePrinter &, DbiStream &, uint32_t); in explainStreamOffset() member 460 void (*Explain)(LinePrinter &, InfoStream &, uint32_t); in explainStreamOffset() member
|
/external/python/setuptools/docs/ |
D | developer-guide.txt | 45 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.
|
D | 2.7.15rc1.rst | 1262 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
/external/bcc/ |
D | CONTRIBUTING-SCRIPTS.md | 37 …n intro sentence, then have examples, and finish with the USAGE message. Explain everything: the f…
|
/external/python/cpython3/Lib/idlelib/ |
D | NEWS.txt | 81 bpo-23220: Explain how IDLE's Shell displays output. 94 bpo-1529353: Explain Shell text squeezing in the IDLE doc. 765 - Issue #21995: Explain some differences between IDLE and console Python. 767 - Issue #22820: Explain need for *print* when running file from Idle editor.
|
/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 | 715 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
D | 3.6.5rc1.rst | 612 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
D | 3.7.2rc1.rst | 930 Explain how IDLE's Shell displays output.
|
D | 3.6.0a1.rst | 3353 Explain some differences between IDLE and console Python. 3362 Explain need for *print* when running file from Idle editor.
|
/external/python/cpython2/Lib/idlelib/ |
D | NEWS.txt | 142 - Issue #21995: Explain some differences between IDLE and console Python. 144 - Issue #22820: Explain need for *print* when running file from Idle editor.
|
/external/python/cpython3/Doc/library/ |
D | difflib.rst | 471 .. XXX Explain why a dummy is used!
|
/external/llvm/docs/ |
D | CMake.rst | 144 Explain variables and cache. Move explanation here from #options section.
|
/external/python/cpython2/Doc/library/ |
D | difflib.rst | 444 .. XXX Explain why a dummy is used!
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | CMake.rst | 144 Explain variables and cache. Move explanation here from #options section.
|