Home | History | Annotate | Download | only in Checkers

Lines Matching refs:BT

96     mutable OwningPtr<APIMisuse> BT;
110 if (!BT)
111 BT.reset(new APIMisuse("nil argument"));
119 BugReport *R = new BugReport(*BT, os.str(), N);
196 mutable OwningPtr<APIMisuse> BT;
366 if (!BT)
367 BT.reset(new APIMisuse("Bad use of CFNumberCreate"));
369 BugReport *report = new BugReport(*BT, os.str(), N);
381 mutable OwningPtr<APIMisuse> BT;
401 if (!BT) {
406 BT.reset(
452 BugReport *report = new BugReport(*BT, description, N);
473 mutable OwningPtr<BugType> BT;
483 if (!BT) {
484 BT.reset(new APIMisuse("message incorrectly sent to class instead of class "
511 BugReport *report = new BugReport(*BT, os.str(), N);
530 mutable OwningPtr<BugType> BT;
589 if (!BT) {
590 BT.reset(new APIMisuse("Arguments passed to variadic method aren't all "
664 BugReport *R = new BugReport(*BT, os.str(), errorNode.getValue());