Home
last modified time | relevance | path

Searched refs:IteratorBase (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h133 class IteratorBase {
135 explicit IteratorBase(ItemTy *current) : current_(current) {} in IteratorBase() function
136 IteratorBase &operator++() {
140 bool operator!=(IteratorBase other) const {
150 typedef IteratorBase<Item> Iterator;
151 typedef IteratorBase<const Item> ConstIterator;
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DAllocatorList.h88 template <class ValueT, class IteratorBase>
90 : public iterator_adaptor_base<IteratorImpl<ValueT, IteratorBase>,
91 IteratorBase,
98 iterator_adaptor_base<IteratorImpl<ValueT, IteratorBase>, IteratorBase,
110 explicit IteratorImpl(const IteratorBase &I) : base_type(I) {} in IteratorImpl()
115 OtherIteratorBase, IteratorBase>::value>::type * = nullptr)
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclBase.h1207 using IteratorBase = variable
1212 class iterator : public IteratorBase {
1217 : IteratorBase(Pos), SingleElement(Single) {} in IteratorBase() function
1220 return SingleElement ? SingleElement : IteratorBase::operator*();