Home
last modified time | relevance | path

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

/external/deqp-deps/amber/src/
Dcommand.cc25 ClearCommand* Command::AsClear() { in AsClear()
26 return static_cast<ClearCommand*>(this); in AsClear()
152 ClearCommand::ClearCommand(Pipeline* pipeline) in ClearCommand() function in amber::ClearCommand
155 ClearCommand::~ClearCommand() = default;
Dcommand.h36 class ClearCommand; variable
99 ClearCommand* AsClear();
587 class ClearCommand : public PipelineCommand {
589 explicit ClearCommand(Pipeline* pipeline);
590 ~ClearCommand() override;
Dengine.h99 virtual Result DoClear(const ClearCommand* cmd) = 0;
Dexecutor_test.cc93 Result DoClear(const ClearCommand*) override { in DoClear() argument
385 TEST_F(VkScriptExecutorTest, ClearCommand) { in TEST_F() argument
/external/deqp/modules/gles3/functional/
Des3fDepthStencilTests.cpp158 struct ClearCommand struct
167 ClearCommand (void) in ClearCommand() function
174 ClearCommand (const rr::WindowRectangle& rect_, in ClearCommand() argument
245 void generateBaseClearAndDepthCommands (const TestRenderTarget& target, vector<ClearCommand>& clear… in generateBaseClearAndDepthCommands()
266 …clearCommands.push_back(ClearCommand(rr::WindowRectangle(0, 0, target.width, target.height), GL_CO… in generateBaseClearAndDepthCommands()
294 … clearCommands.push_back(ClearCommand(cellL1Rect, GL_STENCIL_BUFFER_BIT, Vec4(0), stencilValue)); in generateBaseClearAndDepthCommands()
414 void render (const vector<ClearCommand>& clears, int viewportX, int viewportY) in render()
420 const ClearCommand& clear = clears[ndx]; in render()
481 void renderReference (const vector<ClearCommand>& clears, const tcu::PixelBufferAccess& dstColor, c… in renderReference()
485 const ClearCommand& clear = clears[ndx]; in renderReference()
[all …]
/external/deqp/modules/gles2/functional/
Des2fDepthStencilTests.cpp158 struct ClearCommand struct
167 ClearCommand (void) in ClearCommand() argument
174 ClearCommand (const rr::WindowRectangle& rect_, in ClearCommand() argument
245 void generateBaseClearAndDepthCommands (const TestRenderTarget& target, vector<ClearCommand>& clear… in generateBaseClearAndDepthCommands()
266 …clearCommands.push_back(ClearCommand(rr::WindowRectangle(0, 0, target.width, target.height), GL_CO… in generateBaseClearAndDepthCommands()
294 … clearCommands.push_back(ClearCommand(cellL1Rect, GL_STENCIL_BUFFER_BIT, Vec4(0), stencilValue)); in generateBaseClearAndDepthCommands()
414 void render (const vector<ClearCommand>& clears, int viewportX, int viewportY) in render()
420 const ClearCommand& clear = clears[ndx]; in render()
481 void renderReference (const vector<ClearCommand>& clears, const tcu::PixelBufferAccess& dstColor, c… in renderReference()
485 const ClearCommand& clear = clears[ndx]; in renderReference()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPCommands.java311 public static final byte ClearCommand = 2; field in JDWPCommands.EventRequestCommandSet
DVmMirror.java270 .setCommand(JDWPCommands.EventRequestCommandSet.ClearCommand); in clearBreakpoint()
1576 .setCommand(JDWPCommands.EventRequestCommandSet.ClearCommand); in clearEvent()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethodTest.java137 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod001()
292 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod002()
430 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod003()
DNewInstanceTest.java136 JDWPCommands.EventRequestCommandSet.ClearCommand); in testNewInstance001()
327 JDWPCommands.EventRequestCommandSet.ClearCommand); in testNewInstance002()
DInvokeMethod003Test.java98 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod_null_argument()
DNewInstance002Test.java99 JDWPCommands.EventRequestCommandSet.ClearCommand); in testNewInstance_null_argument()
DInvokeMethod002Test.java133 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod()
/external/deqp-deps/amber/src/dawn/
Dengine_dawn.h56 Result DoClear(const ClearCommand* cmd) override;
Dengine_dawn.cc892 Result EngineDawn::DoClear(const ClearCommand* command) { in DoClear()
/external/deqp-deps/amber/src/vulkan/
Dengine_vulkan.h55 Result DoClear(const ClearCommand* cmd) override;
Dengine_vulkan.cc451 Result EngineVulkan::DoClear(const ClearCommand* command) { in DoClear()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DInvokeMethod002Test.java98 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod_null_argument()
DInvokeMethod003Test.java100 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod_toString()
DInvokeMethodTest.java111 JDWPCommands.EventRequestCommandSet.ClearCommand); in clearEvent()
/external/skia/tools/debugger/
DDrawCommand.h132 class ClearCommand : public DrawCommand {
134 ClearCommand(SkColor color);
DDrawCommand.cpp987 ClearCommand::ClearCommand(SkColor color) : INHERITED(kClear_OpType) { fColor = color; } in ClearCommand() function in ClearCommand
989 void ClearCommand::execute(SkCanvas* canvas) const { canvas->clear(fColor); } in execute()
991 void ClearCommand::toJSON(SkJSONWriter& writer, UrlDataManager& urlDataManager) const { in toJSON()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java901 JDWPCommands.EventRequestCommandSet.ClearCommand); in clearEvent()
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser.cc473 cmd = MakeUnique<ClearCommand>(pipeline_); in ProcessClear()
/external/deqp-deps/amber/src/amberscript/
Dparser.cc2885 auto cmd = MakeUnique<ClearCommand>(pipeline); in ParseClear()