Searched defs:Context (Results 226 - 250 of 465) sorted by relevance

1234567891011>>

/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp28 NestedNameSpecifier::FindOrInsert(const ASTContext &Context, argument
35 = Context.NestedNameSpecifiers.FindNodeOrInsertPos(ID, InsertPos);
37 NNS = new (Context, llvm::alignOf<NestedNameSpecifier>())
39 Context.NestedNameSpecifiers.InsertNode(NNS, InsertPos);
46 NestedNameSpecifier::Create(const ASTContext &Context, argument
55 return FindOrInsert(Context, Mockup);
59 NestedNameSpecifier::Create(const ASTContext &Context, argument
71 return FindOrInsert(Context, Mockup);
75 NestedNameSpecifier::Create(const ASTContext &Context, argument
87 return FindOrInsert(Context, Mocku
91 Create(const ASTContext &Context, NestedNameSpecifier *Prefix, bool Template, const Type *T) argument
103 Create(const ASTContext &Context, IdentifierInfo *II) argument
113 GlobalSpecifier(const ASTContext &Context) argument
502 Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL, SourceLocation ColonColonLoc) argument
515 Extend(ASTContext &Context, IdentifierInfo *Identifier, SourceLocation IdentifierLoc, SourceLocation ColonColonLoc) argument
527 Extend(ASTContext &Context, NamespaceDecl *Namespace, SourceLocation NamespaceLoc, SourceLocation ColonColonLoc) argument
539 Extend(ASTContext &Context, NamespaceAliasDecl *Alias, SourceLocation AliasLoc, SourceLocation ColonColonLoc) argument
550 MakeGlobal(ASTContext &Context, SourceLocation ColonColonLoc) argument
559 MakeTrivial(ASTContext &Context, NestedNameSpecifier *Qualifier, SourceRange R) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp31 ASTContext &Context = CGF.getContext(); local
33 CharUnits alignment = Context.getDeclAlign(&D);
387 SourceManager &SM = Context.getSourceManager();
/external/clang/lib/Frontend/
H A DMultiplexConsumer.cpp217 void MultiplexConsumer::Initialize(ASTContext &Context) { argument
219 Consumers[i]->Initialize(Context);
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp372 static bool shouldBeModeledWithNoOp(ASTContext &Context, QualType ToTy, argument
374 while (Context.UnwrapSimilarPointerTypes(ToTy, FromTy)) {
376 ToTy = Context.getUnqualifiedArrayType(ToTy, Quals1);
377 FromTy = Context.getUnqualifiedArrayType(FromTy, Quals2);
400 castTy = Context.getCanonicalType(castTy);
401 originalTy = Context.getCanonicalType(originalTy);
430 if (shouldBeModeledWithNoOp(Context, Context.getPointerType(castTy),
431 Context.getPointerType(originalTy)))
/external/clang/tools/scan-view/
H A DScanView.py425 class Context: class in function:ScanViewRequestHandler.get_report_context
432 c = Context()
477 c = Context()
/external/libnfc-nxp/src/
H A DphLibNfc_ndef_raw.c75 void phLibNfc_Ndef_Write_Cb(void* Context,NFCSTATUS status);
79 void phLibNfc_Ndef_Read_Cb(void* Context,NFCSTATUS status);
83 void phLibNfc_Ndef_format_Cb(void *Context,NFCSTATUS status);
276 void phLibNfc_Ndef_Read_Cb(void* Context,NFCSTATUS status) argument
280 phLibNfc_LibContext_t *pLibNfc_Ctxt = (phLibNfc_LibContext_t *)Context;
526 void phLibNfc_Ndef_Write_Cb(void* Context,NFCSTATUS status) argument
530 phLibNfc_LibContext_t *pLibNfc_Ctxt = (phLibNfc_LibContext_t *)Context;
641 /*Allocate memory for NDEF Mapping Component Context Structure*/
1536 void phLibNfc_Ndef_format_Cb(void *Context,NFCSTATUS status) argument
1540 phLibNfc_LibContext_t *pLibNfc_Ctxt = (phLibNfc_LibContext_t *)Context;
[all...]
/external/lldb/tools/debugserver/source/MacOSX/i386/
H A DDNBArchImplI386.h110 struct Context struct in class:DNBArchImplI386
123 Context context;
/external/lldb/tools/debugserver/source/MacOSX/x86_64/
H A DDNBArchImplX86_64.h109 struct Context struct in class:DNBArchImplX86_64
122 Context context;
/external/llvm/include/llvm/CodeGen/
H A DMachineModuleInfo.h98 /// Context - This is the MCContext used for the entire code generator.
99 MCContext Context; member in class:llvm::MachineModuleInfo
193 const MCContext &getContext() const { return Context; }
194 MCContext &getContext() { return Context; }
H A DValueTypes.h62 static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth) { argument
66 return getExtendedIntegerVT(Context, BitWidth);
71 static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements) { argument
75 return getExtendedVectorVT(Context, VT, NumElements);
259 EVT getRoundIntegerType(LLVMContext &Context) const {
264 return getIntegerVT(Context, 1 << Log2_32_Ceil(BitWidth));
271 EVT getHalfSizedIntegerVT(LLVMContext &Context) const {
280 return getIntegerVT(Context, (EVTSize + 1) / 2);
285 EVT widenIntegerVectorElementType(LLVMContext &Context) const {
287 EltVT = EVT::getIntegerVT(Context,
[all...]
/external/llvm/include/llvm/IR/
H A DType.h78 /// Context - This refers to the LLVMContext in which this type was uniqued.
79 LLVMContext &Context; member in class:llvm::Type
90 : Context(C), IDAndSubclassData(0),
125 LLVMContext &getContext() const { return Context; }
/external/llvm/lib/CodeGen/
H A DShadowStackGC.cpp67 static GetElementPtrInst *CreateGEP(LLVMContext &Context,
70 static GetElementPtrInst *CreateGEP(LLVMContext &Context,
350 ShadowStackGC::CreateGEP(LLVMContext &Context, IRBuilder<> &B, Value *BasePtr, argument
352 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
353 ConstantInt::get(Type::getInt32Ty(Context), Idx),
354 ConstantInt::get(Type::getInt32Ty(Context), Idx2) };
363 ShadowStackGC::CreateGEP(LLVMContext &Context, IRBuilder<> &B, Value *BasePtr, argument
365 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
366 ConstantInt::get(Type::getInt32Ty(Context), Idx) };
376 LLVMContext &Context local
[all...]
/external/llvm/lib/IR/
H A DAutoUpgrade.cpp533 LLVMContext &Context = V->getContext(); local
537 Type *MidTy = Type::getInt64Ty(Context);
553 LLVMContext &Context = C->getContext(); local
557 Type *MidTy = Type::getInt64Ty(Context);
/external/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp66 : Context(getGlobalContext()), IRLinker(new Module("ld-temp.o", Context)),
417 llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(Context);
531 void *Context) {
532 ((LTOCodeGenerator *)Context)->DiagnosticHandler2(DI);
571 return Context.setDiagnosticHandler(nullptr, nullptr);
574 Context.setDiagnosticHandler(LTOCodeGenerator::DiagnosticHandler, this);
530 DiagnosticHandler(const DiagnosticInfo &DI, void *Context) argument
/external/llvm/lib/MC/
H A DMCELFStreamer.cpp544 MCStreamer *llvm::createELFStreamer(MCContext &Context, MCAsmBackend &MAB, argument
547 MCELFStreamer *S = new MCELFStreamer(Context, MAB, OS, CE);
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp324 MCContext &Context = MCA.getContext(); local
330 const MCSectionELF *Sec = Context.getELFSection(
348 Context.getELFSection(".reginfo", ELF::SHT_MIPS_REGINFO, ELF::SHF_ALLOC,
637 MCContext &Context = MCA.getContext(); local
640 Context.getELFSection(".MIPS.abiflags", ELF::SHT_MIPS_ABIFLAGS,
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp189 //LLVMContext &Context = M->getContext();
254 LLVMContext &Context = M->getContext();
272 BasicBlock *BB = BasicBlock::Create(Context, "entry", FStub);
273 InlineAsmHelper IAH(Context, BB);
328 new UnreachableInst(Context, BB);
445 LLVMContext &Context = M->getContext(); local
459 BasicBlock *BB = BasicBlock::Create(Context, "entry", FStub);
460 InlineAsmHelper IAH(Context, BB);
H A DMipsFastISel.cpp48 LLVMContext *Context; member in class:__anon26050::final
61 Context = &funcInfo.Fn->getContext();
/external/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp48 LLVMContext &Context = B.GetInsertBlock()->getContext(); local
52 TD->getIntPtrType(Context),
77 LLVMContext &Context = B.GetInsertBlock()->getContext(); local
81 TD->getIntPtrType(Context),
83 TD->getIntPtrType(Context),
134 LLVMContext &Context = B.GetInsertBlock()->getContext(); local
141 TD->getIntPtrType(Context), NULL);
214 LLVMContext &Context = B.GetInsertBlock()->getContext(); local
220 TD->getIntPtrType(Context),
221 TD->getIntPtrType(Context), NUL
243 LLVMContext &Context = B.GetInsertBlock()->getContext(); local
274 LLVMContext &Context = B.GetInsertBlock()->getContext(); local
471 LLVMContext &Context = B.GetInsertBlock()->getContext(); local
507 LLVMContext &Context = CI->getParent()->getContext(); local
[all...]
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.cpp391 DIContext *Context = DIContext::getDWARFContext(DbgObj); local
392 assert(Context);
393 ModuleInfo *Info = new ModuleInfo(Obj, Context);
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h36 LLVMContext Context; member in class:llvm::TrivialModuleBuilder
41 : Builder(Context), BuilderTriple(Triple) {}
44 Module * M = new Module(Name, Context);
52 TypeBuilder<FuncType, false>::get(Context),
55 BasicBlock *BB = BasicBlock::Create(Context, Name, Result);
88 Value *ReturnVal = ConstantInt::get(Context, APInt(32, returnCode));
132 Type *GlobalTy = TypeBuilder<types::i<32>, true>::get(Context);
133 Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));
160 BasicBlock *BaseCase = BasicBlock::Create(Context, "", Result);
161 BasicBlock *RecursiveCase = BasicBlock::Create(Context, "", Resul
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp41 LLVMContext* Context; member in class:__anon27326::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/skia/src/core/
H A DSkImageFilter.cpp100 const Context& context,
160 bool SkImageFilter::onFilterImage(Proxy*, const SkBitmap&, const Context&, argument
169 bool SkImageFilter::filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx,
220 bool SkImageFilter::applyCropRect(const Context& ctx, const SkBitmap& src,
241 bool SkImageFilter::applyCropRect(const Context& ctx, Proxy* proxy, const SkBitmap& src,
327 const SkBitmap& src, const Context& ctx,
/external/chromium_org/cc/output/
H A Dgl_renderer_unittest.cc774 // RenderClient and the Context by giving them both a pointer to a variable on
1712 EXPECT_CALL(*Context(), drawElements(_, _, _, _)).Times(1);
1723 OutputSurfaceMockContext* Context() { function in class:cc::__anon2723::MockOutputSurfaceTest
/external/chromium_org/chrome/browser/extensions/
H A Dmenu_manager.h87 enum Context { enum in class:extensions::MenuItem
114 explicit ContextList(Context context) : value_(context) {}
129 bool Contains(Context context) const {
133 void Add(Context context) {
151 uint32 value_; // A bitmask of Context values.

Completed in 2077 milliseconds

1234567891011>>