Lines Matching refs:i_rOther
113 StreamStr::StreamStr( const self & i_rOther ) in StreamStr() argument
115 nCapacity1( i_rOther.nCapacity1 ), in StreamStr()
116 dpData( new char [i_rOther.nCapacity1] ), in StreamStr()
117 pEnd( dpData + strlen(i_rOther.dpData) ), in StreamStr()
118 pCur( dpData + i_rOther.tellp() ), in StreamStr()
119 eMode(i_rOther.eMode) in StreamStr()
121 strcpy( dpData, i_rOther.dpData ); // SAFE STRCPY (#100211# - checked) in StreamStr()
150 StreamStr::operator=( const self & i_rOther ) in operator =() argument
154 nCapacity1 = i_rOther.nCapacity1; in operator =()
155 dpData = new char [i_rOther.nCapacity1]; in operator =()
156 pEnd = dpData + strlen(i_rOther.dpData); in operator =()
157 strcpy( dpData, i_rOther.dpData ); // SAFE STRCPY (#100211# - checked) in operator =()
158 pCur = dpData + i_rOther.tellp(); in operator =()
159 eMode = i_rOther.eMode; in operator =()