• Home
  • Raw
  • Download

Lines Matching refs:pLayoutChild

212     CXFA_ContentLayoutItem* pLayoutChild = pIter->AsContentLayoutItem();  in RelocateTableRowCells()  local
213 if (!pLayoutChild) in RelocateTableRowCells()
217 pLayoutChild->GetFormNode()->JSObject()->GetInteger( in RelocateTableRowCells()
236 pLayoutChild->m_sSize.height); in RelocateTableRowCells()
241 pLayoutChild->m_sPos = CFX_PointF(fCurrentColX, 0); in RelocateTableRowCells()
242 pLayoutChild->m_sSize.width = fColSpanWidth; in RelocateTableRowCells()
243 if (!pLayoutChild->GetFormNode()->PresenceRequiresSpace()) in RelocateTableRowCells()
249 UpdateWidgetSize(pLayoutChild, &fColSpanWidth, &fNewHeight); in RelocateTableRowCells()
250 pLayoutChild->m_sSize.height = fNewHeight; in RelocateTableRowCells()
253 std::max(fContentCalculatedHeight, pLayoutChild->m_sSize.height); in RelocateTableRowCells()
260 CXFA_ContentLayoutItem* pLayoutChild = pIter->AsContentLayoutItem(); in RelocateTableRowCells() local
261 if (!pLayoutChild) in RelocateTableRowCells()
264 UpdateWidgetSize(pLayoutChild, &pLayoutChild->m_sSize.width, in RelocateTableRowCells()
266 float fOldChildHeight = pLayoutChild->m_sSize.height; in RelocateTableRowCells()
267 pLayoutChild->m_sSize.height = fContentCalculatedHeight; in RelocateTableRowCells()
269 pLayoutChild->GetFormNode()->GetFirstChildByClass<CXFA_Para>( in RelocateTableRowCells()
271 if (pParaNode && pLayoutChild->GetFirstChild()) { in RelocateTableRowCells()
287 for (CXFA_LayoutItem* pInnerIter = pLayoutChild->GetFirstChild(); in RelocateTableRowCells()
317 CXFA_ContentLayoutItem* pLayoutChild = pIter->AsContentLayoutItem(); in RelocateTableRowCells() local
318 if (!pLayoutChild) in RelocateTableRowCells()
321 pLayoutChild->m_sPos.x = fContentCalculatedWidth - in RelocateTableRowCells()
322 pLayoutChild->m_sPos.x - in RelocateTableRowCells()
323 pLayoutChild->m_sSize.width; in RelocateTableRowCells()
1207 CXFA_ContentLayoutItem* pLayoutChild = pIter->AsContentLayoutItem(); in DoLayoutTableContainer() local
1208 if (!pLayoutChild) in DoLayoutTableContainer()
1210 if (pLayoutChild->GetFormNode()->GetElementType() != XFA_Element::Subform) in DoLayoutTableContainer()
1212 if (!pLayoutChild->GetFormNode()->PresenceRequiresSpace()) in DoLayoutTableContainer()
1216 pLayoutChild->GetFormNode()->JSObject()->GetEnum( in DoLayoutTableContainer()
1223 ToContentLayoutItem(pLayoutChild->GetFirstChild()); in DoLayoutTableContainer()
1300 RetainPtr<CXFA_ContentLayoutItem> pLayoutChild( in DoLayoutTableContainer() local
1302 if (!pLayoutChild || !pLayoutChild->GetFormNode()->PresenceRequiresSpace()) in DoLayoutTableContainer()
1305 if (pLayoutChild->GetFormNode()->GetElementType() == XFA_Element::Subform) { in DoLayoutTableContainer()
1307 pLayoutChild->GetFormNode()->JSObject()->GetEnum( in DoLayoutTableContainer()
1311 RelocateTableRowCells(pLayoutChild, m_rgSpecifiedColumnWidths, in DoLayoutTableContainer()
1316 pLayoutChild->m_sPos.y = fCurrentRowY; in DoLayoutTableContainer()
1318 pLayoutChild->m_sPos.x = 0; in DoLayoutTableContainer()
1320 switch (pLayoutChild->GetFormNode()->JSObject()->GetEnum( in DoLayoutTableContainer()
1323 pLayoutChild->m_sPos.x = in DoLayoutTableContainer()
1324 (fContentWidthLimit - pLayoutChild->m_sSize.width) / 2; in DoLayoutTableContainer()
1327 pLayoutChild->m_sPos.x = in DoLayoutTableContainer()
1328 fContentWidthLimit - pLayoutChild->m_sSize.width; in DoLayoutTableContainer()
1332 pLayoutChild->m_sPos.x = 0; in DoLayoutTableContainer()
1339 pLayoutChild->m_sPos.x + pLayoutChild->m_sSize.width; in DoLayoutTableContainer()
1347 fCurrentRowY += pLayoutChild->m_sSize.height; in DoLayoutTableContainer()