Lines Matching refs:rDesc

154 BasicEntryDescriptor::BasicEntryDescriptor( const BasicEntryDescriptor& rDesc )  in BasicEntryDescriptor()  argument
155 :m_aDocument( rDesc.m_aDocument ) in BasicEntryDescriptor()
156 ,m_eLocation( rDesc.m_eLocation ) in BasicEntryDescriptor()
157 ,m_aLibName( rDesc.m_aLibName ) in BasicEntryDescriptor()
158 ,m_aLibSubName( rDesc.m_aLibSubName ) in BasicEntryDescriptor()
159 ,m_aName( rDesc.m_aName ) in BasicEntryDescriptor()
160 ,m_aMethodName( rDesc.m_aMethodName ) in BasicEntryDescriptor()
161 ,m_eType( rDesc.m_eType ) in BasicEntryDescriptor()
165 BasicEntryDescriptor& BasicEntryDescriptor::operator=( const BasicEntryDescriptor& rDesc ) in operator =() argument
167 m_aDocument = rDesc.m_aDocument; in operator =()
168 m_eLocation = rDesc.m_eLocation; in operator =()
169 m_aLibName = rDesc.m_aLibName; in operator =()
170 m_aLibSubName = rDesc.m_aLibSubName; in operator =()
171 m_aName = rDesc.m_aName; in operator =()
172 m_aMethodName = rDesc.m_aMethodName; in operator =()
173 m_eType = rDesc.m_eType; in operator =()
178 bool BasicEntryDescriptor::operator==( const BasicEntryDescriptor& rDesc ) const in operator ==()
180 return m_aDocument == rDesc.m_aDocument && in operator ==()
181 m_eLocation == rDesc.m_eLocation && in operator ==()
182 m_aLibName == rDesc.m_aLibName && in operator ==()
183 m_aLibSubName == rDesc.m_aLibSubName && in operator ==()
184 m_aName == rDesc.m_aName && in operator ==()
185 m_aMethodName == rDesc.m_aMethodName && in operator ==()
186 m_eType == rDesc.m_eType; in operator ==()
808 void BasicTreeListBox::SetCurrentEntry( BasicEntryDescriptor& rDesc ) in SetCurrentEntry() argument
811 BasicEntryDescriptor aDesc( rDesc ); in SetCurrentEntry()