Searched defs:Context (Results 1 - 25 of 480) sorted by relevance

1234567891011>>

/external/llvm/lib/MC/
H A DMCNullStreamer.cpp22 MCNullStreamer(MCContext &Context) : MCStreamer(Context) {} argument
41 MCStreamer *llvm::createNullStreamer(MCContext &Context) { argument
42 return new MCNullStreamer(Context);
/external/llvm/unittests/ExecutionEngine/Orc/
H A DOrcTestCommon.cpp20 ModuleBuilder::ModuleBuilder(LLVMContext &Context, StringRef Triple, argument
22 : M(new Module(Name, Context)),
23 Builder(Context) {
/external/v8/tools/testrunner/objects/
H A Dcontext.py29 class Context(): class in inherits:
62 return Context(packed[0], packed[1], None, packed[2], False,
/external/deqp/framework/opengl/simplereference/
H A DsglrContext.hpp40 class Context class in namespace:sglr
43 Context (glu::ContextType type) : m_type(type) {} function in class:sglr::Context
44 virtual ~Context (void) {}
204 // Helpers implemented by Context.
/external/deqp/modules/gles2/
H A Dtes2Context.cpp40 Context::Context (tcu::TestContext& testCtx) function in class:deqp::gles2::Context
64 Context::~Context (void)
73 const tcu::RenderTarget& Context::getRenderTarget (void) const
/external/deqp/modules/gles3/
H A Dtes3Context.cpp37 Context::Context (tcu::TestContext& testCtx) function in class:deqp::gles3::Context
61 Context::~Context (void)
70 const tcu::RenderTarget& Context::getRenderTarget (void) const
/external/deqp/modules/gles31/
H A Dtes31Context.cpp38 Context::Context (tcu::TestContext& testCtx) function in class:deqp::gles31::Context
49 Context::~Context (void)
54 void Context::createRenderContext (void)
77 void Context::destroyRenderContext (void)
86 const tcu::RenderTarget& Context::getRenderTarget (void) const
/external/parameter-framework/upstream/parameter/log/include/log/
H A DContext.h41 class Context class in namespace:core::log
50 Context(Logger &logger, const std::string &context) : mLogger(logger) function in class:core::log::Context
57 ~Context()
64 Context(const Context &);
65 Context &operator=(const Context &);
/external/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h32 const ASTContext &Context; member in class:clang::EvaluatedExprVisitorBase
37 explicit EvaluatedExprVisitorBase(const ASTContext &Context) : Context(Context) { } argument
85 if (!CE->isUnevaluatedBuiltinCall(Context))
114 explicit EvaluatedExprVisitor(const ASTContext &Context) : argument
115 EvaluatedExprVisitorBase<make_ptr, ImplClass>(Context) { }
123 explicit ConstEvaluatedExprVisitor(const ASTContext &Context) : argument
124 EvaluatedExprVisitorBase<make_const_ptr, ImplClass>(Context) { }
/external/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp20 LLVMContext Context; local
21 TempMDTuple T = MDTuple::getTemporary(Context, None);
28 LLVMContext Context; local
29 auto *D = MDTuple::getDistinct(Context, None);
44 LLVMContext Context; local
45 Metadata *Old = MDTuple::getDistinct(Context, None);
46 auto *D = MDTuple::getDistinct(Context, Old);
49 Metadata *New = MDTuple::getDistinct(Context, None);
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DHtmlChangeReporterTest.java37 static class Context { class in class:HtmlChangeReporterTest
43 final Context testContext = new Context();
49 HtmlChangeListener<Context> listener = new HtmlChangeListener<Context>() {
50 public void discardedTag(Context context, String elementName) {
56 Context context, String tagName, String... attributeNames) {
65 HtmlChangeReporter<Context> hcr = new HtmlChangeReporter<Context>(
/external/skia/include/core/
H A DSkDrawLooper.h39 class SK_API Context : ::SkNoncopyable { class in class:SkDrawLooper
41 Context() {} function in class:SkDrawLooper::Context
42 virtual ~Context() {}
62 * Called right before something is being drawn. Returns a Context
65 * memory for the Context. The required size can be queried by calling
69 virtual Context* createContext(SkCanvas*, void* storage) const = 0;
72 * Returns the number of bytes needed to store subclasses of Context (belonging to the
/external/clang/test/CodeGenCXX/
H A Dlinetable-eh.cpp27 class Context { class
34 virtual shared_ptr<Context> GetContext () = 0;
/external/clang/unittests/Tooling/
H A DRewriterTest.cpp19 RewriterTestContext Context; local
20 FileID ID = Context.createOnDiskFile("t.cpp", "line1\nline2\nline3\nline4");
21 Context.Rewrite.ReplaceText(Context.getLocation(ID, 2, 1), 5, "replaced");
22 EXPECT_FALSE(Context.Rewrite.overwriteChangedFiles());
24 Context.getFileContentFromDisk("t.cpp"));
28 RewriterTestContext Context; local
29 FileID FailingID = Context.createInMemoryFile("invalid/failing.cpp", "test");
30 Context.Rewrite.ReplaceText(Context
[all...]
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
H A DContext.java25 public interface Context { interface
/external/libunwind/doc/
H A Dlibunwind-ia64.tex194 \section{The Unwind-Context Type}
/external/llvm/bindings/python/llvm/tests/
H A Dtest_bitreader.py5 from ..core import Context namespace
/external/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp26 LLVMContext Context; local
30 Module *M = new Module("test", Context);
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
42 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", F);
45 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
46 Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
/external/llvm/include/llvm/MC/
H A DMCELFStreamer.h30 MCELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_pwrite_stream &OS, argument
32 : MCObjectStreamer(Context, TAB, OS, Emitter), SeenIdent(false) {}
102 MCELFStreamer *createARMELFStreamer(MCContext &Context, MCAsmBackend &TAB,
/external/llvm/lib/Object/
H A DSymbolicFile.cpp30 MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) {
37 if (Context)
38 return IRObjectFile::create(Object, *Context);
68 if (!Obj || !Context)
78 *Context);
29 createSymbolicFile( MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) argument
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUELFStreamer.cpp20 MCELFStreamer *llvm::createAMDGPUELFStreamer(MCContext &Context, argument
25 return new AMDGPUELFStreamer(Context, MAB, OS, Emitter);
H A DAMDGPUELFStreamer.h28 AMDGPUELFStreamer(MCContext &Context, MCAsmBackend &MAB, raw_pwrite_stream &OS, argument
30 : MCELFStreamer(Context, MAB, OS, Emitter) { }
35 MCELFStreamer *createAMDGPUELFStreamer(MCContext &Context, MCAsmBackend &MAB,
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCELFStreamer.h25 HexagonMCELFStreamer(MCContext &Context, MCAsmBackend &TAB, argument
27 : MCELFStreamer(Context, TAB, OS, Emitter),
40 MCStreamer *createHexagonELFStreamer(MCContext &Context, MCAsmBackend &MAB,
/external/llvm/tools/llvm-split/
H A Dllvm-split.cpp39 LLVMContext &Context = getGlobalContext(); local
43 std::unique_ptr<Module> M = parseIRFile(InputFilename, Err, Context);
/external/mesa3d/src/gallium/drivers/radeon/
H A Dloader.cpp27 LLVMContext &Context = getGlobalContext(); local
30 M.reset(ParseIRFile(InputFilename, Err, Context));

Completed in 611 milliseconds

1234567891011>>