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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DContext.js8 WebInspector.Context = function()
17 WebInspector.Context.Events = {
21 WebInspector.Context.prototype = {
50 dispatcher.dispatchEventToListeners(WebInspector.Context.Events.FlavorChanged, flavorValue);
65 dispatcher.addEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject);
78 dispatcher.removeEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject);
79 if (!dispatcher.hasEventListeners(WebInspector.Context.Events.FlavorChanged))
119 WebInspector.context = new WebInspector.Context()
/external/chromium_org/v8/tools/testrunner/objects/
H A Dcontext.py29 class Context(): class in inherits:
59 return Context(packed[0], packed[1], None, packed[2], False,
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DContext.pm1 package Perf::Trace::Context;
23 XSLoader::load('Perf::Trace::Context', $VERSION);
29 Perf::Trace::Context - Perl extension for accessing functions in perf.
33 use Perf::Trace::Context;
/external/llvm/lib/MC/
H A DMCNullStreamer.cpp22 MCNullStreamer(MCContext &Context) : MCStreamer(Context) {} argument
42 MCStreamer *llvm::createNullStreamer(MCContext &Context) { argument
43 return new MCNullStreamer(Context);
/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)
70 void Context::destroyRenderContext (void)
79 const tcu::RenderTarget& Context::getRenderTarget (void) const
/external/clang/unittests/Tooling/
H A DRewriterTest.cpp16 RewriterTestContext Context; local
17 FileID ID = Context.createOnDiskFile("t.cpp", "line1\nline2\nline3\nline4");
18 Context.Rewrite.ReplaceText(Context.getLocation(ID, 2, 1), 5, "replaced");
19 EXPECT_FALSE(Context.Rewrite.overwriteChangedFiles());
21 Context.getFileContentFromDisk("t.cpp"));
25 RewriterTestContext Context; local
26 FileID FailingID = Context.createInMemoryFile("invalid/failing.cpp", "test");
27 Context.Rewrite.ReplaceText(Context
[all...]
/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/chromium_org/third_party/skia/include/core/
H A DSkDrawLooper.h41 class SK_API Context : ::SkNoncopyable { class in class:SkDrawLooper
43 Context() {} function in class:SkDrawLooper::Context
44 virtual ~Context() {}
64 * Called right before something is being drawn. Returns a Context
67 * memory for the Context. The required size can be queried by calling
71 virtual Context* createContext(SkCanvas*, void* storage) const = 0;
74 * Returns the number of bytes needed to store subclasses of Context (belonging to the
/external/skia/include/core/
H A DSkDrawLooper.h41 class SK_API Context : ::SkNoncopyable { class in class:SkDrawLooper
43 Context() {} function in class:SkDrawLooper::Context
44 virtual ~Context() {}
64 * Called right before something is being drawn. Returns a Context
67 * memory for the Context. The required size can be queried by calling
71 virtual Context* createContext(SkCanvas*, void* storage) const = 0;
74 * Returns the number of bytes needed to store subclasses of Context (belonging to the
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A Dloader.cpp27 LLVMContext &Context = getGlobalContext(); local
30 M.reset(ParseIRFile(InputFilename, Err, Context));
/external/clang/lib/AST/
H A DMangleNumberingContext.cpp1 //===--- MangleNumberingContext.cpp - Context for mangling numbers --------===//
25 ASTContext &Context = CallOperator->getASTContext(); local
27 QualType Key = Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
29 Key = Context.getCanonicalType(Key);
/external/clang/test/CodeGenCXX/
H A Dlinetable-eh.cpp27 class Context { class
34 virtual shared_ptr<Context> GetContext () = 0;
/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/IR/
H A DMDBuilder.h31 LLVMContext &Context; member in class:llvm::MDBuilder
34 MDBuilder(LLVMContext &context) : Context(context) {}
/external/llvm/lib/IR/
H A DLeakDetector.cpp27 static void clearGarbage(LLVMContext &Context) { argument
29 Context.pImpl->LLVMObjects.clear();
52 void LeakDetector::checkForGarbageImpl(LLVMContext &Context, argument
54 LLVMContextImpl *pImpl = Context.pImpl;
68 clearGarbage(Context);
/external/llvm/lib/Object/
H A DSymbolicFile.cpp31 LLVMContext *Context) {
37 if (Context)
38 return IRObjectFile::createIRObjectFile(std::move(Object), *Context);
29 createSymbolicFile(std::unique_ptr<MemoryBuffer> &Object, sys::fs::file_magic Type, LLVMContext *Context) argument
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp13 MCELFStreamer *createMipsELFStreamer(MCContext &Context, MCAsmBackend &MAB, argument
17 return new MipsELFStreamer(Context, MAB, OS, Emitter, STI);
H A DMipsELFStreamer.h30 MipsELFStreamer(MCContext &Context, MCAsmBackend &MAB, raw_ostream &OS, argument
32 : MCELFStreamer(Context, MAB, OS, Emitter) {}
37 MCELFStreamer *createMipsELFStreamer(MCContext &Context, MCAsmBackend &MAB,
/external/mesa3d/src/gallium/drivers/radeon/
H A Dloader.cpp27 LLVMContext &Context = getGlobalContext(); local
30 M.reset(ParseIRFile(InputFilename, Err, Context));
/external/chromium_org/net/base/
H A Dfile_stream_context_posix.cc25 FileStream::Context::Context(const scoped_refptr<base::TaskRunner>& task_runner) function in class:net::FileStream::Context
31 FileStream::Context::Context(base::File file, function in class:net::FileStream::Context
39 FileStream::Context::~Context() {
42 int FileStream::Context::Read(IOBuffer* in_buf,
51 base::Bind(&Context::ReadFileImpl, base::Unretained(this), buf, buf_len),
52 base::Bind(&Context::OnAsyncCompleted,
61 int FileStream::Context
[all...]

Completed in 1216 milliseconds

1234567891011>>