Home | History | Annotate | Download | only in fpdf_page

Lines Matching defs:findData

330 KeyType PDF_DocPageData_FindValue(const CFX_MapPtrTemplate<KeyType, CPDF_CountedObject<ValueType>*> &map, ValueType findValue, CPDF_CountedObject<ValueType>*& findData)
335 map.GetNextAssoc(pos, findKey, findData);
336 if (findData->m_Obj == findValue) {
340 findData = NULL;
349 CPDF_CountedObject<ValueType>* findData = NULL;
351 findKey = PDF_DocPageData_FindValue<KeyType, ValueType>(map, findValue, findData);
352 } else if (!map.Lookup(findKey, findData)) {
355 if (findData && ((-- findData->m_nCount) == 0 || bForce)) {
356 delete findData->m_Obj;
357 delete findData;