HomeSort by relevance Sort by last modified time
    Searched refs:program (Results 151 - 175 of 739) sorted by null

1 2 3 4 5 67 8 91011>>

  /device/generic/goldfish/opengl/system/GLESv2_enc/
GL2EncoderUtils.h 22 GLenum uniformType(void * self, GLuint program, GLint location);
  /external/clang/utils/
CaptureCmd 4 invocations of another program.
36 program = os.getenv('CAPTURE_CMD_PROGRAM')
39 if not program:
60 os.execv(program, sys.argv)
69 os.execv(program, sys.argv)
  /external/webkit/Source/WebCore/html/canvas/
WebGLUniformLocation.h 44 WebGLProgram* program() const;
  /frameworks/native/opengl/tests/gl_perf/
fill_common.cpp 76 GLuint program = glCreateProgram(); local
77 if (program) {
78 glAttachShader(program, vertexShader);
80 glAttachShader(program, pixelShader);
83 glBindAttribLocation(program, A_POS, "a_pos");
84 glBindAttribLocation(program, A_COLOR, "a_color");
85 glBindAttribLocation(program, A_TEX0, "a_tex0");
86 glBindAttribLocation(program, A_TEX1, "a_tex1");
87 glLinkProgram(program);
89 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus)
    [all...]
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.cpp 75 GLuint program = 0; local
86 program = glCreateProgram();
87 if (!program) {
91 glAttachShader(program, vtxShader);
92 glAttachShader(program, fragShader);
94 glLinkProgram(program);
95 glGetProgramiv(program, GL_LINK_STATUS, &linked);
97 ALOGE("Could not link program");
99 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &infoLogLen);
103 glGetProgramInfoLog(program, infoLogLen, NULL, infoLog)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t017parser.py 28 parser.program()
38 parser.program()
50 parser.program()
t046rewrite.py 27 parser.program()
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine.h 45 static QScriptSyntaxCheckResult checkSyntax(const QString& program);
46 QScriptValue evaluate(const QString& program, const QString& fileName = QString(), int lineNumber = 1);
47 QScriptValue evaluate(const QScriptProgram& program);
qscriptprogram_p.h 38 inline static QScriptProgramPrivate* get(const QScriptProgram& program);
64 QScriptProgramPrivate* QScriptProgramPrivate::get(const QScriptProgram& program)
66 return const_cast<QScriptProgramPrivate*>(program.d_ptr.constData());
  /external/webkit/Tools/MiniBrowser/qt/
MiniBrowserApplication.cpp 51 QFileInfo program(args.at(0));
53 if (program.exists())
54 programName = program.baseName();
  /external/ceres-solver/internal/ceres/
solver_impl_test.cc 37 #include "ceres/program.h"
96 Program program(*problem.mutable_program());
97 EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
101 EXPECT_EQ(program.NumParameterBlocks(), 3);
102 EXPECT_EQ(program.NumResidualBlocks(), 3);
118 Program program(problem.program());
120 EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
301 Program* program = problem.mutable_program(); local
483 Program* program = problem.mutable_program(); local
    [all...]
