HomeSort by relevance Sort by last modified time
    Searched refs:BuiltinBug (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 51 class BuiltinBug : public BugType {
55 BuiltinBug(const char *name, const char *description)
58 BuiltinBug(const char *name)
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCAtSyncChecker.cpp 30 mutable OwningPtr<BuiltinBug> BT_null;
31 mutable OwningPtr<BuiltinBug> BT_undef;
49 BT_undef.reset(new BuiltinBug("Uninitialized value used as mutex "
73 BT_null.reset(new BuiltinBug("Nil value used as mutex for @synchronized() "
FixedAddressChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
55 BT.reset(new BuiltinBug("Use fixed address",
ReturnUndefChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
50 BT.reset(new BuiltinBug("Garbage return value",
ArrayBoundChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
69 BT.reset(new BuiltinBug("Out-of-bound array access",
CastToStructChecker.cpp 27 mutable OwningPtr<BuiltinBug> BT;
61 BT.reset(new BuiltinBug("Cast from non-struct type to struct type",
PointerArithChecker.cpp 27 mutable OwningPtr<BuiltinBug> BT;
56 BT.reset(new BuiltinBug("Dangerous pointer arithmetic",
PointerSubChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
65 BT.reset(new BuiltinBug("Pointer subtraction",
ReturnPointerRangeChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
72 BT.reset(new BuiltinBug("Return of pointer value outside of expected range",
UndefinedArraySubscriptChecker.cpp 40 BT.reset(new BuiltinBug("Array subscript is undefined"));
CastSizeChecker.cpp 26 mutable OwningPtr<BuiltinBug> BT;
72 BT.reset(new BuiltinBug("Cast region with wrong size.",
DivZeroChecker.cpp 26 mutable OwningPtr<BuiltinBug> BT;
40 BT.reset(new BuiltinBug("Division by zero"));
UndefBranchChecker.cpp 27 mutable OwningPtr<BuiltinBug> BT;
71 new BuiltinBug("Branch condition evaluates to a garbage value"));
BoolAssignmentChecker.cpp 26 mutable llvm::OwningPtr<BuiltinBug> BT;
37 BT.reset(new BuiltinBug("Assignment of a non-Boolean value"));
StackAddrEscapeChecker.cpp 29 mutable OwningPtr<BuiltinBug> BT_stackleak;
30 mutable OwningPtr<BuiltinBug> BT_returnstack;
100 new BuiltinBug("Return of address to stack-allocated memory"));
205 new BuiltinBug("Stack address stored into global variable",
DereferenceChecker.cpp 30 mutable OwningPtr<BuiltinBug> BT_null;
31 mutable OwningPtr<BuiltinBug> BT_undef;
85 BT_undef.reset(new BuiltinBug("Dereference of undefined pointer value"));
118 BT_null.reset(new BuiltinBug("Dereference of null pointer"));
UndefResultChecker.cpp 48 BT.reset(new BuiltinBug("Result of operation is garbage or undefined"));
UndefinedAssignmentChecker.cpp 49 BT.reset(new BuiltinBug(str));
CallAndMessageChecker.cpp 62 BT.reset(new BuiltinBug(desc));
220 BT_call_undef.reset(new BuiltinBug("Called function pointer is an "
229 new BuiltinBug("Called function pointer is null (null dereference)"));
252 BT_msg_undef.reset(new BuiltinBug("Receiver in message expression "
258 BT_objc_prop_undef.reset(new BuiltinBug("Property access on an "
300 new BuiltinBug("Receiver in message expression is "
ChrootChecker.cpp 44 mutable OwningPtr<BuiltinBug> BT_BreakJail;
145 BT_BreakJail.reset(new BuiltinBug("Break out of jail",
UndefCapturedBlockVarChecker.cpp 84 BT.reset(new BuiltinBug("uninitialized variable captured by block"));
StreamChecker.cpp 67 mutable OwningPtr<BuiltinBug> BT_nullfp, BT_illegalwhence,
285 BT_illegalwhence.reset(new BuiltinBug("Illegal whence argument",
363 BT_nullfp.reset(new BuiltinBug("NULL stream pointer",
393 BT_doubleclose.reset(new BuiltinBug("Double fclose",
421 BT_ResourceLeak.reset(new BuiltinBug("Resource Leak",
442 BT_ResourceLeak.reset(new BuiltinBug("Resource Leak",
ArrayBoundCheckerV2.cpp 31 mutable OwningPtr<BuiltinBug> BT;
191 BT.reset(new BuiltinBug("Out-of-bound access"));
IteratorsChecker.cpp 98 BuiltinBug *BT_Invalid, *BT_Undefined, *BT_Incompatible;
410 const_cast<IteratorsChecker*>(this)->BT_Invalid = new BuiltinBug("");
434 new BuiltinBug("Use of iterator that is not defined");
502 new BuiltinBug(
VLASizeChecker.cpp 53 BT.reset(new BuiltinBug("Dangerous variable-length array (VLA) declaration"));

Completed in 124 milliseconds

1 2