Home
last modified time | relevance | path

Searched refs:CtxImpl (Results 1 – 6 of 6) sorted by relevance

/external/ruy/ruy/
Dctx_test.cc25 CtxImpl ctx; in TEST()
35 CtxImpl ctx; in TEST()
44 CtxImpl ctx; in TEST()
51 CtxImpl ctx; in TEST()
60 CtxImpl ctx; in TEST()
Dctx.h26 class CtxImpl; variable
85 const CtxImpl& impl() const;
86 CtxImpl* mutable_impl();
Dctx.cc34 const CtxImpl& Ctx::impl() const { return static_cast<const CtxImpl&>(*this); } in impl()
35 CtxImpl* Ctx::mutable_impl() { return static_cast<CtxImpl*>(this); } in mutable_impl()
Dcontext.h26 class CtxImpl; variable
94 CtxImpl* const impl_;
Dctx_impl.h56 class CtxImpl final : public Ctx {
Dcontext.cc28 Context::Context() : impl_(new CtxImpl) {} in Context()