Searched refs:m_Current (Results 1 – 3 of 3) sorted by relevance
115 explicit reverse_iterator(TIt it) : m_Current(it) {}117 explicit reverse_iterator(const reverse_iterator<T>& rhs ) : m_Current( rhs.GetBase() ) {}119 TIt GetBase() const { return m_Current; }120 reference operator*() const { TIt tmp = m_Current; return (*--tmp); }123 Self& operator++() { (void)--m_Current; return *this; }124 Self operator++(int) { Self tmp = *this; (void)--m_Current; return tmp; }125 Self& operator--() { (void)++m_Current; return *this;}126 Self operator--(int) { Self tmp = *this; (void)++m_Current; return tmp; }128 friend bool operator==(const Self &r1_,const Self &r2_) { return r1_.m_Current==r2_.m_Current; }133 TIt m_Current;
31 m_Current( NULL ) in SmInitialFileParser()57 m_Current = m_Top; in Load()78 char* curChar = m_Current; in _createCmdTree()
288 char* m_Current; variable