| /external/webkit/Source/WebKit2/UIProcess/Launcher/qt/ | 
| ProcessLauncherQt.cpp | 123     QString program(applicationPath.arg(sockets[0])); 127     webProcess->start(program);
 139         qDebug() << "Failed to start" << program;
 
 | 
| /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/ | 
| tst_qscriptengine.cpp | 280         QScriptProgram program(code, fileName, lineNumber); 281         QVERIFY(!program.isNull());
 282         QCOMPARE(program.sourceCode(), code);
 283         QCOMPARE(program.fileName(), fileName);
 284         QCOMPARE(program.firstLineNumber(), lineNumber);
 288             QScriptValue ret = eng.evaluate(program);
 293         QScriptProgram sameProgram = program;
 294         QVERIFY(sameProgram == program);
 298         QScriptProgram sameProgram2(program);
 299         QVERIFY(sameProgram2 == program);
 366  QScriptProgram program;  local
 [all...]
 | 
| /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ | 
| libGLESv2.cpp | 25 #include "libGLESv2/Program.h" 57 void __stdcall glAttachShader(GLuint program, GLuint shader)
 59     TRACE("(GLuint program = %d, GLuint shader = %d)", program, shader);
 67             gl::Program *programObject = context->getProgram(program);
 72                 if (context->getShader(program))
 106 void __stdcall glBindAttribLocation(GLuint program, GLuint index, const GLchar* name)
 108     TRACE("(GLuint program = %d, GLuint index = %d, const GLchar* name = 0x%0.8p)", program, index, name)
 4864  gl::Program *program = context->getCurrentProgram();  local
 4908  gl::Program *program = context->getCurrentProgram();  local
 4954  gl::Program *program = context->getCurrentProgram();  local
 5000  gl::Program *program = context->getCurrentProgram();  local
 5046  gl::Program *program = context->getCurrentProgram();  local
 5092  gl::Program *program = context->getCurrentProgram();  local
 5138  gl::Program *program = context->getCurrentProgram();  local
 5184  gl::Program *program = context->getCurrentProgram();  local
 5224  gl::Program *program = context->getCurrentProgram();  local
 5264  gl::Program *program = context->getCurrentProgram();  local
 5304  gl::Program *program = context->getCurrentProgram();  local
 [all...]
 | 
| /external/mesa3d/docs/OLD/ | 
| MESA_program_debug.spec | 38     The concept is that vertex and fragment program debuggers will be 45     2. Query the current program string's execution position.
 46     3. Query the current values of intermediate program values.
 50     be called prior to executing each vertex or fragment program instruction.
 54     current program values to be queried (such as temporaries, input
 57     There are flags for enabling/disabling the program callbacks.
 60     program string) can be queried with
 108     6. Debuggers often allow one to modify intermediate program values,
 177     vertex program, respectively.  The callbacks are enabled and
 187     program is currently executing and <data> will be the valu
 [all...]
 | 
| /external/protobuf/src/google/protobuf/compiler/ | 
| subprocess.h | 62     EXACT_NAME     // Program is an exact file name; don't use the PATH. 67   void Start(const string& program, SearchMode search_mode);
 
 | 
| /external/v8/src/ | 
| prettyprinter.h | 46   const char* PrintExpression(FunctionLiteral* program); 47   const char* PrintProgram(FunctionLiteral* program);
 86   const char* PrintProgram(FunctionLiteral* program);
 139   const char* BuildProgram(FunctionLiteral* program);
 
 | 
| /external/valgrind/main/drd/tests/ | 
| atomic_var.c | 2  * This test program triggers a single race condition on variable s_y. 22 #error Sorry, but this test program can only be compiled by a compiler that\
 
 | 
| /external/webkit/Source/WebCore/platform/graphics/chromium/ | 
| ProgramBinding.h | 44     unsigned program() const { return m_program; }  function in class:WebCore::ProgramBindingBase 
 | 
| /external/webkit/Source/WebCore/platform/graphics/gpu/ | 
| Shader.h | 65     Shader(GraphicsContext3D*, unsigned program); 
 | 
| /external/webkit/Source/WebKit/chromium/public/ | 
| WebGraphicsContext3D.h | 60 // Typedef for server-side objects like OpenGL textures and program objects. 181     virtual void attachShader(WebGLId program, WebGLId shader) = 0;
 182     virtual void bindAttribLocation(WebGLId program, WGC3Duint index, const WGC3Dchar* name) = 0;
 210     virtual void detachShader(WebGLId program, WebGLId shader) = 0;
 225     virtual bool getActiveAttrib(WebGLId program, WGC3Duint index, ActiveInfo&) = 0;
 226     virtual bool getActiveUniform(WebGLId program, WGC3Duint index, ActiveInfo&) = 0;
 227     virtual void getAttachedShaders(WebGLId program, WGC3Dsizei maxCount, WGC3Dsizei* count, WebGLId* shaders) = 0;
 228     virtual WGC3Dint getAttribLocation(WebGLId program, const WGC3Dchar* name) = 0;
 236     virtual void getProgramiv(WebGLId program, WGC3Denum pname, WGC3Dint* value) = 0;
 237     virtual WebString getProgramInfoLog(WebGLId program) = 0
 [all...]
 | 
