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

  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 52 state = state->bindLoc(loc::MemRegionVal(R), V);
124 state = state->bindLoc(loc::MemRegionVal(ThisR), loc::MemRegionVal(Dest));
169 state = state->bindLoc(loc::MemRegionVal(ThisR), loc::MemRegionVal(Dest));
246 state = state->bindLoc(loc::MemRegionVal(EleReg), V);
250 state = state->bindLoc(loc::MemRegionVal(EleReg), UndefinedVal());
280 state = state->bindLoc(state->getLValue(VD, LCtx), V);
ExprEngineObjC.cpp 118 hasElems = hasElems->bindLoc(elementV, V);
122 noElems = noElems->bindLoc(elementV, nilV);
ExprEngine.cpp 384 state = state->bindLoc(FieldLoc, InitVal);
    [all...]
ProgramState.cpp 134 ProgramStateRef ProgramState::bindLoc(Loc LV, SVal V) const {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 208 ProgramStateRef bindLoc(Loc location, SVal V) const;
210 ProgramStateRef bindLoc(SVal location, SVal V) const;
631 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V) const {
632 return !isa<Loc>(LV) ? this : bindLoc(cast<Loc>(LV), V);
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]

Completed in 3352 milliseconds