Lines Matching refs:maContent
139 maContent(), in XPropertyList()
146 while(!maContent.empty()) in ~XPropertyList()
148 delete maContent.back(); in ~XPropertyList()
149 maContent.pop_back(); in ~XPropertyList()
155 while(!maContent.empty()) in Clear()
157 delete maContent.back(); in Clear()
158 maContent.pop_back(); in Clear()
172 return maContent.size(); in Count()
185 const long nObjectCount(maContent.size()); in Get()
192 return maContent[nIndex]; in Get()
205 ::std::vector< XPropertyEntry* >::const_iterator aStart(maContent.begin()); in GetIndex()
206 const ::std::vector< XPropertyEntry* >::const_iterator aEnd(maContent.end()); in GetIndex()
244 const long nObjectCount(maContent.size()); in Insert()
248 maContent.push_back(pEntry); in Insert()
252 maContent.insert(maContent.begin() + nIndex, pEntry); in Insert()
263 const long nObjectCount(maContent.size()); in Replace()
267 pRetval = maContent[nIndex]; in Replace()
268 maContent[nIndex] = pEntry; in Replace()
278 const long nObjectCount(maContent.size()); in Remove()
284 pRetval = maContent.back(); in Remove()
285 maContent.pop_back(); in Remove()
289 pRetval = maContent[nIndex]; in Remove()
290 maContent.erase(maContent.begin() + nIndex); in Remove()