block_jacobian_writer.cc 36 #include "ceres/program.h"
47 // per-parameter jacobian goes where in the overall program jacobian.
56 void BuildJacobianLayout(const Program& program,
60 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks();
90 jacobian_layout->resize(program.NumResidualBlocks());
124 Program* program)
125 : program_(program) {
129 BuildJacobianLayout(*program,
    [all...]
program.h 47 // adding and modifying parameters and residuals. The Program contains the core
51 // objective function. Various parts of Ceres transform one Program into
55 class Program {
57 Program();
58 explicit Program(const Program& program);
60 // The ordered parameter and residual blocks for the program.
66 // Serialize to/from the program and update states.
83 // Update a state vector for the program given a delta
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
FunctionConstructor.cpp 80 UString program; local
82 program = "(function() { \n})";
84 program = makeUString("(function() { ", args.at(0).toString(exec), "\n})");
96 program = builder.toUString();
100 SourceCode source = makeSource(program, sourceURL, lineNumber);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetActiveUniformBlockName.cpp 1 /* void glGetActiveUniformBlockName ( GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName ) */
4 (JNIEnv* _env, jobject _this, jint program, jint uniformBlockIndex, int bufSize, jintArray length_ref, jint lengthOffset, jbyteArray name_ref, jint nameOffset) {
50 (GLuint)program,
71 /* void glGetActiveUniformBlockName ( GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName ) */
74 (JNIEnv* _env, jobject _this, jint program, jint uniformBlockIndex, jobject length_buf, jobject uniformBlockName_buf) {
100 (GLuint)program,
113 /* void glGetActiveUniformBlockName ( GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName ) */
116 (JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex) {
118 glGetActiveUniformBlockiv((GLuint)program, (GLuint)uniformBlockIndex,
121 glGetActiveUniformBlockName((GLuint)program, (GLuint)uniformBlockIndex
    [all...]
  /cts/tests/src/android/opengl/cts/
EglConfigGLSurfaceView.java 140 throw new RuntimeException("Could not create program");
172 int program = GLES20.glCreateProgram(); local
173 if (program != 0) {
174 GLES20.glAttachShader(program, vertexShader);
176 GLES20.glAttachShader(program, pixelShader);
178 GLES20.glLinkProgram(program);
180 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
182 Log.e(TAG, "Could not link program: ");
183 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
184 GLES20.glDeleteProgram(program);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
TextureRender.java 139 throw new RuntimeException("failed creating program");
190 throw new RuntimeException("failed creating program");
220 int program = GLES20.glCreateProgram(); local
222 if (program == 0) {
223 Log.e(TAG, "Could not create program");
225 GLES20.glAttachShader(program, vertexShader);
227 GLES20.glAttachShader(program, pixelShader);
229 GLES20.glLinkProgram(program);
231 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
233 Log.e(TAG, "Could not link program: ")
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureRenderer.java 271 int program = GLES20.glCreateProgram(); local
272 if (program != 0) {
273 GLES20.glAttachShader(program, vertexShader);
275 GLES20.glAttachShader(program, pixelShader);
277 GLES20.glLinkProgram(program);
279 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
281 Log.e(TAG, "Could not link program: ");
282 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
283 GLES20.glDeleteProgram(program);
284 program = 0
    [all...]
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 250 int program = GLES20.glCreateProgram(); local
251 if (program != 0) {
252 GLES20.glAttachShader(program, vertexShader);
254 GLES20.glAttachShader(program, pixelShader);
256 GLES20.glLinkProgram(program);
258 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
260 Log.e(TAG, "Could not link program: ");
261 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
262 GLES20.glDeleteProgram(program);
263 program = 0
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
GLES20TriangleRenderer.java 185 int program = GLES20.glCreateProgram(); local
186 if (program != 0) {
187 GLES20.glAttachShader(program, vertexShader);
189 GLES20.glAttachShader(program, pixelShader);
191 GLES20.glLinkProgram(program);
193 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
195 Log.e(TAG, "Could not link program: ");
196 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
197 GLES20.glDeleteProgram(program);
198 program = 0
    [all...]
  /development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
GLES20TriangleRenderer.java 183 int program = GLES20.glCreateProgram(); local
184 if (program != 0) {
185 GLES20.glAttachShader(program, vertexShader);
187 GLES20.glAttachShader(program, pixelShader);
189 GLES20.glLinkProgram(program);
191 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
193 Log.e(TAG, "Could not link program: ");
194 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
195 GLES20.glDeleteProgram(program);
196 program = 0
    [all...]
  /frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
TestLatencyView.java 197 int program = GLES20.glCreateProgram(); local
198 if (program != 0) {
199 GLES20.glAttachShader(program, vertexShader);
201 GLES20.glAttachShader(program, pixelShader);
203 GLES20.glLinkProgram(program);
205 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
207 Log.e(TAG, "Could not link program: ");
208 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
209 GLES20.glDeleteProgram(program);
210 program = 0
    [all...]
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
SurfaceTextureView.java 69 int program = GLES20.glCreateProgram(); local
70 if (program != 0) {
71 GLES20.glAttachShader(program, vertexShader);
73 GLES20.glAttachShader(program, pixelShader);
75 GLES20.glLinkProgram(program);
77 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
79 Log.e(TAG, "Could not link program: ");
80 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
81 GLES20.glDeleteProgram(program);
82 program = 0
    [all...]
  /device/generic/goldfish/qemu-props/
Android.mk 15 # this file is used to build emulator-specific program tools
21 # The 'qemu-props' program is run from /system/etc/init.goldfish.rc
22 # to setup various system properties sent by the emulator program.
  /external/v8/src/
prettyprinter.h 47 const char* PrintExpression(FunctionLiteral* program);
48 const char* PrintProgram(FunctionLiteral* program);
86 const char* PrintProgram(FunctionLiteral* program);

Completed in 678 milliseconds

1 2 3 4 5 67 8 91011>>