/external/deqp-deps/amber/src/ |
D | command.cc | 25 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;
|
D | command.h | 36 class ClearCommand; variable 99 ClearCommand* AsClear(); 587 class ClearCommand : public PipelineCommand { 589 explicit ClearCommand(Pipeline* pipeline); 590 ~ClearCommand() override;
|
D | engine.h | 99 virtual Result DoClear(const ClearCommand* cmd) = 0;
|
D | executor_test.cc | 93 Result DoClear(const ClearCommand*) override { in DoClear() argument 385 TEST_F(VkScriptExecutorTest, ClearCommand) { in TEST_F() argument
|
/external/deqp/modules/gles3/functional/ |
D | es3fDepthStencilTests.cpp | 158 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/ |
D | es2fDepthStencilTests.cpp | 158 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/ |
D | JDWPCommands.java | 311 public static final byte ClearCommand = 2; field in JDWPCommands.EventRequestCommandSet
|
D | VmMirror.java | 270 .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/ |
D | InvokeMethodTest.java | 137 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod001() 292 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod002() 430 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod003()
|
D | NewInstanceTest.java | 136 JDWPCommands.EventRequestCommandSet.ClearCommand); in testNewInstance001() 327 JDWPCommands.EventRequestCommandSet.ClearCommand); in testNewInstance002()
|
D | InvokeMethod003Test.java | 98 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod_null_argument()
|
D | NewInstance002Test.java | 99 JDWPCommands.EventRequestCommandSet.ClearCommand); in testNewInstance_null_argument()
|
D | InvokeMethod002Test.java | 133 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod()
|
/external/deqp-deps/amber/src/dawn/ |
D | engine_dawn.h | 56 Result DoClear(const ClearCommand* cmd) override;
|
D | engine_dawn.cc | 892 Result EngineDawn::DoClear(const ClearCommand* command) { in DoClear()
|
/external/deqp-deps/amber/src/vulkan/ |
D | engine_vulkan.h | 55 Result DoClear(const ClearCommand* cmd) override;
|
D | engine_vulkan.cc | 451 Result EngineVulkan::DoClear(const ClearCommand* command) { in DoClear()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
D | InvokeMethod002Test.java | 98 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod_null_argument()
|
D | InvokeMethod003Test.java | 100 JDWPCommands.EventRequestCommandSet.ClearCommand); in testInvokeMethod_toString()
|
D | InvokeMethodTest.java | 111 JDWPCommands.EventRequestCommandSet.ClearCommand); in clearEvent()
|
/external/skia/tools/debugger/ |
D | DrawCommand.h | 132 class ClearCommand : public DrawCommand { 134 ClearCommand(SkColor color);
|
D | DrawCommand.cpp | 987 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/ |
D | JDWPTestCase.java | 901 JDWPCommands.EventRequestCommandSet.ClearCommand); in clearEvent()
|
/external/deqp-deps/amber/src/vkscript/ |
D | command_parser.cc | 473 cmd = MakeUnique<ClearCommand>(pipeline_); in ProcessClear()
|
/external/deqp-deps/amber/src/amberscript/ |
D | parser.cc | 2885 auto cmd = MakeUnique<ClearCommand>(pipeline); in ParseClear()
|