Home
last modified time | relevance | path

Searched refs:NewPos (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSTLAlgorithmModeling.cpp148 const auto *NewPos = getIteratorPosition(StateFound, RetVal); in Find() local
149 assert(NewPos && "Failed to create new iterator position."); in Find()
152 nonloc::SymbolVal(NewPos->getOffset()), in Find()
170 const auto *NewPos = getIteratorPosition(StateFound, RetVal); in Find() local
171 assert(NewPos && "Failed to create new iterator position."); in Find()
174 nonloc::SymbolVal(NewPos->getOffset()), in Find()
H A DIteratorModeling.cpp551 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleIncrement() local
552 assert(NewPos && in handleIncrement()
555 State = setIteratorPosition(State, Iter, *NewPos); in handleIncrement()
556 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleIncrement()
577 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleDecrement() local
578 assert(NewPos && in handleDecrement()
581 State = setIteratorPosition(State, Iter, *NewPos); in handleDecrement()
582 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleDecrement()
613 const auto *NewPos = getIteratorPosition(AdvancedState, Iterator); in handleRandomIncrOrDecr() local
614 assert(NewPos && in handleRandomIncrOrDecr()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h171 void setCurrentPosition(size_t NewPos) { CurrentPosition = NewPos; }
173 setCurrentPosition(size_t NewPos) setCurrentPosition() argument
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp445 char *NewPos = std::copy(Buffer->getBufferStart(), Position, NewBuf); in SetCodeCompletionPoint() local
446 *NewPos = '\0'; in SetCodeCompletionPoint()
447 std::copy(Position, Buffer->getBufferEnd(), NewPos+1); in SetCodeCompletionPoint()