Home | History | Annotate | Download | only in Checkers

Lines Matching full:leaked

309       Out << "Leaked";
313 Out << "Leaked (Bad naming)";
317 Out << "Leaked (GC-ed at return)";
2161 // The location context of the init method called on the leaked object, if
2270 os << "Object leaked: ";
2315 << "' is potentially leaked when using garbage collection. Callers "
2601 SmallVectorImpl<SymbolRef> &Leaked) const;
2609 SmallVectorImpl<SymbolRef> &Leaked,
3591 SmallVectorImpl<SymbolRef> &Leaked) const {
3601 Leaked.push_back(sid);
3607 SmallVectorImpl<SymbolRef> &Leaked,
3615 I = Leaked.begin(), E = Leaked.end(); I != E; ++I) {
3660 SmallVector<SymbolRef, 10> Leaked;
3663 state = handleSymbolDeath(state, I->first, I->second, Leaked);
3665 processLeaks(state, Leaked, Ctx, Pred);
3687 SmallVector<SymbolRef, 10> Leaked;
3703 state = handleSymbolDeath(state, *I, *getRefBinding(state, Sym), Leaked);
3707 if (Leaked.empty()) {
3712 Pred = processLeaks(state, Leaked
3719 // The only bindings left at this point are the leaked symbols.
3723 for (SmallVectorImpl<SymbolRef>::iterator I = Leaked.begin(),
3724 E = Leaked.end();