Lines Matching refs:pInheritable
124 CPDF_Object* pInheritable = NULL; in ExportPage() local
129 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "MediaBox"); in ExportPage()
130 if(!pInheritable) in ExportPage()
133 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "CropBox"); in ExportPage()
134 if(pInheritable) in ExportPage()
135 pCurPageDict->SetAt("MediaBox", pInheritable->Clone()); in ExportPage()
148 pCurPageDict->SetAt("MediaBox", pInheritable->Clone()); in ExportPage()
153 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "Resources"); in ExportPage()
154 if(!pInheritable) in ExportPage()
159 pCurPageDict->SetAt("Resources", pInheritable->Clone()); in ExportPage()
164 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "CropBox"); in ExportPage()
165 if(pInheritable) in ExportPage()
166 pCurPageDict->SetAt("CropBox", pInheritable->Clone()); in ExportPage()
171 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "Rotate"); in ExportPage()
172 if(pInheritable) in ExportPage()
173 pCurPageDict->SetAt("Rotate", pInheritable->Clone()); in ExportPage()