HomeSort by relevance Sort by last modified time
    Searched refs:program (Results 1 - 25 of 203) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/opengl/tools/glgen/stubs/gles11/
glGetProgramInfoLog.java 17 // C function void glGetProgramInfoLog( GLuint program, GLsizei maxLength, GLsizei * length,
21 int program
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
Patch.java 23 private int program; field in class:Patch
25 public Patch(int bank, int program) {
27 this.program = program;
35 return program;
VoiceStatus.java 29 public int program; field in class:VoiceStatus
MidiChannel.java 53 void programChange(int program);
55 void programChange(int bank, int program);
  /external/webkit/WebCore/html/canvas/
WebGLUniformLocation.cpp 35 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, long location)
37 return adoptRef(new WebGLUniformLocation(program, location));
40 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, long location)
41 : m_program(program)
WebGLUniformLocation.h 42 static PassRefPtr<WebGLUniformLocation> create(WebGLProgram* program, long location);
44 WebGLProgram* program() const { return m_program.get(); } function in class:WebCore::WebGLUniformLocation
49 WebGLUniformLocation(WebGLProgram* program, long location);
  /external/expat/conftools/
PrintPath 2 # Look for program[s] somewhere in $PATH.
11 # PrintPath [-s] [-pPATHNAME] program [program ...]
91 for program in $programs
95 if [ $test_exec_flag $path/${program}${ext} ] && \
96 [ ! -d $path/${program}${ext} ]; then
98 echo $path/${program}${ext}
105 if [ $test_exec_flag $path/${program} ] && \
106 [ ! -d $path/${program} ]; then
108 echo $path/${program}
    [all...]
  /bionic/libc/kernel/common/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /dalvik/vm/mterp/x86-atom/
stub.S 20 SAVE_PC_FP_TO_GLUE %edx # save program counter and frame pointer
24 LOAD_PC_FP_FROM_GLUE # restore program counter and frame pointer
  /external/webkit/JavaScriptCore/qt/api/
qscriptengine.cpp 45 Evaluates \a program, using \a lineNumber as the base line number,
50 The evaluation of \a program can cause an exception in the
57 program; line number information reported by the engine that pertain
59 based on this argument. For example, if \a program consists of two
69 QScriptValue QScriptEngine::evaluate(const QString& program, const QString& fileName, int lineNumber)
71 return QScriptValuePrivate::get(d_ptr->evaluate(program, fileName, lineNumber));
qscriptengine_p.cpp 42 Evaluates program and returns the result of the evaluation.
45 QScriptValuePrivate* QScriptEnginePrivate::evaluate(const QString& program, const QString& fileName, int lineNumber)
47 JSStringRef script = QScriptConverter::toString(program);
  /external/webkit/JavaScriptCore/runtime/
Completion.cpp 41 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source); local
42 JSObject* error = program->checkSyntax(exec);
54 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source); local
55 JSObject* error = program->compile(exec, scopeChain.node());
62 JSValue result = exec->interpreter()->execute(program.get(), exec, scopeChain.node(), thisObj, &exception);
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-6356/
loc_api_cb.xdr 77 * XDR definition of the LOC_API callback program ( vers. 0x00010001 )
80 program LOC_APICBPROG {
  /frameworks/base/opengl/tests/gl2_jni/jni/
gl_code.cpp 74 GLuint program = glCreateProgram(); local
75 if (program) {
76 glAttachShader(program, vertexShader);
78 glAttachShader(program, pixelShader);
80 glLinkProgram(program);
82 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
90 LOGE("Could not link program:\n%s\n", buf);
94 glDeleteProgram(program);
    [all...]
  /frameworks/base/opengl/tests/gldual/jni/
gl_code.cpp 74 GLuint program = glCreateProgram(); local
75 if (program) {
76 glAttachShader(program, vertexShader);
78 glAttachShader(program, pixelShader);
80 glLinkProgram(program);
82 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
90 LOGE("Could not link program:\n%s\n", buf);
94 glDeleteProgram(program);
    [all...]
  /ndk/samples/hello-gl2/jni/
gl_code.cpp 94 GLuint program = glCreateProgram(); local
95 if (program) {
96 glAttachShader(program, vertexShader);
98 glAttachShader(program, pixelShader);
100 glLinkProgram(program);
102 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
105 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
109 glGetProgramInfoLog(program, bufLength, NULL, buf);
110 LOGE("Could not link program:\n%s\n", buf);
114 glDeleteProgram(program);
    [all...]
  /sdk/emulator/qtools/
parse_options.h 28 extern void Usage(const char *program);
  /frameworks/base/opengl/tests/gl2_java/src/com/android/gl2java/
GL2JavaView.java 123 int program = GLES20.glCreateProgram(); local
124 if (program != 0) {
125 GLES20.glAttachShader(program, vertexShader);
127 GLES20.glAttachShader(program, pixelShader);
129 GLES20.glLinkProgram(program);
131 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
133 Log.e(TAG, "Could not link program: ");
134 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
135 GLES20.glDeleteProgram(program);
136 program = 0
    [all...]
  /external/bison/djgpp/
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,
172 char *program; local
179 program = strrchr(arguments[0], '/');
180 if (program)
181 program++;
183 program = arguments[0];
220 status = spawnvp(P_WAIT, program, arguments);
226 error(EXIT_FAILURE, 0, _("subsidiary program `%s' interrupted"), program)
    [all...]

Completed in 276 milliseconds

1 2 3 4 5 6 7 8 9