| /external/mesa3d/include/GLES2/ | 
| gl2ext.h | 430 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); 431 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
 433 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
 434 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
 [all...]
 | 
| /external/webkit/Source/ThirdParty/ANGLE/include/GLES2/ | 
| gl2ext.h | 441 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); 442 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
 444 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
 445 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
 [all...]
 | 
| /frameworks/base/opengl/include/GLES2/ | 
| gl2ext.h | 438 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); 439 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
 441 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
 442 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
 [all...]
 | 
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ | 
| nlm_prot.x | 142 program NLM_PROG { 
 | 
| rex.x | 7  * media and as a part of the software program in whole or part.  Users 10  * program developed by the user.
 196 program REXPROG {
 
 | 
| rusers.x | 4  * media and as a part of the software program in whole or part.  Users 7  * program developed by the user.
 66 program RUSERSPROG {
 
 | 
| /sdk/emulator/qtools/ | 
| check_stack.cpp | 78 void Usage(const char *program) 81             program);
 
 | 
| q2dm.cpp | 125 void Usage(const char *program) 128             program);
 
 | 
| /external/llvm/utils/ | 
| llvmbuild | 432                                  "--program-prefix=llvm-", 438                                    "--program-prefix=llvm-",
 445                                     "--program-prefix=llvm-",
 692         program = srcdir + "/configure"
 693         if not is_executable(program):
 696         args = [program]
 702         program = find_executable("make")
 703         if program is None:
 706         if not is_executable(program):
 709         args = [program]
 [all...]
 | 
| /external/dnsmasq/contrib/dnslist/ | 
| dnslist.pl | 8 # This program is free software; you can redistribute it and/or modify 13 # This program is distributed in the hope that it will be useful,
 19 # along with this program*; if not, write to the Free Software
 284 Foundation's software and to any other program whose authors commit to
 301   For example, if you distribute copies of such a program, whether
 318   Finally, any free program is threatened constantly by software
 320 program will individually obtain patent licenses, in effect making the
 321 program proprietary.  To prevent this, we have made it clear that any
 330   0. This License applies to any program or other work which contains
 332 under the terms of this General Public License.  The "Program", below
 [all...]
 | 
| /external/webkit/Source/WebCore/platform/graphics/ | 
| GraphicsContext3D.h | 614     void attachShader(Platform3DObject program, Platform3DObject shader); 662     bool getActiveAttrib(Platform3DObject program, GC3Duint index, ActiveInfo&);
 663     bool getActiveUniform(Platform3DObject program, GC3Duint index, ActiveInfo&);
 664     void getAttachedShaders(Platform3DObject program, GC3Dsizei maxCount, GC3Dsizei* count, Platform3DObject* shaders);
 673     void getProgramiv(Platform3DObject program, GC3Denum pname, GC3Dint* value);
 686     void getUniformfv(Platform3DObject program, GC3Dint location, GC3Dfloat* value);
 687     void getUniformiv(Platform3DObject program, GC3Dint location, GC3Dint* value);
 [all...]
 | 
| /external/bison/data/ | 
| glr.cc | 6 # This program is free software; you can redistribute it and/or modify 11 # This program is distributed in the hope that it will be useful,
 17 # along with this program; if not, write to the Free Software
 
 | 
| /external/webkit/Source/JavaScriptCore/runtime/ | 
| Executable.cpp | 348     RefPtr<ProgramNode> program = exec->globalData().parser->parse<ProgramNode>(lexicalGlobalObject, debugger, exec, source, 0, JSParseNormal, exception);  local 349     if (!program) {
 355     StatementNode* exprStatement = program->singleStatement();
 
 | 
| /external/webkit/Source/WebKit/chromium/src/ | 
| GraphicsContext3DChromium.cpp | 428 void GraphicsContext3DInternal::bindAttribLocation(Platform3DObject program, GC3Duint index, const String& name) 430     m_impl->bindAttribLocation(program, index, name.utf8().data());
 487 bool GraphicsContext3DInternal::getActiveAttrib(Platform3DObject program, GC3Duint index, ActiveInfo& info)
 490     if (!m_impl->getActiveAttrib(program, index, webInfo))
 498 bool GraphicsContext3DInternal::getActiveUniform(Platform3DObject program, GC3Duint index, ActiveInfo& info)
 501     if (!m_impl->getActiveUniform(program, index, webInfo))
 511 GC3Dint GraphicsContext3DInternal::getAttribLocation(Platform3DObject program, const String& name)
 513     return m_impl->getAttribLocation(program, name.utf8().data());
 542 String GraphicsContext3DInternal::getProgramInfoLog(Platform3DObject program)
 544     return m_impl->getProgramInfoLog(program);
 [all...]
 | 
| /external/libpng/ | 
| configure | 45 # Prefer a ksh shell builtin over an external printf program on Solaris, 1141   -program-prefix | --program-prefix | --program-prefi | --program-pref \
 1142   | --program-pre | --program-pr | --program-p)
 1144   -program-prefix=* | --program-prefix=* | --program-prefi=*
 [all...]
 | 
| /bionic/libc/tools/ | 
| checksyscalls.py | 26     program = args[0] 44             print "Please specify one when calling this program, i.e. 'checksyscalls <headers-directory>'"
 
 | 
| /development/ndk/platforms/android-5/include/GLES2/ | 
| gl2ext.h | 285 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 286 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
 288 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary);
 289 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
 
 | 
| /development/tools/glesv2debugger/ | 
| generate_MessageFormatter_java.py | 122     nameReplaces = ["program", "shader", "texture", "buffer", "framebuffer", "renderbuffer"] 
 | 
| /external/grub/util/ | 
| mkbimage | 7 # This program is free software; you can redistribute it and/or modify 12 # This program is distributed in the hope that it will be useful,
 18 # along with this program; if not, you can either send email to this
 19 # program's maintainer or write to: The Free Software Foundation,
 60 program=`echo "$0" | sed -e 's/[^\/]*\///g'`
 64 Usage: $program [-hVF] [-t TYPE] [-d DIRECTORY] [-s FS_TYPE] -f TAR_FILE
 201 #                          MAIN PROGRAM                               *
 
 | 
| /external/iptables/iptables/ | 
| iptables-apply | 28 	The program has been published under the terms of the Artistic Licence 2.0 
 | 
| /external/llvm/utils/crosstool/ARM/ | 
| build-install-linux.sh | 179       --program-prefix=llvm- \ 
 | 
| /external/mesa3d/src/glsl/builtins/tools/ | 
| generate_builtins.py | 134 #include "program.h" 
 | 
| /external/valgrind/main/drd/tests/ | 
| circular_buffer.c | 1 /* Test program that performs producer-consumer style communication through 2  * a circular buffer. This test program is a slightly modified version of the
 3  * test program made available by Miguel Ojeda
 22 #error Sorry, but this test program can only be compiled by a compiler that\
 
 | 
| /ndk/sources/host-tools/sed-4.2.1/build-aux/ | 
| texi2dvi | 7 # This program is free software; you can redistribute it and/or modify 12 # This program is distributed in the hope that it will be useful,
 18 # along with this program; if not, you can either send email to this
 19 # program's maintainer or write to: The Free Software Foundation,
 28 program=`echo $0 | sed -e 's!.*/!!'`
 36 usage="Usage: $program [OPTION]... FILE...
 
 | 
| /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/GLES2/ | 
| gl2ext.h | 285 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 286 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
 288 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary);
 289 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
 
 |