HomeSort by relevance Sort by last modified time
    Searched full:bt_undef (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCAtSyncChecker.cpp 30 mutable OwningPtr<BuiltinBug> BT_undef;
47 if (!BT_undef)
48 BT_undef.reset(new BuiltinBug("Uninitialized value used as mutex "
51 new BugReport(*BT_undef, BT_undef->getDescription(), N);
ReturnUndefChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT_Undef;
96 if (!BT_Undef)
97 BT_Undef.reset(new BuiltinBug("Garbage return value",
100 emitBug(C, *BT_Undef, RetE);
DereferenceChecker.cpp 33 mutable OwningPtr<BuiltinBug> BT_undef;
182 if (!BT_undef)
183 BT_undef.reset(new BuiltinBug("Dereference of undefined pointer value"));
186 new BugReport(*BT_undef, BT_undef->getDescription(), N);

Completed in 350 milliseconds