Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DSVals.cpp162 nonloc::CompoundVal::iterator nonloc::CompoundVal::begin() const { in begin()
166 nonloc::CompoundVal::iterator nonloc::CompoundVal::end() const { in end()
280 const nonloc::CompoundVal& C = castAs<nonloc::CompoundVal>(); in dumpToStream()
283 for (nonloc::CompoundVal::iterator I=C.begin(), E=C.end(); I!=E; ++I) { in dumpToStream()
DRegionStore.cpp2081 const nonloc::CompoundVal& CV = Init.castAs<nonloc::CompoundVal>(); in bindArray()
2082 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); in bindArray()
2125 if (!V.getAs<nonloc::CompoundVal>()) { in bindVector()
2130 nonloc::CompoundVal CV = V.castAs<nonloc::CompoundVal>(); in bindVector()
2131 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); in bindVector()
2220 if (V.isUnknown() || !V.getAs<nonloc::CompoundVal>()) in bindStruct()
2223 const nonloc::CompoundVal& CV = V.castAs<nonloc::CompoundVal>(); in bindStruct()
2224 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); in bindStruct()
DProgramState.cpp521 bool ScanReachableSymbols::scan(nonloc::CompoundVal val) { in scan()
522 for (nonloc::CompoundVal::iterator I=val.begin(), E=val.end(); I!=E; ++I) in scan()
576 if (Optional<nonloc::CompoundVal> X = val.getAs<nonloc::CompoundVal>()) in scan()
DBugReporterVisitors.cpp272 V.getAs<nonloc::CompoundVal>()) in visitNodeInitial()
/external/clang/lib/StaticAnalyzer/Checkers/
DNonNullParamChecker.cpp115 if (Optional<nonloc::CompoundVal> CSV = in checkPreCall()
116 DV->getAs<nonloc::CompoundVal>()) { in checkPreCall()
117 nonloc::CompoundVal::iterator CSV_I = CSV->begin(); in checkPreCall()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSVals.h412 class CompoundVal : public NonLoc {
415 explicit CompoundVal(const CompoundValData* D) : NonLoc(CompoundValKind, D) {} in CompoundVal() function
428 CompoundVal() {} in CompoundVal() function
DSVals.def64 NONLOC_SVAL(CompoundVal, NonLoc)
DSValBuilder.h218 return nonloc::CompoundVal(BasicVals.getCompoundValData(type, vals)); in makeCompoundVal()
DProgramState.h844 bool scan(nonloc::CompoundVal val);