HomeSort by relevance Sort by last modified time
    Searched defs:Program (Results 1 - 25 of 37) sorted by null

1 2

  /external/llvm/utils/not/
not.cpp 11 #include "llvm/Support/Program.h"
16 sys::Path Program = sys::Program::FindProgramByName(argv[1]);
19 int Result = sys::Program::ExecuteAndWait(Program, argv + 1, 0, 0, 0, 0,
  /external/ceres-solver/internal/ceres/
program.h 47 // adding and modifying parameters and residuals. The Program contains the core
51 // objective function. Various parts of Ceres transform one Program into
55 class Program {
57 Program();
58 explicit Program(const Program& program);
60 // The ordered parameter and residual blocks for the program.
66 // Serialize to/from the program and update states.
83 // Update a state vector for the program given a delta
    [all...]
program.cc 31 #include "ceres/program.h"
51 Program::Program() {}
53 Program::Program(const Program& program)
54 : parameter_blocks_(program.parameter_blocks_),
55 residual_blocks_(program.residual_blocks_) {
58 const vector<ParameterBlock*>& Program::parameter_blocks() const
    [all...]
  /external/llvm/include/llvm/Support/
Program.h 1 //===- llvm/Support/Program.h ------------------------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Program class.
29 /// class is used to specify the location of the Program.
32 class Program {
37 Program(const Program& other) LLVM_DELETED_FUNCTION;
38 Program& operator=(const Program& other) LLVM_DELETED_FUNCTION;
43 Program();
44 ~Program();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCPluginLayerImpl.h 43 typedef ProgramBinding<VertexShaderPosTex, FragmentShaderRGBATexFlipAlpha> Program;
CCCanvasLayerImpl.h 43 typedef ProgramBinding<VertexShaderPosTex, FragmentShaderRGBATexFlipAlpha> Program;
CCHeadsUpDisplay.h 63 typedef ProgramBinding<VertexShaderPosTex, FragmentShaderBGRATexAlpha> Program;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Program.java 25 public abstract class Program {
  /frameworks/rs/
rsProgram.cpp 23 Program::Program(Context *rsc, const char * shaderText, size_t shaderLength,
83 Program::~Program() {
103 bool Program::freeChildren() {
115 void Program::initMemberVars() {
139 void Program::bindAllocation(Context *rsc, Allocation *alloc, uint32_t slot) {
168 void Program::bindTexture(Context *rsc, uint32_t slot, Allocation *a) {
187 void Program::bindSampler(Context *rsc, uint32_t slot, Sampler *s) {
203 Program *p = static_cast<Program *>(vp)
    [all...]
rsProgram.h 31 class Program : public ProgramBase {
61 Program(Context *, const char * shaderText, size_t shaderLength,
63 virtual ~Program();
  /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...]
Program.h 96 // Program description
100 * Describe the features required for a given program. The features
213 * the fragment shader. When this method returns true, the program should
223 * the fragment shader. When this method returns true, the program should
233 * Computes the unique key identifying this program.
282 * Logs the specified message followed by the key identifying this program.
308 * A program holds a vertex and a fragment shader. It offers several utility
311 class Program {
319 * Creates a new program with the specified vertex and fragment
322 Program(const ProgramDescription& description, const char* vertex, const char* fragment)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.h 68 typedef ProgramBinding<VertexShaderPosTex, FragmentShaderRGBATexAlpha> Program;
LayerTilerChromium.h 84 typedef ProgramBinding<VertexShaderPosTexTransform, FragmentShaderTexAlpha> Program;
118 const LayerTilerChromium::Program*);
  /external/llvm/tools/bugpoint/
BugDriver.h 50 Module *Program; // The raw program, linked together
52 AbstractInterpreter *Interpreter; // How to run the program
109 /// miscompiles Program as input. It tries to reduce the testcase to
110 /// something that smaller that still miscompiles the program.
138 Module *getProgram() const { return Program; }
143 Module *OldProgram = Program;
144 Program = M;
158 /// setNewProgram - If we reduce or update the program somehow, call this
160 /// the specified one as the current program
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Program.cpp 7 // Program.cpp: Implements the gl::Program class. Implements GL program objects
10 #include "libGLESv2/Program.h"
20 unsigned int Program::mCurrentSerial = 1;
48 Program::Program(ResourceManager *manager, GLuint handle) : mResourceManager(manager), mHandle(handle), mSerial(issueSerial())
68 Program::~Program()
83 bool Program::attachShader(Shader *shader
    [all...]
Program.h 7 // Program.h: Defines the gl::Program class. Implements GL program objects
56 class Program
59 Program(ResourceManager *manager, GLuint handle);
61 ~Program();
134 DISALLOW_COPY_AND_ASSIGN(Program);
213 bool mDeleteStatus; // Flag to indicate that the program can be deleted when no longer in use
  /frameworks/base/graphics/java/android/renderscript/
Program.java 31 * Program is a base class for all the objects that modify
35 public class Program extends BaseObj {
43 * TextureType specifies what textures are attached to Program
77 Program(int id, RenderScript rs) {
82 * Program object can have zero or more constant allocations
91 * Returns the type of the constant buffer used in the program
105 * Returns the number of textures used in this program object
139 * program
142 * @param slot index within the program's list of constant
158 * Binds a texture to be used in the program
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 377 const char Program[] =
381 EXPECT_TRUE(matches(Program,
384 EXPECT_TRUE(matches(Program,
389 EXPECT_TRUE(matches(Program,
395 EXPECT_TRUE(matches(Program,
    [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 47 struct ATSParser::Program : public RefBase {
48 Program(ATSParser *parser, unsigned programNumber, unsigned programMapPID);
95 DISALLOW_EVIL_CONSTRUCTORS(Program);
99 Stream(Program *program,
124 Program *mProgram;
176 ATSParser::Program::Program(
183 ALOGV("new program number %u", programNumber);
186 bool ATSParser::Program::parsePSISection
1032 const sp<Program> &program = mPrograms.itemAt(index); local
1236 const sp<Program> &program = mPrograms.editItemAt(i); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
wavefront.h 9 * This program is free software; you can redistribute it and/or modify
14 * This program is distributed in the hope that it will be useful,
20 * along with this program; if not, write to the Free Software
205 #define ProgramFileID "Program"
503 u8 Program[NUM_MIDICHANNELS];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
wavefront.h 9 * This program is free software; you can redistribute it and/or modify
14 * This program is distributed in the hope that it will be useful,
20 * along with this program; if not, write to the Free Software
205 #define ProgramFileID "Program"
503 u8 Program[NUM_MIDICHANNELS];
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 1749 milliseconds

1 2