Searched refs:_list (Results 1 - 11 of 11) sorted by relevance

/inkscape/cxxtest/cxxtest/
H A DGlobalFixture.cpp13 GlobalFixture::GlobalFixture() { attach( _list ); }
14 GlobalFixture::~GlobalFixture() { detach( _list ); }
16 GlobalFixture *GlobalFixture::firstGlobalFixture() { return (GlobalFixture *)_list.head(); }
17 GlobalFixture *GlobalFixture::lastGlobalFixture() { return (GlobalFixture *)_list.tail(); }
H A DGlobalFixture.h25 static List _list; member in class:CxxTest::GlobalFixture
H A DMock.h67 static CxxTest::List _list; \
101 static CxxTest::List _list; \
120 CxxTest::List Base_##MOCK::_list = { 0, 0 }; \
122 Base_##MOCK::Base_##MOCK() { attach( _list ); } \
123 Base_##MOCK::~Base_##MOCK() { detach( _list ); } \
129 if ( _list.empty() ) \
131 return *(Base_##MOCK *)_list.tail(); \
H A DLinkedList.cpp8 List GlobalFixture::_list = { 0, 0 }; member in class:CxxTest::GlobalFixture
/inkscape/src/
H A Dmain-cmdlineact.cpp25 std::list <CmdLineAction *> CmdLineAction::_list; member in class:Inkscape::CmdLineAction
32 _list.insert(_list.end(), this);
72 bool hasActions = !_list.empty();
73 for (std::list<CmdLineAction *>::iterator i = _list.begin();
74 i != _list.end(); ++i) {
H A Dmain-cmdlineact.h26 static std::list <CmdLineAction *> _list; member in class:Inkscape::CmdLineAction
/inkscape/src/ui/tool/
H A Dnode.h384 NodeList(SubpathList &_list);
449 SubpathList &subpathList() { return _list; }
460 SubpathList &_list; member in class:Inkscape::UI::NodeList
H A Dnode.cpp1502 : _list(splist)
1677 for (SubpathList::iterator i = _list.begin(); i != _list.end(); ++i) {
1679 _list.erase(i);
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp1351 sw->add(_list);
1354 _list.set_model(_model);
1356 const int selcol = _list.append_column("", _cell_toggle);
1357 Gtk::TreeViewColumn* col = _list.get_column(selcol - 1);
1360 _list.append_column_editable(_("_Filter"), _columns.label);
1361 ((Gtk::CellRendererText*)_list.get_column(1)->get_first_cell())->
1364 _list.append_column("#", _columns.count);
1365 _list.get_column(2)->set_sizing(Gtk::TREE_VIEW_COLUMN_AUTOSIZE);
1366 _list.get_column(2)->set_expand(false);
1367 _list
[all...]
H A Dfilter-effects-dialog.h126 Gtk::TreeView _list; member in class:Inkscape::UI::Dialog::FilterEffectsDialog::FilterModifier
/inkscape/src/libavoid/
H A Dorthogonal.cpp1023 SegmentList::iterator found = _list.end();
1024 for (SegmentList::iterator curr = _list.begin();
1025 curr != _list.end(); ++curr)
1029 if (found != _list.end())
1035 _list.erase(found);
1048 if (found == _list.end())
1051 _list.push_back(segment);
1052 return &(_list.back());
1059 return _list;
1062 SegmentList _list; member in class:SegmentListWrapper
[all...]

Completed in 1161 milliseconds