Home
last modified time | relevance | path

Searched refs:CompoundVal (Results 1 – 10 of 10) sorted by relevance

/freebsd-head/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDSVals.cpp159 QualType VisitCompoundVal(nonloc::CompoundVal CV) { in VisitCompoundVal()
220 nonloc::CompoundVal::iterator nonloc::CompoundVal::begin() const { in begin()
224 nonloc::CompoundVal::iterator nonloc::CompoundVal::end() const { in end()
315 const nonloc::CompoundVal& C = castAs<nonloc::CompoundVal>(); in dumpToStream()
HDRegionStore.cpp2031 if (isa<nonloc::LazyCompoundVal, nonloc::CompoundVal>(val)) in getBindingForDerivedDefaultValue()
2493 const nonloc::CompoundVal& CV = Init.castAs<nonloc::CompoundVal>(); in bindArray()
2494 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); in bindArray()
2537 if (!isa<nonloc::CompoundVal>(V)) { in bindVector()
2542 nonloc::CompoundVal CV = V.castAs<nonloc::CompoundVal>(); in bindVector()
2543 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); in bindVector()
2634 if (V.isUnknown() || !isa<nonloc::CompoundVal>(V)) in bindStruct()
2653 const nonloc::CompoundVal& CV = V.castAs<nonloc::CompoundVal>(); in bindStruct()
2654 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); in bindStruct()
HDProgramState.cpp589 bool ScanReachableSymbols::scan(nonloc::CompoundVal val) { in scan()
624 if (std::optional<nonloc::CompoundVal> X = val.getAs<nonloc::CompoundVal>()) in scan()
HDSValBuilder.cpp863 SVal VisitCompoundVal(nonloc::CompoundVal V) { in VisitCompoundVal()
HDBugReporterVisitors.cpp1066 if (isa<nonloc::LazyCompoundVal, nonloc::CompoundVal>(V)) in visitNodeInitial()
/freebsd-head/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
HDSVals.def60 NONLOC_SVAL(CompoundVal, NonLoc)
66 SVAL_RANGE(NonLoc, CompoundVal, PointerToMember)
HDSVals.h329 class CompoundVal : public NonLoc {
332 explicit CompoundVal(const CompoundValData *D) : NonLoc(CompoundValKind, D) { in CompoundVal() function
HDSValBuilder.h263 return nonloc::CompoundVal(BasicVals.getCompoundValData(type, vals)); in makeCompoundVal()
HDProgramState.h904 bool scan(nonloc::CompoundVal val);
/freebsd-head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDNonNullParamChecker.cpp155 auto CSV = DV->getAs<nonloc::CompoundVal>(); in checkPreCall()