Home
last modified time | relevance | path

Searched refs:bindLoc (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCXXSelfAssignmentChecker.cpp54 ProgramStateRef SelfAssignState = State->bindLoc(Param, ThisVal, LCtx); in checkBeginFunction()
56 ProgramStateRef NonSelfAssignState = State->bindLoc(Param, ParamVal, LCtx); in checkBeginFunction()
H A DCStringChecker.cpp2087 State = State->bindLoc(*SearchStrLoc, in evalStrsep()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h244 LLVM_NODISCARD ProgramStateRef bindLoc(Loc location, SVal V,
248 LLVM_NODISCARD ProgramStateRef bindLoc(SVal location, SVal V,
733 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V, const LocationContext *LCtx) const { in bindLoc() function
735 return bindLoc(*L, V, LCtx); in bindLoc()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp79 nextState = nextState->bindLoc(elementV, V, LCtx); in populateObjCForDestinationSet()
H A DExprEngineCXX.cpp836 state = state->bindLoc(state->getLValue(VD, LCtx), V, LCtx); in VisitCXXCatchStmt()
891 State = State->bindLoc(FieldLoc, InitVal, LocCtxt); in VisitLambdaExpr()
H A DExprEngine.cpp413 State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false); in createTemporaryRegionIfNeeded()
425 State->bindLoc(Reg.castAs<Loc>(), InitValWithAdjustments, LC, false); in createTemporaryRegionIfNeeded()
427 State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false); in createTemporaryRegionIfNeeded()
2647 escapes = (State == (State->bindLoc(*regionLoc, Val, LCtx))); in processPointerEscapedOnBind()
2743 state = state->bindLoc(location.castAs<Loc>(), in evalBind()
2930 state = state->bindLoc(*LV, UnknownVal(), Pred->getLocationContext()); in VisitGCCAsmStmt()
H A DExprEngineC.cpp241 State = State->bindLoc(loc::MemRegionVal(capturedR), originalV, LCtx); in VisitBlockExpr()
554 State = State->bindLoc(CLLoc, V, LCtx); in VisitCompoundLiteralExpr()
H A DProgramState.cpp120 ProgramStateRef ProgramState::bindLoc(Loc LV, in bindLoc() function in ProgramState