HomeSort by relevance Sort by last modified time
    Searched refs:Program (Results 26 - 50 of 450) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ProgramVariable.java 25 private Program mProgram;
28 public ProgramVariable(Program program, String varName) {
29 mProgram = program;
33 public Program getProgram() {
43 throw new RuntimeException("Attempting to set program variable '" + mVarName
44 + "' but the program is null!");
51 throw new RuntimeException("Attempting to get program variable '" + mVarName
52 + "' but the program is null!");
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
TransformationNode.cpp 24 void TransformationNode::before(Program& program, Matrix& model, Matrix& view,
32 void TransformationNode::after(Program& program, Matrix& model, Matrix& view,
  /external/llvm/utils/not/
not.cpp 11 #include "llvm/Support/Program.h"
30 std::string Program = sys::FindProgramByName(argv[0]);
33 int Result = sys::ExecuteAndWait(Program, argv, 0, 0, 0, 0, &ErrMsg);
  /external/chromium_org/third_party/angle/src/libGLESv2/
Program.cpp 8 // Program.cpp: Implements the gl::Program class. Implements GL program objects
11 #include "libGLESv2/Program.h"
70 // append a santized message to the program info log.
135 Program::Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle) : mResourceManager(manager), mHandle(handle)
146 Program::~Program()
161 bool Program::attachShader(Shader *shader
    [all...]
  /frameworks/base/libs/hwui/
Program.cpp 22 #include "Program.h"
29 // Base program
32 Program::Program(const ProgramDescription& description, const char* vertex, const char* fragment) {
93 Program::~Program() {
95 // This would ideally happen after linking the program
108 int Program::addAttrib(const char* name) {
114 int Program::bindAttrib(const char* name, ShaderBindings bindingSlot) {
120 int Program::getAttrib(const char* name)
    [all...]
ProgramCache.h 27 #include "Program.h"
38 * Generates and caches program. Programs are generated based on
46 Program* get(const ProgramDescription& description);
51 Program* generateProgram(const ProgramDescription& description, programid key);
59 KeyedVector<programid, Program*> mCache;
Dither.h 22 #include "Program.h"
43 void setupProgram(Program* program, GLuint* textureUnit);
SkiaColorFilter.h 54 virtual void setupProgram(Program* program) = 0;
88 void setupProgram(Program* program);
103 void setupProgram(Program* program);
118 void setupProgram(Program* program);
  /external/valgrind/main/gdbserver_tests/
mcsignopass.stdoutB.exp 1 Signal Stop Print Pass to program Description
3 Signal Stop Print Pass to program Description
5 Signal Stop Print Pass to program Description
8 Program received signal SIGSEGV, Segmentation fault.
12 Program received signal SIGSEGV, Segmentation fault.
16 Program received signal SIGSEGV, Segmentation fault.
20 Program received signal SIGSEGV, Segmentation fault.
24 Program received signal SIGSEGV, Segmentation fault.
28 Program received signal SIGSEGV, Segmentation fault.
32 Program received signal SIGSEGV, Segmentation fault
    [all...]
  /external/llvm/tools/bugpoint/
BugDriver.cpp 38 // program. If this filename is set, it is used as the reference diff source,
43 OutputFile("output", cl::desc("Specify a reference program output "
47 /// setNewProgram - If we reduce or update the program somehow, call this method
49 /// specified one as the current program.
51 delete Program;
52 Program = M;
73 Program(0), Interpreter(0), SafeInterpreter(0), gcc(0),
78 delete Program;
115 assert(Program == 0 && "Cannot call addSources multiple times!");
119 Program = ParseInputFile(Filenames[0], Context)
    [all...]
FindBugs.cpp 27 /// combinations of passes to compile the program with. Compile the program with
43 outs() << "Generating reference output from raw program: \n";
44 if (!createReferenceFile(Program))
58 // Step 2: Run optimizer passes on the program and check for success.
60 outs() << "Running selected passes on program to test for crash: ";
66 if(runPasses(Program, PassesToRun, Filename, false)) {
80 compileProgram(Program, &Error);
89 // Step 4: Run the program and compare its output to the reference
93 bool Diff = diffProgram(Program, Filename, "", false, &Error)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
AlphaBlendFilter.java 27 import android.filterfw.core.Program;
57 protected Program getNativeProgram(FilterContext context) {
62 protected Program getShaderProgram(FilterContext context) {
BlendFilter.java 26 import android.filterfw.core.Program;
57 protected Program getNativeProgram(FilterContext context) {
62 protected Program getShaderProgram(FilterContext context) {
BrightnessFilter.java 27 import android.filterfw.core.Program;
50 protected Program getNativeProgram(FilterContext context) {
55 protected Program getShaderProgram(FilterContext context) {
ContrastFilter.java 27 import android.filterfw.core.Program;
55 protected Program getNativeProgram(FilterContext context) {
60 protected Program getShaderProgram(FilterContext context) {
Invert.java 26 import android.filterfw.core.Program;
51 protected Program getNativeProgram(FilterContext context) {
56 protected Program getShaderProgram(FilterContext context) {
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.h 32 * Abstracts a GLSL program comprising a vertex and fragment shader
34 class Program {
39 Program(const ProgramCache::Key& needs, const char* vertex, const char* fragment);
40 ~Program();
45 /* Binds this program to the GLES context */
65 // Name of the OpenGL program and shaders
Description.h 25 class Program;
29 * to generate a corresponding GLSL program and set the appropriate
32 * Program and ProgramCache are friends and access the state directly
35 friend class Program;
Program.cpp 21 #include "Program.h"
28 Program::Program(const ProgramCache::Key& needs, const char* vertex, const char* fragment)
76 Program::~Program() {
79 bool Program::isValid() const {
83 void Program::use() {
87 GLuint Program::getAttrib(const char* name) const {
92 GLint Program::getUniform(const char* name) const {
97 GLuint Program::buildShader(const char* source, GLenum type)
    [all...]
  /external/ceres-solver/internal/ceres/
coordinate_descent_minimizer.h 40 #include "ceres/program.h"
46 // Given a Program, and a ParameterBlockOrdering which partitions
55 // program are constant.
58 bool Init(const Program& program,
70 void Solve(Program* program,
  /external/llvm/include/llvm/Support/
Program.h 1 //===- llvm/Support/Program.h ------------------------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Program class.
33 /// This static constructor (factory) will attempt to locate a program in
37 /// @returns A Path object initialized to the path of the program or a
38 /// Path object that is empty (invalid) if the program could not be found.
39 /// @brief Construct a Program by finding it by name.
49 /// This function executes the program using the arguments provided. The
50 /// invoked program will inherit the stdin, stdout, and stderr file
52 /// invoking program.
53 /// This function waits the program to finish
    [all...]
  /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/sonivox/arm-wt-22k/host_src/
arm-wt-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/chromium_org/gpu/command_buffer/service/
program_manager.h 29 // This is used to track which attributes a particular program needs
32 class GPU_EXPORT Program : public base::RefCounted<Program> {
84 Program(ProgramManager* manager, GLuint service_id);
132 // Gets all the program info.
190 // We only consider the declared attributes in the program.
215 friend class base::RefCounted<Program>;
218 ~Program();
242 // Resets the program.
245 // Updates the program info after a successful link
    [all...]

Completed in 418 milliseconds

12 3 4 5 6 7 8 91011>>