HomeSort by relevance Sort by last modified time
    Searched defs:Program (Results 1 - 25 of 28) 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/clang/lib/Index/
Program.cpp 1 //===--- Program.cpp - Entity originator and misc -------------------------===//
14 #include "clang/Index/Program.h"
27 Program::Program() : Impl(new ProgramImpl()) { }
29 Program::~Program() {
33 static void FindEntitiesInDC(DeclContext *DC, Program &Prog,
48 void Program::FindEntities(ASTContext &Ctx, EntityHandler &Handler) {
  /external/clang/include/clang/Index/
Program.h 1 //===--- Program.h - Cross-translation unit information ---------*- C++ -*-===//
10 // This file declares the idx::Program interface.
25 class Program {
28 Program(const Program&); // do not implement
29 Program &operator=(const Program &); // do not implement
34 Program();
35 ~Program();
  /external/llvm/include/llvm/Support/
Program.h 1 //===- llvm/Support/Program.h ------------------------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Program class.
28 /// class is used to specify the location of the Program.
31 class Program {
36 Program(const Program& other);
37 Program& operator=(const Program& other);
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;
  /system/media/mca/filterfw/java/android/filterfw/core/
Program.java 25 public abstract class Program {
  /frameworks/base/libs/rs/
rsProgram.cpp 23 Program::Program(Context *rsc, const char * shaderText, uint32_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, uint32_t shaderLength,
63 virtual ~Program();
  /frameworks/base/libs/hwui/
Program.cpp 19 #include "Program.h"
25 // Base program
28 Program::Program(const char* vertex, const char* fragment) {
70 Program::~Program() {
78 int Program::addAttrib(const char* name) {
84 int Program::getAttrib(const char* name) {
92 int Program::addUniform(const char* name) {
98 int Program::getUniform(const char* name)
    [all...]
Program.h 31 * A program holds a vertex and a fragment shader. It offers several utility
34 class Program {
37 * Creates a new program with the specified vertex and fragment
40 Program(const char* vertex, const char* fragment);
41 virtual ~Program();
44 * Binds this program to the GL context.
49 * Marks this program as unused. This will not unbind
50 * the program from the GL context.
65 * Indicates whether this program is currently in use with
73 * Indicates whether this program was correctly compiled and linked
    [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 30 * Program is a base class for all the objects that modify
34 public class Program extends BaseObj {
42 * TextureType specifies what textures are attached to Program
75 Program(int id, RenderScript rs) {
81 * program
84 * @param slot index within the program's list of constant
100 * Binds a texture to be used in the program
103 * @param slot index within the program's list of textures
126 * @param slot index within the program's list of textures to
169 * Sets the GLSL shader code to be used in the program
    [all...]
  /frameworks/base/media/libstagefright/mpeg2ts/
ATSParser.cpp 46 struct ATSParser::Program : public RefBase {
47 Program(ATSParser *parser, unsigned programNumber, unsigned programMapPID);
82 DISALLOW_EVIL_CONSTRUCTORS(Program);
86 Stream(Program *program, unsigned elementaryPID, unsigned streamType);
107 Program *mProgram;
134 ATSParser::Program::Program(
141 LOGV("new program number %u", programNumber);
144 bool ATSParser::Program::parsePID
888 const sp<Program> &program = mPrograms.itemAt(index); local
988 const sp<Program> &program = mPrograms.editItemAt(i); local
    [all...]
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 

Completed in 2272 milliseconds

1 2