Home | History | Annotate | Download | only in Checkers

Lines Matching defs:LOpts

1794     void addGCModeDescription(const LangOptions &LOpts, bool GCEnabled);
1797 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1803 addGCModeDescription(LOpts, GCEnabled);
1806 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1811 addGCModeDescription(LOpts, GCEnabled);
1825 CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1837 void CFRefReport::addGCModeDescription(const LangOptions &LOpts,
1841 switch (LOpts.getGC()) {
2389 CFRefLeakReport::CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts,
2394 : CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) {
2540 CFRefBug *getLeakWithinFunctionBug(const LangOptions &LOpts,
2549 if (LOpts.getGC() == LangOptions::HybridGC) {
2562 CFRefBug *getLeakAtReturnBug(const LangOptions &LOpts, bool GCEnabled) const {
2571 if (LOpts.getGC() == LangOptions::HybridGC) {
3572 const LangOptions &LOpts = C.getASTContext().getLangOpts();
3575 *getLeakAtReturnBug(LOpts, GCEnabled), LOpts, GCEnabled,
3804 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3806 new CFRefReport(*overAutorelease, LOpts, /* GCEnabled = */ false,
3853 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3855 CFRefBug *BT = Pred ? getLeakWithinFunctionBug(LOpts, GCEnabled)
3856 : getLeakAtReturnBug(LOpts, GCEnabled);
3860 new CFRefLeakReport(*BT, LOpts, GCEnabled, SummaryLog, N, *I, Ctx,