Home | History | Annotate | Download | only in Checkers

Lines Matching defs:LOpts

1745     void addGCModeDescription(const LangOptions &LOpts, bool GCEnabled);
1748 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1754 addGCModeDescription(LOpts, GCEnabled);
1757 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1762 addGCModeDescription(LOpts, GCEnabled);
1777 CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1789 void CFRefReport::addGCModeDescription(const LangOptions &LOpts,
1793 switch (LOpts.getGC()) {
2315 CFRefLeakReport::CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts,
2320 : CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) {
2480 CFRefBug *getLeakWithinFunctionBug(const LangOptions &LOpts,
2489 if (LOpts.getGC() == LangOptions::HybridGC) {
2502 CFRefBug *getLeakAtReturnBug(const LangOptions &LOpts, bool GCEnabled) const {
2511 if (LOpts.getGC() == LangOptions::HybridGC) {
3419 const LangOptions &LOpts = C.getASTContext().getLangOpts();
3422 new CFRefLeakReport(*getLeakAtReturnBug(LOpts, GCEnabled),
3423 LOpts, GCEnabled, SummaryLog,
3631 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3633 new CFRefReport(*overAutorelease, LOpts, /* GCEnabled = */ false,
3670 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3672 CFRefBug *BT = Pred ? getLeakWithinFunctionBug(LOpts, GCEnabled)
3673 : getLeakAtReturnBug(LOpts, GCEnabled);
3676 CFRefLeakReport *report = new CFRefLeakReport(*BT, LOpts, GCEnabled,