Searched defs:Program (Results 26 - 47 of 47) sorted by relevance

12

/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp4 * drawElements Quality Program OpenGL ES Utilities
23 * \brief Shader and Program helpers.
58 * \brief Program information (link status, log).
101 * \brief Program object.
103 class Program class in namespace:glu
106 Program (const RenderContext& renderCtx);
107 Program (const RenderContext& renderCtx, deUint32 program);
108 ~Program (void);
132 Program (const Program
[all...]
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp221 /// @param Program This is either an absolute path, relative path, or simple a
226 static std::string FindProgram(const std::string &Program, argument
243 Program.c_str(),
328 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n';
338 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n'
489 // Program is loading user32.dll, in the applications we are testing,
/external/chromium_org/gpu/command_buffer/service/
H A Dprogram_manager.h32 class GPU_EXPORT Program : public base::RefCounted<Program> { class in namespace:gpu::gles2
99 Program(ProgramManager* manager, GLuint service_id);
231 friend class base::RefCounted<Program>;
234 ~Program();
320 // The program this Program is tracking.
367 Program* CreateProgram(GLuint client_id, GLuint service_id);
370 Program* GetProgram(GLuint client_id);
379 void MarkAsDeleted(ShaderManager* shader_manager, Program* program);
382 void UseProgram(Program* progra
[all...]
H A Dprogram_manager.cc121 Program::UniformInfo::UniformInfo()
128 Program::UniformInfo::UniformInfo(GLsizei _size,
201 Program::UniformInfo::~UniformInfo() {}
209 Program::Program( function in class:gpu::gles2::Program
224 void Program::Reset() {
236 std::string Program::ProcessLogInfo(
259 void Program::UpdateLogInfo() {
275 void Program::ClearUniforms(
371 void Program
[all...]
/external/deqp/modules/egl/
H A DteglImageFormatTests.cpp2 * drawElements Quality Program EGL Module
62 // \todo [2013-04-09 pyry] Use glu::Program
63 class Program class in namespace:deqp::egl::__anon19830
66 Program (const char* vertexSource, const char* fragmentSource) function in class:deqp::egl::__anon19830::Program
119 ~Program (void)
756 Program program(vertexShader, fragmentShader);
876 Program program(vertexShader, fragmentShader);
1159 Program program(vertexShader, fragmentShader);
H A DteglRenderTests.cpp2 * drawElements Quality Program EGL Module
404 rr::Program(static_cast<const rr::VertexShader*>(&shader), static_cast<const rr::FragmentShader*>(&shader)),
415 class Program class in namespace:deqp::egl::__anon19839
418 Program (void) {} function in class:deqp::egl::__anon19839::Program
419 virtual ~Program (void) {}
424 typedef de::SharedPtr<Program> ProgramSp;
482 class GLES2Program : public Program
523 GLU_CHECK_MSG("Program setup failed");
545 void drawGLES2 (const Program& program, const DrawPrimitiveOp& drawOp)
613 Program* createProgra
[all...]
H A DteglGLES2SharingThreadedTests.cpp2 * drawElements Quality Program EGL Module
77 class Program;
97 SharedPtr<Program> popProgram (int index);
98 const SharedPtr<Program> getProgram (int index) const { return m_programs[index]; }
99 void addProgram (SharedPtr<Program> program) { m_programs.push_back(program); }
106 std::vector<SharedPtr<Program> > m_programs;
136 SharedPtr<Program> GLES2ResourceManager::popProgram (int index)
138 SharedPtr<Program> program = m_programs[index];
1456 class Program : public Object class in namespace:deqp::egl::GLES2ThreadTest
1459 Program (SharedPt
1472 Program::Program (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync) function in class:deqp::egl::GLES2ThreadTest::Program
[all...]
/external/deqp/modules/glshared/
H A DglsLongStressCase.cpp2 * drawElements Quality Program OpenGL (ES) Module
680 class Program class
683 Program (void);
684 ~Program (void);
695 Program (const Program&); // Not allowed.
696 Program& operator= (const Program&); // Not allowed.
708 Program::Program (voi function in class:deqp::gls::LongStressCaseInternal::Program
[all...]
H A DglsTextureTestUtil.hpp4 * drawElements Quality Program OpenGL (ES) Module
127 enum Program enum in namespace:deqp::gls::TextureTestUtil
195 glu::ShaderProgram* getProgram (Program program);
206 std::map<Program, glu::ShaderProgram*> m_programs;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_context.h228 GLuint Program[I915_PROGRAM_SIZE]; member in struct:i915_hw_state
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp407 const char Program[] = local
411 EXPECT_TRUE(matches(Program,
414 EXPECT_TRUE(matches(Program,
419 EXPECT_TRUE(matches(Program,
425 EXPECT_TRUE(matches(Program,
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_context.h228 GLuint Program[I915_PROGRAM_SIZE]; member in struct:i915_hw_state
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorTimelineAgent.cpp81 static const char Program[] = "Program"; member in namespace:blink::TimelineRecordType
911 pushCurrentRecord(JSONObject::create(), TimelineRecordType::Program, false, 0); member in class:blink::TimelineRecordType
916 didCompleteCurrentRecord(TimelineRecordType::Program);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineModel.js43 Program: "Program",
H A DTracingTimelineModel.js26 Program: "Program",
378 // before end of top-level event (presumably, a "Program"), pretend the
435 if (record.type() === WebInspector.TracingTimelineModel.RecordType.Program)
/external/chromium_org/third_party/mesa/src/include/CL/
H A Dcl.hpp105 * cl::Program::Sources source(1,
107 * cl::Program program_ = cl::Program(context, source);
199 class Program;
888 F(cl_kernel_info, CL_KERNEL_PROGRAM, cl::Program) \
2204 class Program;
2292 inline Kernel(const Program& program, const char* name, cl_int* err = NULL);
2383 /*! \class Program
2384 * \brief Program interface that implements cl_program.
2386 class Program class in namespace:cl
2392 Program( function in class:cl::Program
2417 Program( function in class:cl::Program
2447 Program() { } function in class:cl::Program
2449 Program(const Program& program) : detail::Wrapper<cl_type>(program) { } function in class:cl::Program
[all...]
/external/mesa3d/include/CL/
H A Dcl.hpp105 * cl::Program::Sources source(1,
107 * cl::Program program_ = cl::Program(context, source);
199 class Program;
888 F(cl_kernel_info, CL_KERNEL_PROGRAM, cl::Program) \
2204 class Program;
2292 inline Kernel(const Program& program, const char* name, cl_int* err = NULL);
2383 /*! \class Program
2384 * \brief Program interface that implements cl_program.
2386 class Program class in namespace:cl
2392 Program( function in class:cl::Program
2417 Program( function in class:cl::Program
2447 Program() { } function in class:cl::Program
2449 Program(const Program& program) : detail::Wrapper<cl_type>(program) { } function in class:cl::Program
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h2071 /** Program to emulate fixed-function T&L (see above) */
2121 /** Program to emulate fixed-function texture env/combine (see above) */
2194 struct gl_program *Program; /**< Post-compile assembly code */ member in struct:gl_shader
2443 * Program used by glUniform calls.
3494 struct gl_program_state Program; /**< general program state */ member in struct:gl_context
/external/mesa3d/src/mesa/main/
H A Dmtypes.h2071 /** Program to emulate fixed-function T&L (see above) */
2121 /** Program to emulate fixed-function texture env/combine (see above) */
2194 struct gl_program *Program; /**< Post-compile assembly code */ member in struct:gl_shader
2443 * Program used by glUniform calls.
3494 struct gl_program_state Program; /**< general program state */ member in struct:gl_context
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 623 milliseconds

12