Lines Matching refs:pData

140     sal_Bool LessThanSheet(const ScAccessibleShapeData* pData) const  in LessThanSheet()
143 uno::Reference< beans::XPropertySet> xProps(pData->xShape, uno::UNO_QUERY); in LessThanSheet()
231 void operator() (ScAccessibleShapeData* pData) in operator ()()
233 if (pData) in operator ()()
234 DELETEZ(pData); in operator ()()
270 uno::Reference< XAccessible > Get(const ScAccessibleShapeData* pData) const;
311 uno::Reference<XAccessibleRelationSet> GetRelationSet(const ScAccessibleShapeData* pData) const;
313 … void SetAnchor(const uno::Reference<drawing::XShape>& xShape, ScAccessibleShapeData* pData) const;
543 uno::Reference< XAccessible > ScChildrenShapes::Get(const ScAccessibleShapeData* pData) const in Get()
545 if (!pData) in Get()
548 if (!pData->pAccShape) in Get()
551 …::accessibility::AccessibleShapeInfo aShapeInfo(pData->xShape, mpAccessibleDocument, const_cast<Sc… in Get()
552 pData->pAccShape = rShapeHandler.CreateAccessibleObject( in Get()
554 if (pData->pAccShape) in Get()
556 pData->pAccShape->acquire(); in Get()
557 pData->pAccShape->Init(); in Get()
558 if (pData->bSelected) in Get()
559 pData->pAccShape->SetState(AccessibleStateType::SELECTED); in Get()
560 if (!pData->bSelectable) in Get()
561 pData->pAccShape->ResetState(AccessibleStateType::SELECTABLE); in Get()
562 pData->pAccShape->SetRelationSet(GetRelationSet(pData)); in Get()
565 return pData->pAccShape; in Get()
1203 …<XAccessibleRelationSet> ScChildrenShapes::GetRelationSet(const ScAccessibleShapeData* pData) const in GetRelationSet()
1207 if(pData && pRelationSet && mpAccessibleDocument) in GetRelationSet()
1210 if (pData->pRelationCell && xAccessible.is()) in GetRelationSet()
1214 …xAccessible = xAccTable->getAccessibleCellAt(pData->pRelationCell->Row(), pData->pRelationCell->Co… in GetRelationSet()
1233 …hapes::SetAnchor(const uno::Reference<drawing::XShape>& xShape, ScAccessibleShapeData* pData) const in SetAnchor()
1235 if (pData) in SetAnchor()
1238 if ((pAddress && pData->pRelationCell && (*pAddress != *(pData->pRelationCell))) || in SetAnchor()
1239 (!pAddress && pData->pRelationCell) || (pAddress && !pData->pRelationCell)) in SetAnchor()
1241 if (pData->pRelationCell) in SetAnchor()
1242 delete pData->pRelationCell; in SetAnchor()
1243 pData->pRelationCell = pAddress; in SetAnchor()
1244 if (pData->pAccShape) in SetAnchor()
1245 pData->pAccShape->SetRelationSet(GetRelationSet(pData)); in SetAnchor()