Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCXXSelfAssignmentChecker.cpp54 ProgramStateRef SelfAssignState = State->bindLoc(Param, ThisVal, LCtx); in checkBeginFunction()
64 ProgramStateRef NonSelfAssignState = State->bindLoc(Param, ParamVal, LCtx); in checkBeginFunction()
H A DCStringChecker.cpp2111 State = State->bindLoc(*SearchStrLoc, in evalStrsep()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h241 LLVM_NODISCARD ProgramStateRef bindLoc(Loc location, SVal V,
245 LLVM_NODISCARD ProgramStateRef bindLoc(SVal location, SVal V,
709 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V, const LocationContext *LCtx) const { in bindLoc() function
711 return bindLoc(*L, V, LCtx); in bindLoc()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp76 nextState = nextState->bindLoc(elementV, V, LCtx); in populateObjCForDestinationSet()
H A DExprEngine.cpp426 State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false); in createTemporaryRegionIfNeeded()
438 State->bindLoc(Reg.castAs<Loc>(), InitValWithAdjustments, LC, false); in createTemporaryRegionIfNeeded()
440 State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false); in createTemporaryRegionIfNeeded()
2816 (State->bindLoc(loc::MemRegionVal(MR), LocAndVal.second, LCtx))) in processPointerEscapedOnBind()
2914 state = state->bindLoc(location.castAs<Loc>(), in evalBind()
3101 state = state->bindLoc(*LV, UnknownVal(), Pred->getLocationContext()); in VisitGCCAsmStmt()
H A DExprEngineCXX.cpp967 state = state->bindLoc(state->getLValue(VD, LCtx), V, LCtx); in VisitCXXCatchStmt()
1022 State = State->bindLoc(FieldLoc, InitVal, LocCtxt); in VisitLambdaExpr()
H A DExprEngineC.cpp244 State = State->bindLoc(loc::MemRegionVal(capturedR), originalV, LCtx); in VisitBlockExpr()
558 State = State->bindLoc(CLLoc, V, LCtx); in VisitCompoundLiteralExpr()
H A DProgramState.cpp117 ProgramStateRef ProgramState::bindLoc(Loc LV, in bindLoc() function in ProgramState