HomeSort by relevance Sort by last modified time
    Searched full:program (Results 226 - 250 of 16863) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/
Program.cpp 19 #include "Program.h"
25 // Base program
28 // TODO: Program instance should be created from a factory method
29 Program::Program(const ProgramDescription& description, const char* vertex, const char* fragment) {
88 Program::~Program() {
100 int Program::addAttrib(const char* name) {
106 int Program::bindAttrib(const char* name, ShaderBindings bindingSlot) {
112 int Program::getAttrib(const char* name)
    [all...]
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eleven.cpp 29 GLuint program = glCreateProgram(); local
30 glAttachShader(program, vertexShader);
36 glGetAttachedShaders(program, maxCount,
44 glDeleteProgram(program);
attach_shader_seven.cpp 29 GLuint program = glCreateProgram(); local
30 glAttachShader(program, vertexShaderOne);
31 glAttachShader(program, vertexShaderTwo);
38 glDeleteProgram(program);
attach_shader_six.cpp 29 GLuint program = glCreateProgram(); local
30 glAttachShader(program, fragmentShader);
31 glAttachShader(program, vertexShader);
37 glDeleteProgram(program);
attach_shader_ten.cpp 28 GLuint program = glCreateProgram(); local
29 glAttachShader(program, fragmentShader);
35 glGetAttachedShaders(program, maxCount,
43 glDeleteProgram(program);
attach_shader_three.cpp 35 GLuint program = glCreateProgram(); local
36 glAttachShader(program, vertexShader);
37 glAttachShader(program, vertexShader);
43 glDeleteProgram(program);
attach_shader_two.cpp 29 GLuint program = glCreateProgram(); local
31 glAttachShader(program, vertexShader);
37 glGetAttachedShaders(program, maxCount,
46 glDeleteProgram(program);
  /external/dbus/dbus/
dbus-test-main.c 2 /* dbus-test.c Program to run all tests
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
  /external/kernel-headers/original/asm-arm/
hardware.h 6 * This program is free software; you can redistribute it and/or modify
  /external/linux-tools-perf/scripts/perl/bin/
rw-by-file-report 2 # description: r/w activity for a program, by file
  /external/llvm/autoconf/m4/
single_cxx_check.m4 1 dnl AC_SINGLE_CXX_CHECK(CACHEVAR, FUNCTION, HEADER, PROGRAM)
  /external/llvm/projects/sample/autoconf/m4/
single_cxx_check.m4 1 dnl AC_SINGLE_CXX_CHECK(CACHEVAR, FUNCTION, HEADER, PROGRAM)
  /external/llvm/test/Assembler/
2004-11-28-InvalidTypeCrash.ll 1 ; Test for PR463. This program is erroneous, but should not crash llvm-as.
2006-09-28-CrashOnInvalid.ll 1 ; Test for PR902. This program is erroneous, but should not crash llvm-as.
  /external/proguard/src/proguard/classfile/constant/visitor/
AllConstantVisitor.java 7 * This program is free software; you can redistribute it and/or modify it
12 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * with this program; if not, write to the Free Software Foundation, Inc.,
29 * entries of the program classes it visits.
  /external/proguard/src/proguard/classfile/editor/
NamedAttributeDeleter.java 7 * This program is free software; you can redistribute it and/or modify it
12 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * with this program; if not, write to the Free Software Foundation, Inc.,
29 * This ClassVisitor deletes attributes with a given name in the program
  /external/proguard/src/proguard/classfile/visitor/
LibraryClassFilter.java 7 * This program is free software; you can redistribute it and/or modify it
12 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * with this program; if not, write to the Free Software Foundation, Inc.,
52 // Don't delegate visits to program classes.
ProgramClassFilter.java 7 * This program is free software; you can redistribute it and/or modify it
12 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * with this program; if not, write to the Free Software Foundation, Inc.,
28 * <code>ClassVisitor</code>, but only when visiting program classes.
  /external/quake/quake/src/QW/server/
sys.h 4 This program is free software; you can redistribute it and/or
9 This program is distributed in the hope that it will be useful,
16 along with this program; if not, write to the Free Software
27 // an error will cause the entire program to exit
  /external/sonivox/arm-fm-22k/host_src/
arm-fm-22k.mak 10 CC = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
13 AR = C:\Program Files\GNUARM\bin\arm-elf-ar.exe
  /external/sonivox/arm-hybrid-22k/host_src/
arm-hybrid-22k.mak 10 CC = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
13 AR = C:\Program Files\GNUARM\bin\arm-elf-ar.exe
  /external/valgrind/main/cachegrind/tests/
clreq.c 2 // Prior to 3.0.1, Cachegrind was failing if run on a program that uses
  /external/valgrind/main/none/tests/s390x/
op_exception.stderr.exp 5 Your program just tried to execute an instruction that Valgrind
7 1. Your program has a bug and erroneously jumped to a non-code
9 warning about a bad jump, it's probably your program's fault.
14 probably kill your program.
  /external/valgrind/tsan/
tsan_dynamorio.sh 22 PROGRAM="$1"
28 file_format=`objdump -f $PROGRAM | grep -o 'file format elf.*'`
40 nm $PROGRAM > $SYMBOLS_FILE
45 $PROGRAM $PARAMS
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
ResourceManager.h 24 class Program;
53 void deleteProgram(GLuint program);
59 Program *getProgram(GLuint handle);
80 typedef std::map<GLuint, Program*> ProgramMap;

Completed in 1484 milliseconds

1 2 3 4 5 6 7 8 91011>>