Searched defs:Context (Results 51 - 75 of 465) sorted by relevance

1234567891011>>

/external/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp35 static Module *ReadModule(LLVMContext &Context, StringRef Name) { argument
37 Module *M = ParseIRFile(Name, Diag, Context);
72 LLVMContext Context; local
75 Module *LModule = ReadModule(Context, LeftFilename);
76 Module *RModule = ReadModule(Context, RightFilename);
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp62 LLVMContext& Context) {
67 Result = ParseIRFile(FN, Err, Context);
79 LLVMContext &Context = getGlobalContext(); local
87 LoadFile(argv[0], InputFilenames[BaseArg], Context));
96 std::unique_ptr<Module> M(LoadFile(argv[0], InputFilenames[i], Context));
61 LoadFile(const char *argv0, const std::string &FN, LLVMContext& Context) argument
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h33 struct Context { struct in class:llvm::Win64EH::Dumper
38 Context(const object::COFFObjectFile &COFF, SymbolResolver Resolver, function in struct:llvm::Win64EH::Dumper::Context
44 void printRuntimeFunctionEntry(const Context &Ctx,
49 void printUnwindInfo(const Context &Ctx, const object::coff_section *Section,
51 void printRuntimeFunction(const Context &Ctx,
58 void printData(const Context &Ctx);
/external/llvm/tools/opt/
H A DBreakpointPrinter.cpp32 void getContextName(DIDescriptor Context, std::string &N) { argument
33 if (Context.isNameSpace()) {
34 DINameSpace NS(Context);
39 } else if (Context.isType()) {
40 DIType TY(Context);
H A DNewPMDriver.cpp34 bool llvm::runPassPipeline(StringRef Arg0, LLVMContext &Context, Module &M, argument
/external/skia/include/gpu/gl/
H A DSkMesaGLContext.h17 typedef intptr_t Context; typedef in class:SkMesaGLContext
33 Context fOldContext;
45 Context fContext;
/external/chromium_org/content/child/
H A Dweb_socket_stream_handle_impl.cc33 // WebSocketStreamHandleImpl::Context -----------------------------------------
35 class WebSocketStreamHandleImpl::Context class in class:content::WebSocketStreamHandleImpl
36 : public base::RefCounted<Context>,
39 explicit Context(WebSocketStreamHandleImpl* handle);
66 friend class base::RefCounted<Context>;
67 virtual ~Context() {
75 // |bridge_| is alive from Connect to DidClose, so Context must be alive
79 DISALLOW_COPY_AND_ASSIGN(Context);
82 WebSocketStreamHandleImpl::Context::Context(WebSocketStreamHandleImp function in class:content::WebSocketStreamHandleImpl::Context
[all...]
/external/chromium_org/mojo/shell/
H A Dcontext.cc111 class Context::NativeViewportApplicationLoader
163 Context::Context() { function in class:mojo::shell::Context
167 Context::~Context() {
171 void Context::Init() {
230 void Context::OnApplicationError(const GURL& gurl) {
238 void Context::Run(const GURL& url) {
247 ScopedMessagePipeHandle Context::ConnectToServiceByName(
H A Dcontext.h27 class Context : ApplicationManager::Delegate { class in namespace:mojo::shell
29 Context();
30 virtual ~Context();
63 DISALLOW_COPY_AND_ASSIGN(Context);
/external/chromium_org/net/base/
H A Dfile_stream_context_win.cc35 FileStream::Context::Context(const scoped_refptr<base::TaskRunner>& task_runner) function in class:net::FileStream::Context
44 FileStream::Context::Context(base::File file, function in class:net::FileStream::Context
59 FileStream::Context::~Context() {
62 int FileStream::Context::Read(IOBuffer* buf,
85 int FileStream::Context::Write(IOBuffer* buf,
104 FileStream::Context::IOResult FileStream::Context
[all...]
H A Dfile_stream_context.h5 // This file defines FileStream::Context class.
9 // the instance of FileStream::Context (FileStream holds a scoped_ptr to
10 // FileStream::Context instance). Context was extracted into a different class
13 // closing to be done by Context in WorkerPool (or the TaskRunner passed to
14 // constructor) and then just return (releasing Context pointer from
16 // Implementation of FileStream::Context is divided in two parts: some methods
18 // header file contains the complete definition of Context class including all
23 // readability of Context's code. And we tried to make as much Context cod
50 class FileStream::Context : public base::MessageLoopForIO::IOHandler { class in class:net::FileStream
[all...]
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.cc40 Logging::Context::Context(uint32_t name, int64_t timestamp_ms, bool enabled) { function in class:webrtc::testing::bwe::Logging::Context
44 Logging::Context::Context(const std::string& name, int64_t timestamp_ms, function in class:webrtc::testing::bwe::Logging::Context
49 Logging::Context::Context(const char* name, int64_t timestamp_ms, function in class:webrtc::testing::bwe::Logging::Context
54 Logging::Context::~Context() {
/external/chromium_org/third_party/skia/src/effects/
H A DSkTestImageFilters.cpp25 const Context&,
24 onFilterImage(Proxy* proxy, const SkBitmap& src, const Context&, SkBitmap* result, SkIPoint*) const argument
/external/clang/include/clang/Sema/
H A DSemaInternal.h25 return PartialDiagnostic(DiagID, Context.getDiagAllocator());
43 inline bool IsVariableAConstantExpression(VarDecl *Var, ASTContext &Context) { argument
46 Var->isUsableInConstantExpressions(Context) &&
62 if (Var->hasDefinition(SemaRef.Context) == VarDecl::DeclarationOnly &&
75 Var->markUsed(SemaRef.Context);
/external/clang/lib/Serialization/
H A DASTCommon.h41 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) { argument
56 if (T == Context.AutoDeductTy)
58 if (T == Context.AutoRRefDeductTy)
60 if (T == Context.VaListTagTy)
/external/llvm/include/llvm/Analysis/
H A DCallGraphSCCPass.h84 void *Context; // The CGPassManager object that is vending this. member in class:llvm::CallGraphSCC
87 CallGraphSCC(void *context) : Context(context) {}
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h49 LLVMContext &Context; member in class:llvm::BitcodeReaderValueList
51 BitcodeReaderValueList(LLVMContext &C) : Context(C) {}
99 LLVMContext &Context;
101 BitcodeReaderMDValueList(LLVMContext& C) : Context(C) {}
127 LLVMContext &Context;
228 : Context(C), TheModule(nullptr), Buffer(buffer), LazyStreamer(nullptr),
232 : Context(C), TheModule(nullptr), Buffer(nullptr), LazyStreamer(streamer),
/external/llvm/tools/bugpoint/
H A Dbugpoint.cpp151 LLVMContext& Context = getGlobalContext(); local
169 UseValgrind, Context);
/external/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp120 LLVMContext &Context = getGlobalContext(); local
137 M.reset(getStreamedBitcodeModule(DisplayFilename, streamer, Context,
/external/llvm/unittests/IR/
H A DMDBuilderTest.cpp22 LLVMContext Context; member in class:__anon26502::MDBuilderTest
26 MDBuilder MDHelper(Context);
33 MDBuilder MDHelper(Context);
46 MDBuilder MDHelper(Context);
61 MDBuilder MDHelper(Context);
73 MDBuilder MDHelper(Context);
83 MDBuilder MDHelper(Context);
H A DTypeBuilderTest.cpp157 TEST(TypeBuilderTest, Context) {
186 static StructType *get(LLVMContext &Context) { argument
190 st.push_back(TypeBuilder<int, cross>::get(Context));
191 st.push_back(TypeBuilder<int*, cross>::get(Context));
192 st.push_back(TypeBuilder<void*[], cross>::get(Context));
193 static StructType *const result = StructType::get(Context, st);
209 static StructType *get(LLVMContext &Context) { argument
213 st.push_back(TypeBuilder<types::i<32>, cross>::get(Context));
214 st.push_back(TypeBuilder<types::i<32>*, cross>::get(Context));
215 st.push_back(TypeBuilder<types::i<8>*[], cross>::get(Context));
[all...]
/external/llvm/unittests/Transforms/DebugIR/
H A DDebugIR.cpp92 LLVMContext Context; member in class:__anon26557::TestDebugIR
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DCallbackGenerator.java24 void generate(ClassEmitter ce, Context context, List methods) throws Exception;
25 void generateStatic(CodeEmitter e, Context context, List methods) throws Exception;
27 interface Context interface in interface:CallbackGenerator
/external/skia/src/effects/
H A DSkTestImageFilters.cpp25 const Context&,
24 onFilterImage(Proxy* proxy, const SkBitmap& src, const Context&, SkBitmap* result, SkIPoint*) const argument
/external/chromium_org/ipc/
H A Dipc_channel_proxy.h129 class Context;
132 ChannelProxy(Context* context);
139 class Context : public base::RefCountedThreadSafe<Context>, class in class:IPC::ChannelProxy
142 Context(Listener* listener,
154 friend class base::RefCountedThreadSafe<Context>;
155 virtual ~Context();
225 Context* context() { return context_.get(); }
233 scoped_refptr<Context> context_;

Completed in 9451 milliseconds

1234567891011>>