Searched defs:Program (Results 1 - 25 of 47) sorted by path

12

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
H A DProgram.cs7 internal class Program class in namespace:Antlr3.Runtime.Test.Composition
/external/ceres-solver/internal/ceres/
H A Dprogram.cc53 Program::Program() {} function in class:ceres::internal::Program
55 Program::Program(const Program& program) function in class:ceres::internal::Program
60 const vector<ParameterBlock*>& Program::parameter_blocks() const {
64 const vector<ResidualBlock*>& Program::residual_blocks() const {
68 vector<ParameterBlock*>* Program::mutable_parameter_blocks() {
72 vector<ResidualBlock*>* Program::mutable_residual_blocks() {
76 bool Program
[all...]
H A Dprogram.h49 // adding and modifying parameters and residuals. The Program contains the core
53 // objective function. Various parts of Ceres transform one Program into
57 class Program { class in namespace:ceres::internal
59 Program();
60 explicit Program(const Program& program);
145 Program* CreateReducedProgram(vector<double*>* removed_parameter_blocks,
181 // The Program does not own the ParameterBlock or ResidualBlock objects.
/external/chromium_org/gpu/command_buffer/client/
H A Dprogram_info_manager.cc146 class Program { class in class:gpu::gles2::CachedProgramInfoManager
174 Program();
217 Program* GetProgramInfo(GLES2Implementation* gl, GLuint program);
220 typedef std::map<GLuint, Program> ProgramInfoMap;
227 CachedProgramInfoManager::Program::UniformInfo::UniformInfo(
236 CachedProgramInfoManager::Program::Program() function in class:gpu::gles2::CachedProgramInfoManager::Program
244 GLint CachedProgramInfoManager::Program::GetAttribLocation(
255 GLint CachedProgramInfoManager::Program::GetUniformLocation(
284 bool CachedProgramInfoManager::Program
[all...]
/external/chromium_org/gpu/command_buffer/service/
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...]
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...]
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dcodegen_unittest.cc24 typedef SandboxBPF::Program Program; typedef in class:sandbox::SandboxUnittestHelper
500 SandboxUnittestHelper::Program bpf;
H A Dsandbox_bpf.h52 typedef std::vector<struct sock_filter> Program; typedef in class:sandbox::SandboxBPF
179 Program* AssembleFilter(bool force_verification);
264 void VerifyProgram(const Program& program, bool has_unsafe_traps);
/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/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DProgram.cpp7 // Program.cpp: Implements the gl::Program class. Implements GL program objects
10 #include "libGLESv2/Program.h"
139 Program::Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle) : mResourceManager(manager), mHandle(handle) function in class:gl::Program
152 Program::~Program()
167 bool Program::attachShader(Shader *shader)
194 bool Program::detachShader(Shader *shader)
221 int Program
[all...]
H A DProgram.h7 // Program.h: Defines the gl::Program class. Implements GL program objects
67 class Program class in namespace:gl
70 Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle);
72 ~Program();
121 DISALLOW_COPY_AND_ASSIGN(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/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.cpp281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx)
295 Program *prog = pol.context()->getProgram();
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval)
332 ImmediateValue::ImmediateValue(Program *prog, float fval)
345 ImmediateValue::ImmediateValue(Program *prog, double dval)
369 Program *prog = pol.context()->getProgram();
995 Program::Program(Type type, Target *arch) function in class:nv50_ir::Program
1020 Program::~Program()
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler.h46 struct rc_program Program; member in struct:radeon_compiler
/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/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/chromium_org/tools/stats_viewer/
H A Dprogram.cs10 static class Program class in namespace:StatsViewer
/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/deqp/framework/opengl/
H A DgluShaderProgram.cpp2 * drawElements Quality Program OpenGL ES Utilities
110 // Program
141 Program::Program (const RenderContext& renderCtx) function in class:glu::Program
151 Program::Program (const RenderContext& renderCtx, deUint32 program) function in class:glu::Program
159 Program::~Program (void)
165 void Program::attachShader (deUint32 shader)
173 void Program
[all...]
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/deqp/framework/referencerenderer/
H A DrrRenderer.hpp4 * drawElements Quality Program Reference Renderer
60 struct Program struct in namespace:rr
62 Program (const VertexShader* vertexShader_, const FragmentShader* fragmentShader_, const GeometryShader* geometryShader_ = DE_NULL) function in struct:rr::Program
110 DrawCommand (const RenderState& state_, const RenderTarget& renderTarget_, const Program& program_, int numVertexAttribs_, const VertexAttrib* vertexAttribs_, const PrimitiveList& primitives_)
122 const Program& program;
/external/deqp/modules/egl/
H A DteglGLES2SharingTests.cpp2 * drawElements Quality Program EGL Module
63 // \todo [2013-04-09 pyry] Use glu::Program
64 class Program class in namespace:deqp::egl::__anon19826
67 Program (const char* vertexSource, const char* fragmentSource) function in class:deqp::egl::__anon19826::Program
120 ~Program (void)
396 Program program(vertexShader, fragmentShader);
573 Program program(vertexShader, fragmentShader);
675 Program* m_program;
708 m_program = new Program(vertexShader, fragmentShader);
1237 TestCaseGroup* program = new TestCaseGroup(m_eglTestCtx, "program", "Program creatio
[all...]

Completed in 1850 milliseconds

12