Home
last modified time | relevance | path

Searched refs:CopyCommand (Results 1 – 3 of 3) sorted by relevance

/external/deqp-deps/amber/src/
Dcommand.cc54 CopyCommand* Command::AsCopy() { in AsCopy()
55 return static_cast<CopyCommand*>(this); in AsCopy()
152 CopyCommand::CopyCommand(Buffer* buffer_from, Buffer* buffer_to) in CopyCommand() function in amber::CopyCommand
155 CopyCommand::~CopyCommand() = default;
Dcommand.h42 class CopyCommand; variable
113 CopyCommand* AsCopy();
319 class CopyCommand : public Command {
321 CopyCommand(Buffer* buffer_from, Buffer* buffer_to);
322 ~CopyCommand() override;
/external/deqp-deps/amber/src/amberscript/
Dparser.cc3523 auto cmd = MakeUnique<CopyCommand>(buffer_from, buffer_to); in ParseCopy()