Lines Matching refs:pProps

63     CellData(T start, PropertiesPointer pProps)  in CellData()  argument
64 : mStart(start), mEnd(start), mpProps(pProps), mbOpen(true) in CellData()
89 void setProperties(PropertiesPointer pProps) { mpProps = pProps; } in setProperties() argument
96 void insertProperties(PropertiesPointer pProps) in insertProperties() argument
99 mpProps->insert(pProps); in insertProperties()
101 mpProps = pProps; in insertProperties()
161 void addCell(const T & start, PropertiesPointer pProps) in addCell() argument
164 (new CellData<T, PropertiesPointer>(start, pProps)); in addCell()
201 void insertCellProperties(unsigned int i, PropertiesPointer pProps) in insertCellProperties() argument
203 mCells[i]->insertProperties(pProps); in insertCellProperties()
209 void insertCellProperties(PropertiesPointer pProps) in insertCellProperties() argument
212 mCells.back()->insertProperties(pProps); in insertCellProperties()
333 void addCell(const T & start, PropertiesPointer pProps) in addCell() argument
335 mpRow->addCell(start, pProps); in addCell()
361 void insertCellProperties(PropertiesPointer pProps) in insertCellProperties() argument
363 mpRow->insertCellProperties(pProps); in insertCellProperties()
372 void insertCellProperties(unsigned int i, PropertiesPointer pProps) in insertCellProperties() argument
374 mpRow->insertCellProperties(i, pProps); in insertCellProperties()
377 void insertTableProperties( PropertiesPointer pProps ) in insertTableProperties() argument
380 mpTableProps->insert( pProps ); in insertTableProperties()
382 mpTableProps = pProps; in insertTableProperties()