Lines Matching refs:it
49 QStringList::Iterator it; in readSizes() local
51 for (it = entryList.begin(); it != entryList.end(); ++it) in readSizes()
52 result.push_back((*it).toInt()); in readSizes()
68 QList<int>::ConstIterator it; in writeSizes() local
70 for (it = value.begin(); it != value.end(); ++it) in writeSizes()
71 stringList.push_back(QString::number(*it)); in writeSizes()
424 QTreeWidgetItemIterator it(this); in updateList() local
426 while (*it) { in updateList()
427 item = (ConfigItem*)(*it); in updateList()
432 ++it; in updateList()
465 QListIterator<ConfigList *> it(allLists); in updateListForAll() local
467 while (it.hasNext()) { in updateListForAll()
468 ConfigList *list = it.next(); in updateListForAll()
476 QListIterator<ConfigList *> it(allLists); in updateListAllForAll() local
478 while (it.hasNext()) { in updateListAllForAll()
479 ConfigList *list = it.next(); in updateListAllForAll()
574 QTreeWidgetItemIterator it(this); in setParentMenu() local
575 while (*it) { in setParentMenu()
576 item = (ConfigItem *)(*it); in setParentMenu()
583 ++it; in setParentMenu()
922 QTreeWidgetItemIterator it(this); in setAllOpen() local
924 while (*it) { in setAllOpen()
925 (*it)->setExpanded(open); in setAllOpen()
927 ++it; in setAllOpen()