Home | History | Annotate | Download | only in Checkers

Lines Matching full:leaked

314       Out << "Leaked";
318 Out << "Leaked (Bad naming)";
322 Out << "Leaked (GC-ed at return)";
2220 // The location context of the init method called on the leaked object, if
2332 os << "Object leaked: ";
2377 << "' is potentially leaked when using garbage collection. Callers "
2668 SmallVectorImpl<SymbolRef> &Leaked) const;
2676 SmallVectorImpl<SymbolRef> &Leaked,
3816 SmallVectorImpl<SymbolRef> &Leaked) const {
3837 Leaked.push_back(sid);
3843 SmallVectorImpl<SymbolRef> &Leaked,
3851 I = Leaked.begin(), E = Leaked.end(); I != E; ++I) {
3895 SmallVector<SymbolRef, 10> Leaked;
3898 state = handleSymbolDeath(state, I->first, I->second, Leaked);
3900 processLeaks(state, Leaked, Ctx, Pred);
3922 SmallVector<SymbolRef, 10> Leaked;
3938 state = handleSymbolDeath(state, *I, *getRefBinding(state, Sym), Leaked);
3942 if (Leaked.empty()) {
3947 Pred = processLeaks(state, Leaked, C, Pred);
3954 // The only bindings left at this point are the leaked symbols.
3958 for (SmallVectorImpl<SymbolRef>::iterator I = Leaked.begin(),
3959 E = Leaked.end();