Home
last modified time | relevance | path

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

1234

/cts/tests/openglperf2/jni/graphics/
DProgramNode.cpp21 void ProgramNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in before() argument
22 program.before(model, view, projection); in before()
25 void ProgramNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in after() argument
26 program.after(model, view, projection); in after()
29 void ProgramNode::drawProgram(Matrix& model, Matrix& view, Matrix& projection) { in drawProgram() argument
30 SceneGraphNode::draw(mProgram, model, view, projection); in drawProgram()
DTransformationNode.cpp24 void TransformationNode::before(Program& program, Matrix& model, Matrix& view, in before() argument
27 mSavedModelMatrix.loadWith(model); in before()
29 model.multiply(*mMatrix, mSavedModelMatrix); in before()
32 void TransformationNode::after(Program& program, Matrix& model, Matrix& view, in after() argument
35 model.loadWith(mSavedModelMatrix); in after()
DSceneGraphNode.cpp26 void SceneGraphNode::draw(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in draw() argument
27 before(program, model, view, projection); in draw()
29 mChildren[i]->draw(program, model, view, projection); in draw()
31 after(program, model, view, projection); in draw()
DProgramNode.h25 void drawProgram(Matrix& model, Matrix& view, Matrix& projection);
27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
DSceneGraphNode.h27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
29 void draw(Program& program, Matrix& model, Matrix& view, Matrix& projection);
DPerspectiveMeshNode.cpp23 void PerspectiveMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection)… in before() argument
45 prog.mMVMatrix.multiply(view, model); in before()
64 void PerspectiveMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in after() argument
DProgram.cpp21 void Program::before(Matrix& model, Matrix& view, Matrix& projection) { in before() argument
25 void Program::after(Matrix& model, Matrix& view, Matrix& projection) { in after() argument
DProgram.h25 virtual void before(Matrix& model, Matrix& view, Matrix& projection);
26 virtual void after(Matrix& model, Matrix& view, Matrix& projection);
DPerspectiveMeshNode.h28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
DMeshNode.h27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
DTexturedMeshNode.h28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
DTransformationNode.h26 virtual void before(Program& program, Matrix& model, Matrix& view,
28 virtual void after(Program& program, Matrix& model, Matrix& view,
DPerspectiveProgram.cpp32 void PerspectiveProgram::before(Matrix& model, Matrix& view, Matrix& projection) { in before() argument
33 Program::before(model, view, projection); in before()
DTexturedMeshNode.cpp21 void TexturedMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in before() argument
39 void TexturedMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in after() argument
DPerspectiveProgram.h28 virtual void before(Matrix& model, Matrix& view, Matrix& projection);
/cts/hostsidetests/atrace/src/android/atrace/cts/
DAtraceHostTest.java38 import trebuchet.model.Counter;
39 import trebuchet.model.CounterValue;
40 import trebuchet.model.Model;
41 import trebuchet.model.ProcessModel;
42 import trebuchet.model.ThreadModel;
43 import trebuchet.model.base.Slice;
44 import trebuchet.model.fragments.AsyncSlice;
150 private static ThreadModel findThread(Model model, int id) { in findThread() argument
151 for (ProcessModel process : model.getProcesses().values()) { in findThread()
161 private static ProcessModel findProcess(Model model, int id) { in findProcess() argument
[all …]
DTraceResult.java19 import trebuchet.model.Model;
25 public TraceResult(PidTidPair pidTidPair, Model model) { in TraceResult() argument
26 mModel = model; in TraceResult()
/cts/tests/openglperf2/jni/reference/scene/flocking/
DWaterMeshNode.cpp23 void WaterMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in before() argument
49 prog.mMVMatrix.multiply(view, model); in before()
68 void WaterMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in after() argument
DWaterMeshNode.h28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
/cts/tests/openglperf2/jni/reference/scene/glowing/
DBlurMeshNode.h28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
DBlurMeshNode.cpp23 void BlurMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in before() argument
55 void BlurMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { in after() argument
/cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/
DAbstractContentCaptureIntegrationActivityLessTest.java20 import org.junit.runners.model.Statement;
/cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
DDeviceJUnit4ClassRunnerWithParameters.java34 import org.junit.runners.model.FrameworkMethod;
35 import org.junit.runners.model.InitializationError;
/cts/tests/tests/uirendering27/src/android/uirendering/cts/testinfrastructure/
DTracer.java23 import org.junit.runners.model.Statement;
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DTracer.java23 import org.junit.runners.model.Statement;

1234