Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DSTLAlgorithmModeling.cpp126 const auto *NewPos = getIteratorPosition(StateFound, RetVal); in Find() local
127 assert(NewPos && "Failed to create new iterator position."); in Find()
130 nonloc::SymbolVal(NewPos->getOffset()), in Find()
148 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()
H A DIteratorModeling.cpp555 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleIncrement() local
556 assert(NewPos && in handleIncrement()
559 State = setIteratorPosition(State, Iter, *NewPos); in handleIncrement()
560 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleIncrement()
581 const auto *NewPos = getIteratorPosition(NewState, Iter); in handleDecrement() local
582 assert(NewPos && in handleDecrement()
585 State = setIteratorPosition(State, Iter, *NewPos); in handleDecrement()
586 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleDecrement()
618 const auto *NewPos = getIteratorPosition(AdvancedState, Iterator); in handleRandomIncrOrDecr() local
619 assert(NewPos && in handleRandomIncrOrDecr()
[all …]
H A DIterator.cpp250 const auto NewPos = in advancePosition() local
255 return setIteratorPosition(State, Iter, NewPos); in advancePosition()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DUtility.h130 void setCurrentPosition(size_t NewPos) { CurrentPosition = NewPos; } in setCurrentPosition() argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPreprocessor.cpp435 char *NewPos = std::copy(Buffer->getBufferStart(), Position, NewBuf); in SetCodeCompletionPoint() local
436 *NewPos = '\0'; in SetCodeCompletionPoint()
437 std::copy(Position, Buffer->getBufferEnd(), NewPos+1); in SetCodeCompletionPoint()