Lines Matching refs:mrOut
1179 … inline explicit IndentGuard( const OutputRef& rxOut ) : mrOut( *rxOut ) { mrOut.incIndent(); } in IndentGuard()
1180 inline ~IndentGuard() { mrOut.decIndent(); } in ~IndentGuard()
1185 Output& mrOut; member in oox::dump::IndentGuard
1194 mrOut( *rxOut ) { mrOut.startTable( nW1 ); } in TableGuard()
1196 mrOut( *rxOut ) { mrOut.startTable( nW1, nW2 ); } in TableGuard()
1198 mrOut( *rxOut ) { mrOut.startTable( nW1, nW2, nW3 ); } in TableGuard()
1200 mrOut( *rxOut ) { mrOut.startTable( nW1, nW2, nW3, nW4 ); } in TableGuard()
1203 mrOut( *rxOut ) { mrOut.startTable( nColCount, pnColWidths ); } in TableGuard()
1204 inline ~TableGuard() { mrOut.endTable(); } in ~TableGuard()
1205 inline void tab() { mrOut.tab(); } in tab()
1206 inline void tab( size_t nCol ) { mrOut.tab( nCol ); } in tab()
1211 Output& mrOut; member in oox::dump::TableGuard
1220 mrOut( *rxOut ) { mrOut.startItem( rName ); } in ItemGuard()
1221 inline ~ItemGuard() { mrOut.endItem(); } in ~ItemGuard()
1222 inline void cont() { mrOut.contItem(); } in cont()
1227 Output& mrOut; member in oox::dump::ItemGuard
1235 …inline explicit MultiItemsGuard( const OutputRef& rxOut ) : mrOut( *rxOut ) { mrOut.startMulti… in MultiItemsGuard()
1236 inline ~MultiItemsGuard() { mrOut.endMultiItems(); } in ~MultiItemsGuard()
1241 Output& mrOut; member in oox::dump::MultiItemsGuard