Lines Matching refs:ppDims
1254 ppDims( NULL ) in SC_IMPL_DUMMY_PROPERTY_LISTENER()
1266 if (ppDims) in ~ScDPDimensions()
1269 if ( ppDims[i] ) in ~ScDPDimensions()
1270 ppDims[i]->release(); // ref-counted in ~ScDPDimensions()
1271 delete[] ppDims; in ~ScDPDimensions()
1279 if ( ppDims ) in CountChanged()
1286 ppNew[i] = ppDims[i]; in CountChanged()
1290 if ( ppDims[i] ) in CountChanged()
1291 ppDims[i]->release(); // ref-counted in CountChanged()
1293 delete[] ppDims; in CountChanged()
1294 ppDims = ppNew; in CountChanged()
1361 if ( !ppDims ) in getByIndex()
1363 ((ScDPDimensions*)this)->ppDims = new ScDPDimension*[nDimCount]; in getByIndex()
1365 ppDims[i] = NULL; in getByIndex()
1367 if ( !ppDims[nIndex] ) in getByIndex()
1369 ppDims[nIndex] = new ScDPDimension( pSource, nIndex ); in getByIndex()
1370 ppDims[nIndex]->acquire(); // ref-counted in getByIndex()
1373 return ppDims[nIndex]; in getByIndex()