HomeSort by relevance Sort by last modified time
    Searched refs:ElementRegion (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 42 const ElementRegion *ER = dyn_cast<ElementRegion>(R);
ReturnPointerRangeChecker.cpp 45 const ElementRegion *ER = dyn_cast_or_null<ElementRegion>(R);
ArrayBoundCheckerV2.cpp 285 const ElementRegion *elemReg = cast<ElementRegion>(region);
CStringChecker.cpp 280 const ElementRegion *ER = dyn_cast<ElementRegion>(R);
822 // Are we dealing with an ElementRegion? If so, we should be invalidating
824 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 53 const ElementRegion *StoreManager::GetElementZeroRegion(const MemRegion *R,
130 // If we are casting from an ElementRegion to another type, the
133 // (1) Compute the "raw offset" of the ElementRegion from the
139 // casted-pointee type. If so, create a new ElementRegion with
142 // a new ElementRegion at offset 0 off the raw offset region.
149 const ElementRegion *elementR = cast<ElementRegion>(R);
171 // Otherwise, create a new ElementRegion at offset 0.
177 // we create an ElementRegion whose index is that value. Otherwise, we
181 // Compute the index for the new ElementRegion
    [all...]
MemRegion.cpp 341 void ElementRegion::ProfileRegion(llvm::FoldingSetNodeID& ID,
350 void ElementRegion::Profile(llvm::FoldingSetNodeID& ID) const {
351 ElementRegion::ProfileRegion(ID, ElementType, Index, superRegion);
480 void ElementRegion::dumpToStream(raw_ostream &os) const {
763 const ElementRegion*
771 ElementRegion::ProfileRegion(ID, T, Idx, superRegion);
775 ElementRegion* R = cast_or_null<ElementRegion>(data);
778 R = (ElementRegion*) A.Allocate<ElementRegion>();
    [all...]
RegionStore.cpp 84 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
345 SVal getBindingForElement(Store store, const ElementRegion *R);
    [all...]
SimpleSValBuilder.cpp 737 // ElementRegion path and the FieldRegion path below should be unified.
738 if (const ElementRegion *LeftER = dyn_cast<ElementRegion>(LeftMR)) {
739 // First see if the right region is also an ElementRegion.
740 const ElementRegion *RightER = dyn_cast<ElementRegion>(RightMR);
    [all...]
ExprEngineCallAndReturn.cpp 335 // Are we dealing with an ElementRegion? If the element type is
337 // is a variable region then strip off the ElementRegion.
342 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
ExprEngineCXX.cpp 183 const ElementRegion *EleReg =
ProgramState.cpp 668 if (const ElementRegion *ER = dyn_cast<ElementRegion>(Reg))
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 907 class ElementRegion;
911 friend class ElementRegion;
929 class ElementRegion : public TypedValueRegion {
935 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
    [all...]
Store.h 145 const ElementRegion *GetElementZeroRegion(const MemRegion *R, QualType T);

Completed in 73 milliseconds