Searched defs:Context (Results 201 - 225 of 465) sorted by relevance

1234567891011>>

/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp96 LLVMContext &Context = M.getContext(); local
115 Type::getInt8PtrTy(Context),
116 Type::getInt8PtrTy(Context),
117 Type::getInt8PtrTy(Context),
118 DL.getIntPtrType(Context), nullptr);
122 Type::getInt8PtrTy(Context),
123 Type::getInt8PtrTy(Context),
124 Type::getInt8PtrTy(Context),
125 DL.getIntPtrType(Context), nullptr);
129 Type::getInt8PtrTy(Context),
166 LowerBSWAP(LLVMContext &Context, Value *V, Instruction *IP) argument
262 LowerCTPOP(LLVMContext &Context, Value *V, Instruction *IP) argument
302 LowerCTLZ(LLVMContext &Context, Value *V, Instruction *IP) argument
342 LLVMContext &Context = CI->getContext(); local
[all...]
H A DStackProtector.cpp476 LLVMContext &Context = F->getContext(); local
477 BasicBlock *FailBB = BasicBlock::Create(Context, "CallStackCheckFailBlk", F);
481 "__stack_smash_handler", Type::getVoidTy(Context),
482 Type::getInt8PtrTy(Context), NULL);
487 "__stack_chk_fail", Type::getVoidTy(Context), NULL);
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp193 DIContext* Context = DIContext::getDWARFContext(Obj.getObjectFile()); local
222 if (Context) {
223 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
/external/llvm/lib/IR/
H A DAttributeImpl.h189 LLVMContext &Context; member in class:llvm::AttributeSetImpl
205 : Context(C), NumAttrs(Attrs.size()) {
221 LLVMContext &getContext() { return Context; }
238 return AttributeSet::get(Context, *getNode(Slot));
/external/llvm/lib/MC/
H A DMCMachOStreamer.cpp53 MCMachOStreamer(MCContext &Context, MCAsmBackend &MAB, raw_ostream &OS, argument
55 : MCObjectStreamer(Context, MAB, OS, Emitter),
450 MCStreamer *llvm::createMachOStreamer(MCContext &Context, MCAsmBackend &MAB, argument
454 MCMachOStreamer *S = new MCMachOStreamer(Context, MAB, OS, CE, LabelSections);
H A DMCWin64EH.cpp130 MCContext &Context = streamer.getContext(); local
131 const MCSymbolRefExpr *BaseRef = MCSymbolRefExpr::Create(Base, Context);
132 const MCSymbolRefExpr *OtherRef = MCSymbolRefExpr::Create(Other, Context);
133 const MCExpr *Ofs = MCBinaryExpr::CreateSub(OtherRef, BaseRef, Context);
136 Context);
137 streamer.EmitValue(MCBinaryExpr::CreateAdd(BaseRefRel, Ofs, Context), 4);
274 MCContext &Context = Streamer.getContext(); local
279 getWin64EHTableSection(GetSectionSuffix(CFI->Function), Context);
287 getWin64EHFuncTableSection(GetSectionSuffix(CFI->Function), Context);
H A DWinCOFFStreamer.cpp41 MCWinCOFFStreamer::MCWinCOFFStreamer(MCContext &Context, MCAsmBackend &MAB, argument
43 : MCObjectStreamer(Context, MAB, OS, &CE), CurSymbol(nullptr) {}
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCTargetDesc.cpp110 MCContext &Context, MCAsmBackend &MAB,
116 S = createMipsELFStreamer(Context, MAB, OS, Emitter, STI, RelaxAll,
119 S = createMipsNaClELFStreamer(Context, MAB, OS, Emitter, STI, RelaxAll,
109 createMCStreamer(const Target &T, StringRef TT, MCContext &Context, MCAsmBackend &MAB, raw_ostream &OS, MCCodeEmitter *Emitter, const MCSubtargetInfo &STI, bool RelaxAll, bool NoExecStack) argument
H A DMipsNaClELFStreamer.cpp39 MipsNaClELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
41 : MipsELFStreamer(Context, TAB, OS, Emitter, STI), PendingCall(false) {}
254 MCELFStreamer *createMipsNaClELFStreamer(MCContext &Context, MCAsmBackend &TAB, argument
259 MipsNaClELFStreamer *S = new MipsNaClELFStreamer(Context, TAB, OS, Emitter,
/external/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp172 LLVMContext &Context = M->getContext(); local
174 Type *DestTy = PointerType::get(Type::getInt8Ty(Context), AddrSpace);
178 PointerType::get(Type::getInt8Ty(Context), llvm::ADDRESS_SPACE_GENERIC);
/external/llvm/lib/Target/R600/
H A DAMDGPUAsmPrinter.cpp77 MCContext &Context = getObjFileLowering().getContext(); local
78 const MCSectionELF *ConfigSection = Context.getELFSection(".AMDGPU.config",
101 = Context.getELFSection(".AMDGPU.csdata",
131 OutStreamer.SwitchSection(Context.getELFSection(".AMDGPU.disasm",
H A DSIAnnotateControlFlow.cpp115 LLVMContext &Context = M.getContext(); local
117 Void = Type::getVoidTy(Context);
118 Boolean = Type::getInt1Ty(Context);
119 Int64 = Type::getInt64Ty(Context);
122 BoolTrue = ConstantInt::getTrue(Context);
123 BoolFalse = ConstantInt::getFalse(Context);
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCTargetDesc.cpp126 MCContext &Context, MCAsmBackend &MAB,
131 createELFStreamer(Context, MAB, OS, Emitter, RelaxAll, NoExecStack);
125 createMCStreamer(const Target &T, StringRef TT, MCContext &Context, MCAsmBackend &MAB, raw_ostream &OS, MCCodeEmitter *Emitter, const MCSubtargetInfo &STI, bool RelaxAll, bool NoExecStack) argument
/external/llvm/tools/lli/
H A Dlli.cpp342 LLVMContext &Context,
344 IRBuilder<> Builder(Context);
348 Module *M = new Module("CygMingHelper", Context);
355 TypeBuilder<int64_t(void), false>::get(Context),
359 TypeBuilder<int32_t(void), false>::get(Context),
362 BasicBlock *BB = BasicBlock::Create(Context, "__main", Result);
366 ReturnVal = ConstantInt::get(Context, APInt(64, 0));
368 ReturnVal = ConstantInt::get(Context, APInt(32, 0));
383 LLVMContext &Context = getGlobalContext(); local
401 Module *Mod = ParseIRFile(InputFile, Err, Context);
341 addCygMingExtraModule(ExecutionEngine *EE, LLVMContext &Context, StringRef TargetTripleStr) argument
[all...]
/external/chromium-libpac/src/
H A Dproxy_resolver_v8.cc349 // ProxyResolverV8::Context ---------------------------------------------------
351 class ProxyResolverV8::Context { class in class:net::ProxyResolverV8
353 explicit Context(ProxyResolverJSBindings* js_bindings, function in class:net::ProxyResolverV8::Context
358 ~Context() {
372 v8::Local<v8::Context> context =
373 v8::Local<v8::Context>::New(isolate_, v8_context_);
374 v8::Context::Scope function_scope(context);
466 isolate_, v8::Context::New(isolate_, NULL, global_template));
468 v8::Local<v8::Context> context =
469 v8::Local<v8::Context>
[all...]
/external/chromium_org/content/child/
H A Dweb_url_loader_impl.cc204 // WebURLLoaderImpl::Context --------------------------------------------------
209 class WebURLLoaderImpl::Context : public base::RefCounted<Context>, class in class:content::WebURLLoaderImpl
212 Context(WebURLLoaderImpl* loader, ResourceDispatcher* resource_dispatcher);
245 friend class base::RefCounted<Context>;
246 virtual ~Context() {}
263 WebURLLoaderImpl::Context::Context(WebURLLoaderImpl* loader, function in class:content::WebURLLoaderImpl::Context
271 void WebURLLoaderImpl::Context::Cancel() {
290 void WebURLLoaderImpl::Context
[all...]
/external/chromium_org/net/proxy/
H A Dproxy_resolver_v8.cc343 // ProxyResolverV8::Context ---------------------------------------------------
345 class ProxyResolverV8::Context { class in class:net::ProxyResolverV8
347 Context(ProxyResolverV8* parent, v8::Isolate* isolate) function in class:net::ProxyResolverV8::Context
353 ~Context() {
370 v8::Local<v8::Context> context =
371 v8::Local<v8::Context>::New(isolate_, v8_context_);
372 v8::Context::Scope function_scope(context);
471 isolate_, v8::Context::New(isolate_, NULL, global_template));
473 v8::Local<v8::Context> context =
474 v8::Local<v8::Context>
[all...]
/external/deqp/framework/platform/win32/
H A DtcuWGL.cpp351 // Context
353 Context::Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat) function in class:tcu::wgl::Context
425 Context::~Context (void)
433 FunctionPtr Context::getGLFunction (const char* name) const
447 void Context::swapBuffers (void) const
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DFetchRequestData.h32 enum Context { ChildContext, ConnectContext, DownloadContext, FontContext, FormContext, ImageContext, ManifestContext, MediaContext, NavigateContext, ObjectContext, PingContext, PopupContext, PrefetchContext, ScriptContext, ServiceWorkerContext, SharedWorkerContext, StyleContext, WorkerContext, NullContext }; enum in class:blink::FINAL
100 Context m_context;
/external/chromium_org/third_party/jinja2/
H A Druntime.py70 return Context(environment, parent, template_name, blocks)
90 class Context(object): class in inherits:object
248 Mapping.register(Context)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp41 LLVMContext* Context; member in class:__anon13915::R600KernelParameters
335 PointerType::get(Type::getInt32Ty(*Context),
338 ConstantInt::get(Type::getInt32Ty(*Context),
352 ConstantInt::get(Type::getInt32Ty(*Context), P.getRatOffset()),
394 return new IntToPtrInst(ConstantInt::get(Type::getInt32Ty(*Context),
448 Context = &M.getContext();
/external/chromium_org/third_party/skia/include/core/
H A DSkShader.h136 class Context : public ::SkNoncopyable { class in class:SkShader
138 Context(const SkShader& shader, const ContextRec&);
140 virtual ~Context();
220 Context* createContext(const ContextRec&, void* storage) const;
223 * Return the size of a Context returned by createContext.
493 virtual Context* onCreateContext(const ContextRec&, void* storage) const;
/external/chromium_org/third_party/skia/tests/
H A DPDFPrimitivesTest.cpp439 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, argument
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DEdge.h51 typedef std::deque<Edge*> Context; typedef in class:RecursiveEdgeVisitor
52 Context& context() { return context_; }
68 Context context_;
/external/clang/lib/AST/
H A DCXXInheritance.cpp174 bool CXXBasePaths::lookupInBases(ASTContext &Context, argument
187 Context.getCanonicalType(BaseSpec.getType()).getUnqualifiedType();
266 if (lookupInBases(Context, BaseRecord, BaseMatches, UserData)) {
686 AddIndirectPrimaryBases(const CXXRecordDecl *RD, ASTContext &Context, argument
689 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
703 AddIndirectPrimaryBases(BaseDecl, Context, Bases);
710 ASTContext &Context = getASTContext(); local
725 AddIndirectPrimaryBases(BaseDecl, Context, Bases);

Completed in 2610 milliseconds

1234567891011>>