Home
last modified time | relevance | path

Searched refs:afterThis (Results 1 – 25 of 195) sorted by relevance

12345678

/dports/graphics/aseprite/aseprite-1.2.9/src/app/cmd/
H A Dmove_layer.cpp25 Layer* afterThis) in MoveLayer() argument
30 , m_newAfterThis(afterThis == layer ? afterThis->getPrevious(): afterThis) in MoveLayer()
37 Layer* afterThis = m_newAfterThis.layer(); in onExecute() local
55 newParent->insertLayer(layer, afterThis); in onExecute()
66 Layer* afterThis = m_oldAfterThis.layer(); in onUndo() local
84 oldParent->insertLayer(layer, afterThis); in onUndo()
H A Dadd_layer.cpp24 AddLayer::AddLayer(Layer* group, Layer* newLayer, Layer* afterThis) in AddLayer() argument
27 , m_afterThis(afterThis) in AddLayer()
36 Layer* afterThis = m_afterThis.layer(); in onExecute() local
38 addLayer(group, newLayer, afterThis); in onExecute()
57 Layer* afterThis = m_afterThis.layer(); in onRedo() local
59 addLayer(group, newLayer, afterThis); in onRedo()
66 void AddLayer::addLayer(Layer* group, Layer* newLayer, Layer* afterThis) in addLayer() argument
68 static_cast<LayerGroup*>(group)->insertLayer(newLayer, afterThis); in addLayer()
H A Dadd_layer.h26 AddLayer(Layer* group, Layer* newLayer, Layer* afterThis);
37 void addLayer(Layer* group, Layer* newLayer, Layer* afterThis);
/dports/graphics/aseprite/aseprite-1.2.9/src/app/
H A Ddoc_api.cpp465 void DocApi::addLayer(LayerGroup* parent, Layer* newLayer, Layer* afterThis) in addLayer() argument
467 m_transaction.execute(new cmd::AddLayer(parent, newLayer, afterThis)); in addLayer()
477 void DocApi::restackLayerAfter(Layer* layer, LayerGroup* parent, Layer* afterThis) in restackLayerAfter() argument
481 if (layer == afterThis) in restackLayerAfter()
484 m_transaction.execute(new cmd::MoveLayer(layer, parent, afterThis)); in restackLayerAfter()
494 Layer* afterThis; in restackLayerBefore() local
496 afterThis = beforeThis->getPrevious(); in restackLayerBefore()
498 afterThis = parent->lastLayer(); in restackLayerBefore()
500 restackLayerAfter(layer, parent, afterThis); in restackLayerBefore()
538 Layer* afterThis = (beforeLayer ? beforeLayer->getPreviousBrowsable(): nullptr); in duplicateLayerBefore() local
[all …]
H A Ddoc_range_ops.cpp404 Layer* afterThis = nullptr; in drop_range_op() local
407 if (afterThis) in drop_range_op()
408 api.restackLayerAfter(srcLayer, parent, afterThis); in drop_range_op()
412 afterThis = srcLayer; in drop_range_op()
416 Layer* afterThis = (!dstLayers.empty() ? dstLayers.back(): nullptr); in drop_range_op() local
418 api.restackLayerAfter(srcLayer, parent, afterThis); in drop_range_op()
419 afterThis = srcLayer; in drop_range_op()
441 Layer* afterThis = (!dstLayers.empty() ? dstLayers.back(): nullptr); in drop_range_op() local
444 srcLayer, parent, afterThis); in drop_range_op()
/dports/editors/calligra/calligra-3.2.1/libs/textlayout/tests/
H A DMockRootAreaProvider.cpp58 void MockRootAreaProvider::releaseAllAfter(KoTextLayoutRootArea *afterThis) in releaseAllAfter() argument
60 Q_UNUSED(afterThis); in releaseAllAfter()
/dports/graphics/cal3d/cal3d-20060720/src/cal3d/
H A Dtinyxml.cpp226 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
228 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
236 node->prev = afterThis; in InsertAfterChild()
237 node->next = afterThis->next; in InsertAfterChild()
238 if ( afterThis->next ) in InsertAfterChild()
240 afterThis->next->prev = node; in InsertAfterChild()
244 assert( lastChild == afterThis ); in InsertAfterChild()
247 afterThis->next = node; in InsertAfterChild()
/dports/science/simbody/simbody-Simbody-3.7/SimTKcommon/src/
H A Dtinyxml.cpp336 TiXmlNode* TiXmlNode::LinkAfterChild( TiXmlNode* afterThis, TiXmlNode* addThis ) in LinkAfterChild() argument
338 assert( afterThis && afterThis->parent == this); in LinkAfterChild()
352 addThis->prev = afterThis; in LinkAfterChild()
353 addThis->next = afterThis->next; in LinkAfterChild()
354 if ( afterThis->next ) in LinkAfterChild()
356 afterThis->next->prev = addThis; in LinkAfterChild()
360 assert( lastChild == afterThis ); in LinkAfterChild()
363 afterThis->next = addThis; in LinkAfterChild()
367 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
369 return LinkAfterChild(afterThis, addThis.Clone()); in InsertAfterChild()
/dports/games/libretro-bluemsx/blueMSX-libretro-faf470e/Src/TinyXML/
H A Dtinyxml.cpp239 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
241 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
249 node->prev = afterThis; in InsertAfterChild()
250 node->next = afterThis->next; in InsertAfterChild()
251 if ( afterThis->next ) in InsertAfterChild()
253 afterThis->next->prev = node; in InsertAfterChild()
257 assert( lastChild == afterThis ); in InsertAfterChild()
260 afterThis->next = node; in InsertAfterChild()
/dports/devel/libwfut/libwfut-0.2.3/libwfut/
H A Dtinyxml.cpp244 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
246 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
254 node->prev = afterThis; in InsertAfterChild()
255 node->next = afterThis->next; in InsertAfterChild()
256 if ( afterThis->next ) in InsertAfterChild()
258 afterThis->next->prev = node; in InsertAfterChild()
262 assert( lastChild == afterThis ); in InsertAfterChild()
265 afterThis->next = node; in InsertAfterChild()
/dports/games/epiphany-game/epiphany-0.7.0/src/tinyxml/
H A Dtinyxml.cpp240 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
242 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
250 node->prev = afterThis; in InsertAfterChild()
251 node->next = afterThis->next; in InsertAfterChild()
252 if ( afterThis->next ) in InsertAfterChild()
254 afterThis->next->prev = node; in InsertAfterChild()
258 assert( lastChild == afterThis ); in InsertAfterChild()
261 afterThis->next = node; in InsertAfterChild()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/libs/tinyxml/src/
H A Dtinyxml.cpp239 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
241 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
249 node->prev = afterThis; in InsertAfterChild()
250 node->next = afterThis->next; in InsertAfterChild()
251 if ( afterThis->next ) in InsertAfterChild()
253 afterThis->next->prev = node; in InsertAfterChild()
257 assert( lastChild == afterThis ); in InsertAfterChild()
260 afterThis->next = node; in InsertAfterChild()
/dports/editors/calligra/calligra-3.2.1/words/part/
H A DKWRootAreaProvider.cpp376 void KWRootAreaProvider::releaseAllAfter(KoTextLayoutRootArea *afterThis) in releaseAllAfter() argument
379 if (afterThis) { in releaseAllAfter()
380 if (!m_pageHash.contains(afterThis)) in releaseAllAfter()
382 KWRootAreaPage *page = m_pageHash.value(afterThis); in releaseAllAfter()
386 int newSize = m_rootAreaCache.indexOf(afterThis) + 1; in releaseAllAfter()
/dports/games/pink-pony/pink-pony-1.4.1/external/tinyXML/
H A Dtinyxml.cpp258 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
260 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
274 node->prev = afterThis; in InsertAfterChild()
275 node->next = afterThis->next; in InsertAfterChild()
276 if ( afterThis->next ) in InsertAfterChild()
278 afterThis->next->prev = node; in InsertAfterChild()
282 assert( lastChild == afterThis ); in InsertAfterChild()
285 afterThis->next = node; in InsertAfterChild()
/dports/math/gambit/gambit-16.0.1/library/src/
H A Dtinyxml.cc246 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
248 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
256 node->prev = afterThis; in InsertAfterChild()
257 node->next = afterThis->next; in InsertAfterChild()
258 if ( afterThis->next ) in InsertAfterChild()
260 afterThis->next->prev = node; in InsertAfterChild()
264 assert( lastChild == afterThis ); in InsertAfterChild()
267 afterThis->next = node; in InsertAfterChild()
/dports/textproc/tinyxml/tinyxml/
H A Dtinyxml.cpp240 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
242 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
257 node->prev = afterThis; in InsertAfterChild()
258 node->next = afterThis->next; in InsertAfterChild()
259 if ( afterThis->next ) in InsertAfterChild()
261 afterThis->next->prev = node; in InsertAfterChild()
265 assert( lastChild == afterThis ); in InsertAfterChild()
268 afterThis->next = node; in InsertAfterChild()
/dports/textproc/soothsayer/soothsayer-0.6.3/src/lib/tinyxml/
H A Dtinyxml.cpp258 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
260 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
274 node->prev = afterThis; in InsertAfterChild()
275 node->next = afterThis->next; in InsertAfterChild()
276 if ( afterThis->next ) in InsertAfterChild()
278 afterThis->next->prev = node; in InsertAfterChild()
282 assert( lastChild == afterThis ); in InsertAfterChild()
285 afterThis->next = node; in InsertAfterChild()
/dports/games/stuntrally/stuntrally-2.6.1/source/tinyxml/
H A Dtinyxml.cpp259 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
261 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
275 node->prev = afterThis; in InsertAfterChild()
276 node->next = afterThis->next; in InsertAfterChild()
277 if ( afterThis->next ) in InsertAfterChild()
279 afterThis->next->prev = node; in InsertAfterChild()
283 assert( lastChild == afterThis ); in InsertAfterChild()
286 afterThis->next = node; in InsertAfterChild()
/dports/games/toycars/toycars-0.3.10/toycars_track_editor/src/tinyxml/
H A Dtinyxml.cpp244 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
246 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
260 node->prev = afterThis; in InsertAfterChild()
261 node->next = afterThis->next; in InsertAfterChild()
262 if ( afterThis->next ) in InsertAfterChild()
264 afterThis->next->prev = node; in InsertAfterChild()
268 assert( lastChild == afterThis ); in InsertAfterChild()
271 afterThis->next = node; in InsertAfterChild()
/dports/games/toycars/toycars-0.3.10/toycars_vehicle_editor/src/tinyxml/
H A Dtinyxml.cpp244 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
246 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
260 node->prev = afterThis; in InsertAfterChild()
261 node->next = afterThis->next; in InsertAfterChild()
262 if ( afterThis->next ) in InsertAfterChild()
264 afterThis->next->prev = node; in InsertAfterChild()
268 assert( lastChild == afterThis ); in InsertAfterChild()
271 afterThis->next = node; in InsertAfterChild()
/dports/games/toycars/toycars-0.3.10/toycars/src/tinyxml/
H A Dtinyxml.cpp244 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
246 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
260 node->prev = afterThis; in InsertAfterChild()
261 node->next = afterThis->next; in InsertAfterChild()
262 if ( afterThis->next ) in InsertAfterChild()
264 afterThis->next->prev = node; in InsertAfterChild()
268 assert( lastChild == afterThis ); in InsertAfterChild()
271 afterThis->next = node; in InsertAfterChild()
/dports/cad/openctm/OpenCTM-1.0.3/tools/tinyxml/
H A Dtinyxml.cpp258 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
260 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
274 node->prev = afterThis; in InsertAfterChild()
275 node->next = afterThis->next; in InsertAfterChild()
276 if ( afterThis->next ) in InsertAfterChild()
278 afterThis->next->prev = node; in InsertAfterChild()
282 assert( lastChild == afterThis ); in InsertAfterChild()
285 afterThis->next = node; in InsertAfterChild()
/dports/comms/openzwave-devel/open-zwave-14f2ba74/cpp/tinyxml/
H A Dtinyxml.cpp260 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
262 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
276 node->prev = afterThis; in InsertAfterChild()
277 node->next = afterThis->next; in InsertAfterChild()
278 if ( afterThis->next ) in InsertAfterChild()
280 afterThis->next->prev = node; in InsertAfterChild()
284 assert( lastChild == afterThis ); in InsertAfterChild()
287 afterThis->next = node; in InsertAfterChild()
/dports/comms/openzwave/open-zwave-f339aa6/cpp/tinyxml/
H A Dtinyxml.cpp260 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
262 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
276 node->prev = afterThis; in InsertAfterChild()
277 node->next = afterThis->next; in InsertAfterChild()
278 if ( afterThis->next ) in InsertAfterChild()
280 afterThis->next->prev = node; in InsertAfterChild()
284 assert( lastChild == afterThis ); in InsertAfterChild()
287 afterThis->next = node; in InsertAfterChild()
/dports/games/xye/xye-0.12.2/src/tinyxml/
H A Dxye_tinyxml.cpp246 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
248 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
256 node->prev = afterThis; in InsertAfterChild()
257 node->next = afterThis->next; in InsertAfterChild()
258 if ( afterThis->next ) in InsertAfterChild()
260 afterThis->next->prev = node; in InsertAfterChild()
264 assert( lastChild == afterThis ); in InsertAfterChild()
267 afterThis->next = node; in InsertAfterChild()

12345678