Searched defs:Program (Results 1 - 25 of 63) sorted by relevance

123

/external/flatbuffers/tests/FlatBuffers.Test/
H A DProgram.cs24 static class Program class in namespace:FlatBuffers.Test
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DProgram.h1 //===- 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 { class in namespace:llvm::sys
36 Program(const Program& other);
37 Program& operator=(const Program& other);
43 Program();
44 ~Program();
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
H A DProgram.cs7 internal class Program class in namespace:Antlr3.Runtime.Test.Composition
/external/protobuf/csharp/src/AddressBook/
H A DProgram.cs42 internal class Program class in namespace:Google.Protobuf.Examples.AddressBook
/external/protobuf/csharp/src/Google.Protobuf.JsonDump/
H A DProgram.cs41 internal class Program class in namespace:Google.Protobuf.ProtoDump
/external/swiftshader/third_party/LLVM/utils/not/
H A Dnot.cpp11 #include "llvm/Support/Program.h"
16 sys::Path Program = sys::Program::FindProgramByName(argv[1]); local
19 int Result = sys::Program::ExecuteAndWait(Program, argv + 1, 0, 0, 0, 0,
/external/skia/experimental/xps_to_png/
H A Dxps_to_png.cs21 class Program { class
/external/skqp/experimental/xps_to_png/
H A Dxps_to_png.cs21 class Program { class
/external/llvm/lib/Support/
H A DProgram.cpp1 //===-- Program.cpp - Implement OS Program Concept --------------*- C++ -*-===//
10 // This file implements the operating system Program concept.
14 #include "llvm/Support/Program.h"
26 static bool Execute(ProcessInfo &PI, StringRef Program, const char **args,
30 int sys::ExecuteAndWait(StringRef Program, const char **args, const char **envp, argument
35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
49 ProcessInfo sys::ExecuteNoWait(StringRef Program, const char **args, argument
56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
65 #include "Unix/Program
[all...]
/external/protobuf/csharp/src/Google.Protobuf.Conformance/
H A DProgram.cs44 class Program class in namespace:Google.Protobuf.Conformance
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DProgram.cpp1 //===-- Program.cpp - Implement OS Program Concept --------------*- C++ -*-===//
10 // This file implements the operating system Program concept.
14 #include "llvm/Support/Program.h"
26 static bool Execute(ProcessInfo &PI, StringRef Program, const char **args,
30 int sys::ExecuteAndWait(StringRef Program, const char **args, const char **envp, argument
35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
49 ProcessInfo sys::ExecuteNoWait(StringRef Program, const char **args, argument
56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
65 #include "Unix/Program
[all...]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineReferenceRenderer.hpp197 class Program class in namespace:vkt::pipeline
200 virtual ~Program (void) { }
202 virtual rr::Program getReferenceProgram (void) const = 0;
205 class CoordinateCaptureProgram : public Program
217 virtual rr::Program getReferenceProgram (void) const
219 return rr::Program(&m_vertexShader, &m_fragmentShader);
231 const rr::Program* const program);
263 const rr::Program* m_program;
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.cpp2 * drawElements Quality Program OpenGL ES 3.1 Module
21 * \brief Program interface
409 Program::Program (void) function in class:deqp::gles31::Functional::ProgramInterfaceDefinition::Program
430 Program::~Program (void)
455 Shader* Program::addShader (glu::ShaderType type, glu::GLSLVersion version)
470 void Program::setSeparable (bool separable)
475 bool Program::isSeparable (void) const
480 const std::vector<Shader*>& Program
[all...]
H A Des31fProgramInterfaceDefinition.hpp4 * drawElements Quality Program OpenGL ES 3.1 Module
23 * \brief Program interface
55 class Program;
84 friend class Program;
87 class Program class in namespace:deqp::gles31::Functional::ProgramInterfaceDefinition
90 Program (void);
91 ~Program (void);
116 Program& operator= (const Program&);
117 Program (cons
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DttProgram.py203 class Program(object): class in inherits:object
456 p = Program()
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DttProgram.py203 class Program(object): class in inherits:object
456 p = Program()
/external/llvm/tools/bugpoint/
H A DBugDriver.h51 Module *Program; // The raw program, linked together member in class:llvm::BugDriver
110 /// miscompiles Program as input. It tries to reduce the testcase to
133 Module *getProgram() const { return Program; }
138 Module *OldProgram = Program;
139 Program = M;
164 /// executeProgram - This method runs "Program", capturing the output of the
167 std::string executeProgram(const Module *Program,
179 std::string executeProgramSafely(const Module *Program,
196 bool diffProgram(const Module *Program,
208 /// This method clones the current Program an
[all...]
H A DOptimizerDriver.cpp28 #include "llvm/Support/Program.h"
59 /// writeProgramToFile - This writes the current "Program" to the named bitcode
88 /// EmitProgressBitcode - This function is used to output the current Program
121 /// runPasses - Run the specified passes on Program, outputting a bitcode file
129 bool BugDriver::runPasses(Module *Program, argument
159 WriteBitcodeToFile(Program, InFile.os(), PreserveBitcodeUseListOrder);
/external/python/cpython2/Lib/unittest/test/
H A Dtest_break.py210 class Program(unittest.TestProgram): class in function:TestBreak.testMainInstallsHandler
220 p = Program(False)
233 p = Program(True)
/external/python/cpython3/Lib/unittest/test/
H A Dtest_break.py208 class Program(unittest.TestProgram): class in function:TestBreak.testMainInstallsHandler
219 p = Program(False)
234 p = Program(True)
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DBugDriver.h50 Module *Program; // The raw program, linked together member in class:llvm::BugDriver
109 /// miscompiles Program as input. It tries to reduce the testcase to
138 Module *getProgram() const { return Program; }
143 Module *OldProgram = Program;
144 Program = M;
169 /// executeProgram - This method runs "Program", capturing the output of the
172 std::string executeProgram(const Module *Program,
184 std::string executeProgramSafely(const Module *Program,
201 bool diffProgram(const Module *Program,
213 /// deleteInstructionFromProgram - This method clones the current Program an
[all...]
H A DOptimizerDriver.cpp30 #include "llvm/Support/Program.h"
48 /// writeProgramToFile - This writes the current "Program" to the named bitcode
69 /// EmitProgressBitcode - This function is used to output the current Program
99 /// runPasses - Run the specified passes on Program, outputting a bitcode file
107 bool BugDriver::runPasses(Module *Program, argument
140 WriteBitcodeToFile(Program, InFile.os());
197 prog = sys::Program::FindProgramByName("valgrind");
205 int result = sys::Program::ExecuteAndWait(prog, Args.data(), 0,
/external/deqp/framework/opengl/
H A DgluShaderProgram.cpp2 * drawElements Quality Program OpenGL ES Utilities
135 // Program
175 Program::Program (const RenderContext& renderCtx) function in class:glu::Program
183 Program::Program (const glw::Functions& gl) function in class:glu::Program
191 Program::Program (const RenderContext& renderCtx, deUint32 program) function in class:glu::Program
199 Program::~Program (voi
[all...]
/external/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp24 const char Program[] = local
28 EXPECT_TRUE(matches(Program,
31 EXPECT_TRUE(matches(Program,
36 EXPECT_TRUE(matches(Program,
42 EXPECT_TRUE(matches(Program,
/external/deqp/external/openglcts/modules/common/
H A DglcRobustBufferAccessBehaviorTests.hpp154 class Program class in namespace:deqp::RobustBufferAccessBehavior
159 Program(deqp::Context& context);
160 ~Program();

Completed in 7551 milliseconds

123