| /frameworks/base/opengl/libs/GLES2_dbg/src/ | 
| dbgcontext.cpp | 41         , program(0), maxAttrib(0) 242 void DbgContext::glUseProgram(GLuint program)
 246              program, error);
 247     this->program = program;
 249     if (program == 0)
 252     hooks->gl.glGetProgramiv(program, GL_ACTIVE_ATTRIBUTES, &activeAttributes);
 255     hooks->gl.glGetProgramiv(program, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &maxNameLen);
 262         hooks->gl.glGetActiveAttrib(program, i, maxNameLen + 1, NULL, &size, &type, name);
 263         GLint slot = hooks->gl.glGetAttribLocation(program, name)
 [all...]
 | 
| /frameworks/base/opengl/tests/gl2_copyTexImage/ | 
| gl2_copyTexImage.cpp | 113     GLuint program = glCreateProgram();  local 114     if (program) {
 115         glAttachShader(program, vertexShader);
 117         glAttachShader(program, pixelShader);
 119         glLinkProgram(program);
 121         glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
 124             glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
 128                     glGetProgramInfoLog(program, bufLength, NULL, buf);
 129                     fprintf(stderr, "Could not link program:\n%s\n", buf);
 133             glDeleteProgram(program);
 [all...]
 | 
| /frameworks/base/opengl/tests/gl2_yuvtex/ | 
| gl2_yuvtex.cpp | 129     GLuint program = glCreateProgram();  local 130     if (program) {
 131         glAttachShader(program, vertexShader);
 133         glAttachShader(program, pixelShader);
 135         glLinkProgram(program);
 137         glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
 140             glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
 144                     glGetProgramInfoLog(program, bufLength, NULL, buf);
 145                     fprintf(stderr, "Could not link program:\n%s\n", buf);
 149             glDeleteProgram(program);
 [all...]
 | 
| /dalvik/vm/mterp/x86-atom/ | 
| zcmp.S | 52     addl        $$4, rPC                # update the program counter 
 | 
| /development/tools/emulator/system/libqemu/ | 
| tests.mk | 3 # The first test program is a simple TCP server that will send back 
 | 
| /external/bison/lib/ | 
| subpipe.c | 5    This program is free software; you can redistribute it and/or modify 10    This program is distributed in the hope that it will be useful,
 16    along with this program; if not, write to the Free Software Foundation,
 158 reap_subpipe (pid_t pid, char const *program)
 171 		 ? "subsidiary program `%s' could not be invoked"
 173 		 ? "subsidiary program `%s' not found"
 175 		 ? "subsidiary program `%s' failed"
 176 		 : "subsidiary program `%s' failed (exit status %d)"),
 177 	       program, status);
 
 | 
| /external/valgrind/main/memcheck/tests/ | 
| supp_unknown.stderr.exp | 7  overflow in your program's main thread (unlikely but 
 | 
| /external/valgrind/main/none/tests/linux/ | 
| blockfault.stderr.exp | 7  overflow in your program's main thread (unlikely but 
 | 
| /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptengine/ | 
| tst_qscriptengine.cpp | 94     QScriptProgram program(code); 96         engine.evaluate(program);
 
 | 
| /frameworks/base/libs/rs/driver/ | 
| rsdShaderCache.cpp | 128             //LOGV("SC using program %i", mEntries[ct]->program); 129             glUseProgram(mEntries[ct]->program);
 146     e->program = glCreateProgram();
 147     if (e->program) {
 148         GLuint pgm = e->program;
 170                     LOGE("Could not link program:\n%s\n", buf);
 232     //LOGV("SC made program %i", e->program);
 233     glUseProgram(e->program);
 [all...]
 | 
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ | 
| bootparam_prot.x | 7  * media and as a part of the software program in whole or part.  Users 10  * program developed by the user.
 92 program BOOTPARAMPROG {
 
 | 
| rstat.x | 7  * media and as a part of the software program in whole or part.  Users 10  * program developed by the user.
 114 program RSTATPROG {
 
 | 
| /sdk/emulator/qtools/ | 
| profile_pid.cpp | 36 void Usage(const char *program) 38   fprintf(stderr, "Usage: %s [options] trace_file\n", program);
 
 | 
| q2g.cpp | 26 void Usage(const char *program) 29           program);
 
 | 
| /sdk/emulator/tests/ | 
| Android.mk | 6 # The test-qemud-pipes program is used to check the execution of QEMUD Pipes 
 |