Lines Matching refs:pAtom

255 			const Atom* pAtom = Atom::import( rProgTagContentHd, mrStCtrl );  in import()  local
256 if( pAtom ) in import()
258 importAnimationContainer( pAtom, xParent ); in import()
279 Reference< XAnimationNode > AnimationImporter::createNode( const Atom* pAtom, const AnimationNode& … in createNode() argument
286 if( pAtom->hasChildAtom( DFF_msofbtAnimIteration ) ) in createNode()
304 if( pAtom->hasChildAtom( DFF_msofbtAnimateSet ) ) in createNode()
306 else if( pAtom->hasChildAtom( DFF_msofbtAnimateColor ) ) in createNode()
308 else if( pAtom->hasChildAtom( DFF_msofbtAnimateScale ) ) in createNode()
310 else if( pAtom->hasChildAtom( DFF_msofbtAnimateRotation ) ) in createNode()
312 else if( pAtom->hasChildAtom( DFF_msofbtAnimateMotion ) ) in createNode()
314 else if( pAtom->hasChildAtom( DFF_msofbtAnimateFilter ) ) in createNode()
316 else if( pAtom->hasChildAtom( DFF_msofbtAnimCommand ) ) in createNode()
372 void AnimationImporter::importAnimationContainer( const Atom* pAtom, const Reference< XAnimationNod… in importAnimationContainer() argument
374 if( pAtom->seekToContent() ) in importAnimationContainer()
377 const Atom* pAnimationNodeAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimNode ); in importAnimationContainer()
382 const Atom* pAnimationPropertySetAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimPropertySet ); in importAnimationContainer()
400 xNode = createNode( pAtom, aNode ); in importAnimationContainer()
421 importTimeContainer( pAtom, xNode ); in importAnimationContainer()
472 importTimeContainer( pAtom, xNode ); in importAnimationContainer()
497 if( pAtom->hasChildAtom( DFF_msofbtAnimateSet ) ) in importAnimationContainer()
501 else if( pAtom->hasChildAtom( DFF_msofbtAnimateColor ) ) in importAnimationContainer()
505 else if( pAtom->hasChildAtom( DFF_msofbtAnimateScale ) ) in importAnimationContainer()
509 else if( pAtom->hasChildAtom( DFF_msofbtAnimateRotation ) ) in importAnimationContainer()
513 else if( pAtom->hasChildAtom( DFF_msofbtAnimateMotion ) ) in importAnimationContainer()
517 else if( pAtom->hasChildAtom( DFF_msofbtAnimate ) ) in importAnimationContainer()
521 else if( pAtom->hasChildAtom( DFF_msofbtAnimateFilter ) ) in importAnimationContainer()
525 else if( pAtom->hasChildAtom( DFF_msofbtAnimCommand ) ) in importAnimationContainer()
532 dump_atom_header( pAtom, true, false ); in importAnimationContainer()
533 dump_atom( pAtom ); in importAnimationContainer()
534 dump_atom_header( pAtom, false, false ); in importAnimationContainer()
540 importAnimationNodeContainer( pAtom, xNode ); in importAnimationContainer()
553 importAudioContainer( pAtom, xNode ); in importAnimationContainer()
561 dump_atom_header( pAtom, true, false ); in importAnimationContainer()
562 dump_atom( pAtom ); in importAnimationContainer()
563 dump_atom_header( pAtom, false, false ); in importAnimationContainer()
1415 void AnimationImporter::importTimeContainer( const Atom* pAtom, const Reference< XAnimationNode >& … in importTimeContainer() argument
1417 DBG_ASSERT( pAtom && xNode.is(), "invalid call to ppt::AnimationImporter::importTimeContainer()!"); in importTimeContainer()
1418 if( pAtom && xNode.is() ) in importTimeContainer()
1420 importAnimationEvents( pAtom, xNode ); in importTimeContainer()
1421 importAnimationValues( pAtom, xNode ); in importTimeContainer()
1422 importAnimationActions( pAtom, xNode ); in importTimeContainer()
1427 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importTimeContainer()
1514 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importTimeContainer()
1521 void AnimationImporter::importAnimationNodeContainer( const Atom* pAtom, const Reference< XAnimatio… in importAnimationNodeContainer() argument
1523 …DBG_ASSERT( pAtom && xNode.is(), "invalid call to ppt::AnimationImporter::importAnimationNodeConta… in importAnimationNodeContainer()
1524 if( pAtom && xNode.is() ) in importAnimationNodeContainer()
1526 importAnimationEvents( pAtom, xNode ); in importAnimationNodeContainer()
1527 importAnimationValues( pAtom, xNode ); in importAnimationNodeContainer()
1528 importAnimationActions( pAtom, xNode ); in importAnimationNodeContainer()
1530 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimationNodeContainer()
1584 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimationNodeContainer()
1591 void AnimationImporter::importAnimateFilterContainer( const Atom* pAtom, const Reference< XAnimatio… in importAnimateFilterContainer() argument
1595 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateFilter && xFilter.is(), "invalid call to… in importAnimateFilterContainer()
1596 if( pAtom && xFilter.is() ) in importAnimateFilterContainer()
1600 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateFilterContainer()
1663 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateFilterContainer()
1670 void AnimationImporter::importAnimateAttributeTargetContainer( const Atom* pAtom, const Reference< … in importAnimateAttributeTargetContainer() argument
1672 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateTarget, "invalid call to ppt::AnimationI… in importAnimateAttributeTargetContainer()
1680 if( pAtom ) in importAnimateAttributeTargetContainer()
1682 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateAttributeTargetContainer()
1796 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateAttributeTargetContainer()
1882 void AnimationImporter::importAnimateColorContainer( const Atom* pAtom, const Reference< XAnimation… in importAnimateColorContainer() argument
1886 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateColor && xColor.is(), "invalid call to p… in importAnimateColorContainer()
1887 if( pAtom && xColor.is() ) in importAnimateColorContainer()
1889 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateColorContainer()
1947 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateColorContainer()
1954 void AnimationImporter::importAnimateSetContainer( const Atom* pAtom, const Reference< XAnimationNo… in importAnimateSetContainer() argument
1958 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateSet && xSet.is(), "invalid call to ppt::… in importAnimateSetContainer()
1959 if( pAtom && xSet.is() ) in importAnimateSetContainer()
1961 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateSetContainer()
2006 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateSetContainer()
2013 void AnimationImporter::importAnimateContainer( const Atom* pAtom, const Reference< XAnimationNode … in importAnimateContainer() argument
2017 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimate && xAnim.is(), "invalid call to ppt::An… in importAnimateContainer()
2018 if( pAtom && xAnim.is() ) in importAnimateContainer()
2020 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateContainer()
2085 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateContainer()
2092 void AnimationImporter::importAnimateMotionContainer( const Atom* pAtom, const Reference< XAnimatio… in importAnimateMotionContainer() argument
2096 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateMotion && xMotion.is(), "invalid call to… in importAnimateMotionContainer()
2097 if( pAtom && xMotion.is() ) in importAnimateMotionContainer()
2099 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateMotionContainer()
2164 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateMotionContainer()
2171 void AnimationImporter::importCommandContainer( const Atom* pAtom, const Reference< XAnimationNode … in importCommandContainer() argument
2174 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimCommand && xCommand.is(), "invalid call to … in importCommandContainer()
2175 if( pAtom && xCommand.is() ) in importCommandContainer()
2180 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importCommandContainer()
2230 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importCommandContainer()
2304 void AnimationImporter::importAudioContainer( const Atom* pAtom, const Reference< XAnimationNode >&… in importAudioContainer() argument
2307 DBG_ASSERT( pAtom && xAudio.is() && in importAudioContainer()
2308 ( (pAtom->getType() == DFF_msofbtAnimGroup) || in importAudioContainer()
2309 …(pAtom->getType() == DFF_msofbtAnimSubGoup) ), "invalid call to ppt::AnimationImporter::importAudi… in importAudioContainer()
2310 if( pAtom && xAudio.is() ) in importAudioContainer()
2312 importAnimationEvents( pAtom, xNode ); in importAudioContainer()
2313 importAnimationValues( pAtom, xNode ); in importAudioContainer()
2314 importAnimationActions( pAtom, xNode ); in importAudioContainer()
2318 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAudioContainer()
2364 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAudioContainer()
2376 void AnimationImporter::importAnimateScaleContainer( const Atom* pAtom, const Reference< XAnimation… in importAnimateScaleContainer() argument
2380 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateScale && xTransform.is(), "invalid call … in importAnimateScaleContainer()
2381 if( pAtom && xTransform.is() ) in importAnimateScaleContainer()
2385 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateScaleContainer()
2470 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateScaleContainer()
2477 void AnimationImporter::importAnimateRotationContainer( const Atom* pAtom, const Reference< XAnimat… in importAnimateRotationContainer() argument
2481 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateRotation && xTransform.is(), "invalid ca… in importAnimateRotationContainer()
2482 if( pAtom && xTransform.is() ) in importAnimateRotationContainer()
2486 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimateRotationContainer()
2540 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importAnimateRotationContainer()
2546 bool AnimationImporter::importAttributeNamesContainer( const Atom* pAtom, OUString& rAttributeNames… in importAttributeNamesContainer() argument
2550 …DBG_ASSERT( pAtom && (pAtom->getType() == DFF_msofbtAnimateAttributeNames), "invalid call to ppt::… in importAttributeNamesContainer()
2551 if( pAtom ) in importAttributeNamesContainer()
2553 const Atom* pAttributeValueAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimAttributeValue ); in importAttributeNamesContainer()
2574 …pAttributeValueAtom = pAtom->findNextChildAtom( DFF_msofbtAnimAttributeValue, pAttributeValueAtom … in importAttributeNamesContainer()
2584 void AnimationImporter::importAnimationValues( const Atom* pAtom, const Reference< XAnimationNode >… in importAnimationValues() argument
2586 DBG_ASSERT( pAtom, "invalid call to ppt::AnimationImporter::importAnimationValues()!" ); in importAnimationValues()
2588 if( pAtom ) in importAnimationValues()
2590 const Atom* pValueAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimValue ); in importAnimationValues()
2655 pValueAtom = pAtom->findNextChildAtom( DFF_msofbtAnimValue, pValueAtom ); in importAnimationValues()
2662 void AnimationImporter::importAnimateKeyPoints( const Atom* pAtom, const Reference< XAnimationNode … in importAnimateKeyPoints() argument
2666 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimKeyPoints && xAnim.is(), "invalid call to p… in importAnimateKeyPoints()
2668 if( pAtom && xAnim.is() ) in importAnimateKeyPoints()
2674 while( (pIter = pAtom->findNextChildAtom( DFF_msofbtAnimKeyTime, pIter )) != 0 ) in importAnimateKeyPoints()
2681 pIter = pAtom->findFirstChildAtom(DFF_msofbtAnimKeyTime); in importAnimateKeyPoints()
2692 const Atom* pValue = pAtom->findNextChildAtom(pIter); in importAnimateKeyPoints()
2698 pValue = pAtom->findNextChildAtom(pValue); in importAnimateKeyPoints()
2732 pIter = pAtom->findNextChildAtom(DFF_msofbtAnimKeyTime, pIter); in importAnimateKeyPoints()
2796 bool AnimationImporter::importAttributeValue( const Atom* pAtom, Any& rAny ) in importAttributeValue() argument
2798 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimAttributeValue, "invalid call to ppt::Anima… in importAttributeValue()
2802 if( pAtom && pAtom->seekToContent() ) in importAttributeValue()
2804 sal_uInt32 nRecLen = pAtom->getLength(); in importAttributeValue()
2873 void AnimationImporter::importAnimationEvents( const Atom* pAtom, const Reference< XAnimationNode >… in importAnimationEvents() argument
2875 …DBG_ASSERT( xNode.is() && pAtom, "invalid call to ppt::AnimationImporter::importAnimationEvents()!… in importAnimationEvents()
2879 const Atom* pEventAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimEvent ); in importAnimationEvents()
2950 pEventAtom = pAtom->findNextChildAtom( DFF_msofbtAnimEvent, pEventAtom ); in importAnimationEvents()
2991 void AnimationImporter::importAnimationActions( const Atom* pAtom, const Reference< XAnimationNode … in importAnimationActions() argument
2993 …DBG_ASSERT( pAtom && xNode.is(), "invalid call to ppt::AnimationImporter::importAnimationActions()… in importAnimationActions()
2995 if( pAtom ) in importAnimationActions()
2997 const Atom* pActionAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimAction ); in importAnimationActions()
3030 sal_Int32 AnimationImporter::importTargetElementContainer( const Atom* pAtom, Any& rTarget, sal_Int… in importTargetElementContainer() argument
3035 …DBG_ASSERT( pAtom && (pAtom->getType() == DFF_msofbtAnimateTargetElement), "invalid call to ppt::A… in importTargetElementContainer()
3036 if( pAtom ) in importTargetElementContainer()
3038 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importTargetElementContainer()
3157 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importTargetElementContainer()
3167 void AnimationImporter::importPropertySetContainer( const Atom* pAtom, PropertySet& rSet ) in importPropertySetContainer() argument
3169 …DBG_ASSERT( pAtom && (pAtom->getType() == DFF_msofbtAnimPropertySet), "invalid call to ppt::Animat… in importPropertySetContainer()
3171 if( pAtom ) in importPropertySetContainer()
3173 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importPropertySetContainer()
3187 pChildAtom = pAtom->findNextChildAtom( pChildAtom ); in importPropertySetContainer()
3195 void AnimationImporter::dump_atom_header( const Atom* pAtom, bool bOpen, bool bAppend ) in dump_atom_header() argument
3197 if( pAtom ) in dump_atom_header()
3203 switch( pAtom->getType() ) in dump_atom_header()
3233 sprintf( buffer, "unknown_%#x", pAtom->getType() ); in dump_atom_header()
3243 pAtom->getInstance(), in dump_atom_header()
3285 void AnimationImporter::dump_atom( const Atom* pAtom, bool bNewLine ) in dump_atom() argument
3287 if( pAtom ) in dump_atom()
3289 if( pAtom->isContainer() ) in dump_atom()
3291 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in dump_atom()
3339 pChildAtom = pAtom->findNextChildAtom(pChildAtom); in dump_atom()
3342 else if( pAtom->seekToContent() ) in dump_atom()
3344 dump( pAtom->getLength(), bNewLine ); in dump_atom()
3351 void AnimationImporter::dump_anim_group( const Atom* pAtom, const AnimationNode& rNode, const Prope… in dump_anim_group() argument
3370 if( pAtom->hasChildAtom( DFF_msofbtAnimateSet ) ) in dump_anim_group()
3372 else if( pAtom->hasChildAtom( DFF_msofbtAnimateColor ) ) in dump_anim_group()
3374 else if( pAtom->hasChildAtom( DFF_msofbtAnimateScale ) ) in dump_anim_group()
3376 else if( pAtom->hasChildAtom( DFF_msofbtAnimateRotation ) ) in dump_anim_group()
3378 else if( pAtom->hasChildAtom( DFF_msofbtAnimateMotion ) ) in dump_anim_group()
3380 else if( pAtom->hasChildAtom( DFF_msofbtAnimCommand ) ) in dump_anim_group()