Home | History | Annotate | Download | only in Checkers

Lines Matching full:leaked

315       Out << "Leaked";
319 Out << "Leaked (Bad naming)";
323 Out << "Leaked (GC-ed at return)";
2221 // The location context of the init method called on the leaked object, if
2333 os << "Object leaked: ";
2378 << "' is potentially leaked when using garbage collection. Callers "
2669 SmallVectorImpl<SymbolRef> &Leaked) const;
2677 SmallVectorImpl<SymbolRef> &Leaked,
3809 SmallVectorImpl<SymbolRef> &Leaked) const {
3830 Leaked.push_back(sid);
3836 SmallVectorImpl<SymbolRef> &Leaked,
3844 I = Leaked.begin(), E = Leaked.end(); I != E; ++I) {
3888 SmallVector<SymbolRef, 10> Leaked;
3891 state = handleSymbolDeath(state, I->first, I->second, Leaked);
3893 processLeaks(state, Leaked, Ctx, Pred);
3915 SmallVector<SymbolRef, 10> Leaked;
3931 state = handleSymbolDeath(state, *I, *getRefBinding(state, Sym), Leaked);
3935 if (Leaked.empty()) {
3940 Pred = processLeaks(state, Leaked, C, Pred);
3947 // The only bindings left at this point are the leaked symbols.
3951 for (SmallVectorImpl<SymbolRef>::iterator I = Leaked.begin(),
3952 E = Leaked.end();