Home | History | Annotate | Download | only in Checkers

Lines Matching refs:BT

43                              const char *BT_desc, llvm::OwningPtr<BugType> &BT);
45 const Expr *argEx, const char *BT_desc, llvm::OwningPtr<BugType> &BT);
47 static void EmitBadCall(BugType *BT, CheckerContext &C, const CallExpr *CE);
55 static void LazyInit_BT(const char *desc, llvm::OwningPtr<BugType> &BT) {
56 if (!BT)
57 BT.reset(new BuiltinBug(desc));
62 void CallAndMessageChecker::EmitBadCall(BugType *BT, CheckerContext &C,
68 BugReport *R = new BugReport(*BT, BT->getName(), N);
77 llvm::OwningPtr<BugType> &BT) {
81 BT_desc, BT))
89 llvm::OwningPtr<BugType> &BT) {
93 LazyInit_BT(BT_desc, BT);
96 BugReport *R = new BugReport(*BT, BT->getName(), N);
156 LazyInit_BT(BT_desc, BT);
178 BugReport *R = new BugReport(*BT, os.str(), N);