HomeSort by relevance Sort by last modified time
    Searched refs:Ctx (Results 76 - 100 of 343) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/include/clang/Analysis/
AnalysisContext.h 62 // static [Derived*] create(AnalysisDeclContext &Ctx);
215 AnalysisDeclContext *Ctx;
220 LocationContext(ContextKind k, AnalysisDeclContext *ctx,
222 : Kind(k), Ctx(ctx), Parent(parent) {}
229 AnalysisDeclContext *getAnalysisDeclContext() const { return Ctx; }
249 return Ctx->getSelfDecl();
265 AnalysisDeclContext *ctx,
281 StackFrameContext(AnalysisDeclContext *ctx, const LocationContext *parent,
284 : LocationContext(StackFrame, ctx, parent), CallSite(s)
    [all...]
  /external/llvm/include/llvm/Target/
TargetLoweringObjectFile.h 36 MCContext *Ctx;
43 MCContext &getContext() const { return *Ctx; }
45 TargetLoweringObjectFile() : MCObjectFileInfo(), Ctx(0) {}
52 virtual void Initialize(MCContext &ctx, const TargetMachine &TM);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.h 80 MCContext &Ctx);
100 MCRelocationInfo *createX86_64MachORelocationInfo(MCContext &Ctx);
103 MCRelocationInfo *createX86_64ELFRelocationInfo(MCContext &Ctx);
X86MCAsmInfo.h 42 virtual const MCSection *getNonexecutableStackSection(MCContext &Ctx) const;
  /external/clang/lib/ARCMigrate/
TransAPIUses.cpp 40 SelectorTable &sels = Pass.Ctx.Selectors;
41 IdentifierTable &ids = Pass.Ctx.Idents;
100 Pass.TA.replace(E->getSourceRange(), getNilString(Pass.Ctx));
109 APIChecker(pass).TraverseDecl(pass.Ctx.getTranslationUnitDecl());
TransUnusedInitDelegate.cpp 61 retStr += getNilString(Pass.Ctx);
77 trans.TraverseDecl(pass.Ctx.getTranslationUnitDecl());
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 29 MicrosoftCXXABI(ASTContext &Ctx) : Context(Ctx) { }
178 CXXABI *clang::CreateMicrosoftCXXABI(ASTContext &Ctx) {
179 return new MicrosoftCXXABI(Ctx);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCInstMethSignature.cpp 42 BugReporter &BR, ASTContext &Ctx,
48 if (!AreTypesCompatible(ResDerived, ResAncestor, Ctx)) {
88 ASTContext &Ctx = BR.getContext();
121 CompareReturnTypes(MethDerived, M, BR, Ctx, ID);
BasicObjCFoundationChecks.cpp 343 static Optional<uint64_t> GetCFNumberSize(ASTContext &Ctx, uint64_t i) {
352 case kCFNumberCharType: T = Ctx.CharTy; break;
353 case kCFNumberShortType: T = Ctx.ShortTy; break;
354 case kCFNumberIntType: T = Ctx.IntTy; break;
355 case kCFNumberLongType: T = Ctx.LongTy; break;
356 case kCFNumberLongLongType: T = Ctx.LongLongTy; break;
357 case kCFNumberFloatType: T = Ctx.FloatTy; break;
358 case kCFNumberDoubleType: T = Ctx.DoubleTy; break;
367 return Ctx.getTypeSize(T);
402 ASTContext &Ctx = C.getASTContext()
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.h 41 MCContext &Ctx);
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.h 29 MCContext *Ctx;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h 41 MCContext &Ctx);
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUMCTargetDesc.h 41 MCContext &Ctx);
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCTargetDesc.h 55 MCContext &Ctx);
  /external/llvm/lib/Target/SystemZ/
SystemZMCInstLower.cpp 38 SystemZMCInstLower::SystemZMCInstLower(Mangler *mang, MCContext &ctx,
40 : Mang(mang), Ctx(ctx), AsmPrinter(asmprinter) {}
46 const MCExpr *Expr = MCSymbolRefExpr::Create(Symbol, Kind, Ctx);
48 const MCExpr *OffsetExpr = MCConstantExpr::Create(Offset, Ctx);
49 Expr = MCBinaryExpr::CreateAdd(Expr, OffsetExpr, Ctx);
SystemZMCInstLower.h 28 MCContext &Ctx;
32 SystemZMCInstLower(Mangler *mang, MCContext &ctx,
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 32 Ctx = C;
68 const MCSymbolRefExpr *MCSym = MCSymbolRefExpr::Create(Symbol, Kind, *Ctx);
76 const MCConstantExpr *OffsetExpr = MCConstantExpr::Create(Offset, *Ctx);
77 const MCBinaryExpr *Add = MCBinaryExpr::CreateAdd(MCSym, OffsetExpr, *Ctx);
XCoreMCInstLower.h 27 MCContext *Ctx;
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 321 SourceMgr &SrcMgr, MCContext &Ctx, MCStreamer &Str,
323 OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr, Ctx,
391 MCContext Ctx(MAI.get(), MRI.get(), MOFI.get(), &SrcMgr);
392 MOFI->InitMCObjectFileInfo(TripleName, RelocModel, CMModel, Ctx);
395 Ctx.setAllowTemporaryLabels(false);
397 Ctx.setGenDwarfForAssembly(GenDwarfForAssembly);
399 Ctx.setDwarfDebugFlags(StringRef(DwarfDebugFlags));
401 Ctx.setDwarfDebugProducer(StringRef(DwarfDebugProducer));
403 Ctx.setCompilationDir(DebugCompilationDir);
405 Ctx.setMainFileName(MainFileName)
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 136 LLVMContext *Ctx;
410 Ctx = &M.getContext();
464 if (SP != getDISubprogram(Loc.getScope(*Ctx))) continue;
506 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
583 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
592 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
595 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
630 Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
667 Type::getInt8PtrTy(*Ctx), // const char *orig_filename
668 Type::getInt8PtrTy(*Ctx), // const char version[4
    [all...]
  /external/llvm/include/llvm/ADT/
FoldingSet.h 242 template<typename T, typename Ctx> struct ContextualFoldingSetTrait;
246 template<typename T, typename Ctx>
248 static void Profile(T &X, FoldingSetNodeID &ID, Ctx Context) {
252 FoldingSetNodeID &TempID, Ctx Context);
254 Ctx Context);
259 template<typename T, typename Ctx> struct ContextualFoldingSetTrait
260 : public DefaultContextualFoldingSetTrait<T, Ctx> {};
366 template<typename T, typename Ctx>
368 DefaultContextualFoldingSetTrait<T, Ctx>::Equals(T &X,
372 Ctx Context)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
AnalysisManager.h 33 ASTContext &Ctx;
47 AnalysisManager(ASTContext &ctx,DiagnosticsEngine &diags,
80 return Ctx;
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 30 ASTContext &Ctx = CXXUnit->getASTContext();
61 InclusionStack.push_back(cxloc::translateSourceLocation(Ctx, L));
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 18 MCContext &Ctx) {
19 return new (Ctx) ARMMCExpr(Kind, Expr);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.h 39 MCContext &Ctx);
43 MCContext &Ctx);

Completed in 469 milliseconds

1 2 34 5 6 7 8 91011>>