| /AOO41X/main/sd/source/filter/ppt/ |
| H A D | pptinanimations.cxx | 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() [all …]
|
| H A D | pptinanimations.hxx | 58 …void importAnimationContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::s… 59 …void importTimeContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::sun::s… 60 …void importAnimationNodeContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::co… 62 …void importAnimateSetContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::… 63 …void importAnimateFilterContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::co… 64 …void importAnimateContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::sun… 65 …void importAnimateScaleContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com… 66 …void importAnimateColorContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com… 67 …void importAnimateRotationContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::… 68 …void importAnimateMotionContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::co… [all …]
|
| H A D | pptatom.cpp | 62 Atom* pAtom = new Atom( aChildHeader, mrStream ); in Atom() local 65 pLastAtom->mpNextAtom = pAtom; in Atom() 67 mpFirstChild = pAtom; in Atom() 69 pLastAtom = pAtom; in Atom()
|
| /AOO41X/main/svx/workben/msview/ |
| H A D | msview.cxx | 142 void compare( Atom* pAtom ); 146 void setCompareAtom( Atom* pAtom ) { mpCompareAtom = pAtom; } in setCompareAtom() argument 152 static Atom* skipAtoms( Atom* pContainer, Atom* pAtom, Atom* pSkipTo ); 300 Atom* pAtom = new Atom( aChildHeader, mrStream ); in Atom() local 303 pLastAtom->mpNextAtom = pAtom; in Atom() 305 mpFirstChild = pAtom; in Atom() 307 pLastAtom = pAtom; in Atom() 402 Atom* Atom::skipAtoms( Atom* pContainer, Atom* pAtom, Atom* pSkipTo ) in skipAtoms() argument 404 while( pAtom && (pAtom != pSkipTo) ) in skipAtoms() 406 pAtom->meStatus = CMP_NOTAVAILABLE; in skipAtoms() [all …]
|
| /AOO41X/main/oox/source/drawingml/diagram/ |
| H A D | layoutnodecontext.cxx | 47 ConditionAtomPtr pAtom( boost::dynamic_pointer_cast< ConditionAtom >(pNode) ); in IfContext() local 48 OSL_ENSURE( pAtom, "Must pass a ConditionAtom" ); in IfContext() 50 pAtom->iterator().loadFromXAttr( xAttribs ); in IfContext() 51 pAtom->cond().loadFromXAttr( xAttribs ); in IfContext() 103 LayoutAtomPtr pAtom( new ConditionAtom( false ) ); in createFastChildContext() local 104 mpNode->addChild( pAtom ); in createFastChildContext() 105 xRet.set( new IfContext( *this, xAttribs, pAtom ) ); in createFastChildContext() 112 LayoutAtomPtr pAtom( new ConditionAtom( true ) ); in createFastChildContext() local 113 mpNode->addChild( pAtom ); in createFastChildContext() 114 xRet.set( new IfContext( *this, xAttribs, pAtom ) ); in createFastChildContext() [all …]
|
| H A D | diagramlayoutatoms.cxx | 101 static bool _test_atom( const LayoutAtomPtr & pAtom) in _test_atom() argument 105 const ConditionAtomPtr pCond = boost::dynamic_pointer_cast< ConditionAtom >(pAtom); in _test_atom()
|
| /AOO41X/main/vcl/unx/generic/app/ |
| H A D | keysymnames.cxx | 648 const char* pAtom = NULL; in GetKeyboardName() 651 pAtom = XGetAtomName( GetDisplay(), pXkbDesc->names->groups[0] ); in GetKeyboardName() 652 m_aKeyboardName = pAtom; in GetKeyboardName() 653 XFree( (void*)pAtom ); in GetKeyboardName() 658 …sc->names->x ) { pAtom = XGetAtomName( GetDisplay(), pXkbDesc->names->x ); fprintf( stderr, "%s: %… in GetKeyboardName() 667 …s->x[i] ) { pAtom = XGetAtomName( GetDisplay(), pXkbDesc->names->x[i] ); fprintf( stderr, "%s[%d]:… in GetKeyboardName()
|
| /AOO41X/main/connectivity/source/drivers/evoab2/ |
| H A D | NStatement.cxx | 388 OSQLParseNode *pAtom = pPart2->getChild( pPart2->count() - 2 ); // Match String in whereAnalysis() local 391 if( !( pAtom->getNodeType() == SQL_NODE_STRING || in whereAnalysis() 392 pAtom->getNodeType() == SQL_NODE_NAME || in whereAnalysis() 393 SQL_ISRULE( pAtom,parameter ) || in whereAnalysis() 394 ( pAtom->getChild( 0 ) && pAtom->getChild( 0 )->getNodeType() == SQL_NODE_NAME ) || in whereAnalysis() 395 … ( pAtom->getChild( 0 ) && pAtom->getChild( 0 )->getNodeType() == SQL_NODE_STRING ) ) ) in whereAnalysis() 397 OSL_TRACE( "analyseSQL : pAtom->count() = %d\n", pAtom->count() ); in whereAnalysis() 404 aMatchString = pAtom->getTokenValue(); in whereAnalysis()
|
| /AOO41X/main/connectivity/source/drivers/file/ |
| H A D | fcomp.cxx | 293 OSQLParseNode* pAtom = pPart2->getChild(pPart2->count()-2); in execute_LIKE() local 296 if (!(pAtom->getNodeType() == SQL_NODE_STRING || in execute_LIKE() 297 SQL_ISRULE(pAtom,parameter) || in execute_LIKE() 299 SQL_ISRULE(pAtom,set_fct_spec) || in execute_LIKE() 300 SQL_ISRULE(pAtom,position_exp) || in execute_LIKE() 301 SQL_ISRULE(pAtom,char_substring_fct) || in execute_LIKE() 303 SQL_ISRULE(pAtom,fold)) ) in execute_LIKE() 325 execute(pAtom); in execute_LIKE()
|
| /AOO41X/main/vcl/unx/generic/dtrans/ |
| H A D | X11_selection.cxx | 722 char* pAtom = m_pDisplay ? XGetAtomName( m_pDisplay, aAtom ) : NULL; in getString() local 723 if( ! pAtom ) in getString() 725 OUString aString( OStringToOUString( pAtom, RTL_TEXTENCODING_ISO_8859_1 ) ); in getString() 726 XFree( pAtom ); in getString()
|
| /AOO41X/main/filter/source/msfilter/ |
| H A D | svdfppt.cxx | 4038 PptFontEntityAtom* pAtom = rManager.GetFontEnityAtom( nBulletFont ); in ImplGetNumberFormat() local 4039 if ( pAtom ) in ImplGetNumberFormat() 4041 CharSet eCharSet( pAtom->eCharSet ); in ImplGetNumberFormat() 4042 aFont.SetName( pAtom->aName ); in ImplGetNumberFormat() 4044 aFont.SetFamily( pAtom->eFamily ); in ImplGetNumberFormat() 4045 aFont.SetPitch( pAtom->ePitch ); in ImplGetNumberFormat()
|