Home
last modified time | relevance | path

Searched refs:Explain (Results 1 – 25 of 31) sorted by relevance

12

/external/tensorflow/tensorflow/compiler/jit/
Dnode_matchers_test.cc42 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/
Dhlo_matchers_test.cc35 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 …]
Dpattern_matcher_gmock_test.cc36 string Explain( in Explain() function
/external/googletest/googlemock/test/
Dgmock-generated-matchers_test.cc111 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 …]
Dgmock-matchers_test.cc160 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/
Dgmock-generated-matchers_test.cc100 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 …]
Dgmock-matchers_test.cc198 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/
Dembedder-guide.md12 - 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/
DExplainOutputStyle.cpp397 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/
Ddeveloper-guide.txt45 the perspective of the reader. Explain what behavior you expected, what you
/external/scapy/
DCONTRIBUTING.md56 Explain if possible the API you would like to have (e.g., give examples
/external/python/cpython2/Misc/NEWS.d/
D2.7.11rc1.rst890 Explain some differences between IDLE and console Python.
899 Explain need for *print* when running file from Idle editor.
D2.7.15rc1.rst1262 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
/external/bcc/
DCONTRIBUTING-SCRIPTS.md37 …n intro sentence, then have examples, and finish with the USAGE message. Explain everything: the f…
/external/python/cpython3/Lib/idlelib/
DNEWS.txt81 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/
D3.5.1rc1.rst1108 Explain some differences between IDLE and console Python.
1117 Explain need for *print* when running file from Idle editor.
D3.7.0b1.rst715 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
D3.6.5rc1.rst612 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
D3.7.2rc1.rst930 Explain how IDLE's Shell displays output.
D3.6.0a1.rst3353 Explain some differences between IDLE and console Python.
3362 Explain need for *print* when running file from Idle editor.
/external/python/cpython2/Lib/idlelib/
DNEWS.txt142 - 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/
Ddifflib.rst471 .. XXX Explain why a dummy is used!
/external/llvm/docs/
DCMake.rst144 Explain variables and cache. Move explanation here from #options section.
/external/python/cpython2/Doc/library/
Ddifflib.rst444 .. XXX Explain why a dummy is used!
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCMake.rst144 Explain variables and cache. Move explanation here from #options section.

12