Lines Matching refs:pInheritable
115 CPDF_Object* pInheritable = nullptr; in ExportPage() local
118 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "MediaBox"); in ExportPage()
119 if (!pInheritable) { in ExportPage()
122 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "CropBox"); in ExportPage()
123 if (pInheritable) { in ExportPage()
124 pCurPageDict->SetAt("MediaBox", pInheritable->Clone()); in ExportPage()
135 pCurPageDict->SetAt("MediaBox", pInheritable->Clone()); in ExportPage()
140 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "Resources"); in ExportPage()
141 if (!pInheritable) in ExportPage()
143 pCurPageDict->SetAt("Resources", pInheritable->Clone()); in ExportPage()
147 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "CropBox"); in ExportPage()
148 if (pInheritable) in ExportPage()
149 pCurPageDict->SetAt("CropBox", pInheritable->Clone()); in ExportPage()
153 pInheritable = PageDictGetInheritableTag(pSrcPageDict, "Rotate"); in ExportPage()
154 if (pInheritable) in ExportPage()
155 pCurPageDict->SetAt("Rotate", pInheritable->Clone()); in ExportPage()