Lines Matching refs:ArrayWithCursor
506 template <typename Member> class ArrayWithCursor {
508 …ArrayWithCursor() : mState(S_Initial), mMembers(nullptr), mCapacity(0), mSize(0), mCursor(~size_t(… in ArrayWithCursor() function
510 ~ArrayWithCursor() { delete [] mMembers; } in ~ArrayWithCursor()
512 ArrayWithCursor(const ArrayWithCursor &) = delete;
513 void operator=(const ArrayWithCursor &) = delete;
614 ArrayWithCursor<llvm::StringRef> mIns;
615 ArrayWithCursor<llvm::StringRef> mParams;
636 ArrayWithCursor<Invokable> mInvokables;
695 ArrayWithCursor<Reduce> mReduces;
711 ArrayWithCursor<Variable> mVariables;
714 ArrayWithCursor<File> mFiles;
718 void begin(ArrayWithCursor<Member> File::*Array, size_t Count) { in begin()