Home
last modified time | relevance | path

Searched refs:PartIterator (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DDXContainer.h301 friend class PartIterator; variable
307 class PartIterator {
318 PartIterator(const DXContainer &C, in PartIterator() function
340 PartIterator &operator++() {
348 PartIterator operator++(int) {
349 PartIterator Tmp = *this;
354 bool operator==(const PartIterator &RHS) const {
358 bool operator!=(const PartIterator &RHS) const {
366 PartIterator begin() const { in begin()
367 return PartIterator(*this, PartOffsets.begin()); in begin()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp220 void DXContainer::PartIterator::updateIteratorImpl(const uint32_t Offset) { in updateIteratorImpl()