Home
last modified time | relevance | path

Searched refs:maEffects (Results 1 – 6 of 6) sorted by relevance

/AOO41X/main/sd/source/core/
H A DCustomAnimationEffect.cxx1795 EffectSequence::iterator aIter( maEffects.begin() ); in reset()
1796 EffectSequence::iterator aEnd( maEffects.end() ); in reset()
1802 maEffects.clear(); in reset()
1816 maEffects.push_back(pEffect); in append()
1884 maEffects.push_back(pEffect); in append()
1933 maEffects.push_back(pEffect); in append()
1983 maEffects.remove( pEffect ); in remove()
2022 EffectSequence::iterator aIter( maEffects.begin() ); in implRebuild()
2023 EffectSequence::iterator aEnd( maEffects.end() ); in implRebuild()
2299 return std::find( maEffects.begin(), maEffects.end(), pEffect ); in find()
[all …]
H A DCustomAnimationPreset.cxx644 if( pCategory.get() && !pCategory->maEffects.empty() ) in getRandomPreset()
646 sal_Int32 nDescriptor = (rand() * pCategory->maEffects.size() / RAND_MAX); in getRandomPreset()
647 CustomAnimationPresetPtr pPreset = pCategory->maEffects[nDescriptor]; in getRandomPreset()
/AOO41X/main/xmloff/source/draw/
H A Danimexp.cxx234 list<XMLEffectHint> maEffects; member in AnimExpImpl
352 mpImpl->maEffects.push_back( aEffect ); in collect()
381 mpImpl->maEffects.push_back( aEffect ); in collect()
401 mpImpl->maEffects.push_back( aEffect ); in collect()
429 mpImpl->maEffects.push_back( aEffect ); in collect()
443 mpImpl->maEffects.sort(); in exportAnimations()
445 list<XMLEffectHint>::iterator aIter = mpImpl->maEffects.begin(); in exportAnimations()
446 const list<XMLEffectHint>::iterator aEnd = mpImpl->maEffects.end(); in exportAnimations()
548 mpImpl->maEffects.clear(); in exportAnimations()
/AOO41X/main/sd/inc/
H A DCustomAnimationEffect.hxx253 const EffectSequence& getEffects() const { return maEffects; } in getEffects()
263 EffectSequence maEffects; member in sd::CustomAnimationTextGroup
302 sal_Int32 getCount() const { return sal::static_int_cast< sal_Int32 >( maEffects.size() ); } in getCount()
319 EffectSequence::iterator getBegin() { return maEffects.begin(); } in getBegin()
320 EffectSequence::iterator getEnd() { return maEffects.end(); } in getEnd()
323 EffectSequence& getSequence() { return maEffects; } in getSequence()
359 EffectSequence maEffects; member in sd::EffectSequenceHelper
H A DCustomAnimationPreset.hxx88 EffectDescriptorList maEffects; member
91 : maLabel( rLabel ), maEffects( rEffects ) {} in PresetCategory()
/AOO41X/main/sd/source/ui/animations/
H A DCustomAnimationCreateDialog.cxx289 std::vector< CustomAnimationPresetPtr > aSortedVector(pCategory->maEffects.size()); in CustomAnimationCreateTabPage()
290 … std::copy( pCategory->maEffects.begin(), pCategory->maEffects.end(), aSortedVector.begin() ); in CustomAnimationCreateTabPage()