Home | History | Annotate | Download | only in Checkers

Lines Matching defs:LOpts

1749     void addGCModeDescription(const LangOptions &LOpts, bool GCEnabled);
1752 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1758 addGCModeDescription(LOpts, GCEnabled);
1761 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1766 addGCModeDescription(LOpts, GCEnabled);
1781 CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1793 void CFRefReport::addGCModeDescription(const LangOptions &LOpts,
1797 switch (LOpts.getGC()) {
2327 CFRefLeakReport::CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts,
2332 : CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) {
2478 CFRefBug *getLeakWithinFunctionBug(const LangOptions &LOpts,
2487 if (LOpts.getGC() == LangOptions::HybridGC) {
2499 CFRefBug *getLeakAtReturnBug(const LangOptions &LOpts, bool GCEnabled) const {
2507 if (LOpts.getGC() == LangOptions::HybridGC) {
3376 const LangOptions &LOpts = C.getASTContext().getLangOpts();
3379 new CFRefLeakReport(*getLeakAtReturnBug(LOpts, GCEnabled),
3380 LOpts, GCEnabled, SummaryLog,
3578 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3580 new CFRefReport(*overAutorelease, LOpts, /* GCEnabled = */ false,
3617 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3619 CFRefBug *BT = Pred ? getLeakWithinFunctionBug(LOpts, GCEnabled)
3620 : getLeakAtReturnBug(LOpts, GCEnabled);
3623 CFRefLeakReport *report = new CFRefLeakReport(*BT, LOpts, GCEnabled,