Home
last modified time | relevance | path

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

/NW4C-1.2.23/include/nw/ut/
Dut_Iterator.h113 explicit reverse_iterator(TIt it) : m_Current(it) {}
115 explicit reverse_iterator(const reverse_iterator<T>& rhs ) : m_Current( rhs.GetBase() ) {}
117 TIt GetBase() const { return m_Current; }
118 reference operator*() const { TIt tmp = m_Current; return (*--tmp); }
121 Self& operator++() { (void)--m_Current; return *this; }
122 Self operator++(int) { Self tmp = *this; (void)--m_Current; return tmp; }
123 Self& operator--() { (void)++m_Current; return *this;}
124 Self operator--(int) { Self tmp = *this; (void)++m_Current; return tmp; }
126 friend bool operator==(const Self &r1_,const Self &r2_) { return r1_.m_Current==r2_.m_Current; }
131 TIt m_Current;
/NW4C-1.2.23/demos/Nw4cDemo/sources/
DSmInitialFileParser.cpp29 m_Current( NULL ) in SmInitialFileParser()
55 m_Current = m_Top; in Load()
76 char* curChar = m_Current; in _createCmdTree()
/NW4C-1.2.23/demos/Nw4cDemo/include/
DSmInitialFileParser.h286 char* m_Current; variable