Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
QList< T > Class Template Reference

#include <qlist.h>

Inherits QListSpecialMethods< T >.

Inherited by QQueue< QEvent * >, QQueue< QAudioBuffer >, QQueue< AVFImageCapture::CaptureRequest >, QQueue< QPhysicsCommand * >, QQueue< QFFmpeg::Frame >, QQueue< QFFmpeg::Packet >, QQueue< PendingImage >, QQueue< QHostInfoRunnable * >, QQueue< QLocalSocket * >, QQueue< Request >, QQueue< std::pair< QNearFieldTarget::RequestId, QByteArray > >, QQueue< QPendingGeoPositionInfo >, QQueue< QQmlJS::Dom::Path >, QQueue< QQmlJS::Dom::Dependency >, QQueue< QQmlProfilerEvent >, QQueue< QQuickContext2DCommandBuffer * >, QQueue< QScrollerPrivate::ScrollSegment >, QQueue< QSharedPointer< QShGetFileInfoThread::Task > >, QQueue< QSocks5RevivedDatagram >, QQueue< QPair< QPointer< QObject >, QKeyEvent * > >, QQueue< QThreadPoolThread * >, QQueue< ComPtr< IMFSample > >, QStack< SafeSymbols >, QStack< ReadsGraph::iterator >, QStack< IncludesGraph::iterator >, QStack< DomWidget * >, QStack< DomLayout * >, QStack< DomActionGroup * >, QStack< QAbstractItemModelPrivate::Change >, QStack< QList< QPersistentModelIndexData * > >, QStack< Changing >, QStack< CborValue >, QStack< CborEncoder >, QStack< _QCocoaModalSessionInfo >, QStack< QString >, QStack< QStringList >, QStack< int >, QStack< QQmlJSImportVisitor::FunctionOrExpressionIdentifier >, QStack< QQmlProfilerTypedEvent >, QStack< QQuickContext2D::State >, QStack< QPointerEvent * >, QStack< QQuickHeaderViewBasePrivate::SectionSize >, QStack< QQuickItem * >, QStack< QQuickStackElement * >, QStack< QQuickStyledTextPrivate::List >, QStack< QSGBatchRenderer::GraphicsState >, QStack< QOpenVGMatrix >, QStack< float >, QStack< VGPath >, QStack< QRegion >, QStack< QTransform >, QStack< QSettingsGroup >, QStack< QSvgNode * >, QStack< CurrentNode >, QStack< QSvgText::WhitespaceMode >, QStack< QColor >, QStack< QTextBrowserPrivate::HistoryEntry >, QStack< QPointer< QTextList > >, QStack< QTextCharFormat >, QStack< QTextList * >, QStack< QEventLoop * >, QStack< QV4::Compiler::Context * >, QStack< qint64 >, QStack< ClipType >, QStack< QV4::Object * >, FolderIterator, QQmlJS::AST::BoundNames, QQmlPendingGroupPropertyBindings, QQueue< T >, QSizeChangeListener, and QStack< T >.

+ Collaboration diagram for QList< T >:

Classes

class  const_iterator
 
class  iterator
 

Public Types

using Type = T
 
using value_type = T
 
using pointer = T *
 
using const_pointer = const T *
 
using reference = T &
 
using const_reference = const T &
 
using size_type = qsizetype
 
using difference_type = qptrdiff
 
using parameter_type = typename DataPointer::parameter_type
 
using rvalue_ref = typename std::conditional<DataPointer::pass_parameter_by_value, DisableRValueRefs, T &&>::type
 
using Iterator = iterator
 
using ConstIterator = const_iterator
 
using reverse_iterator = std::reverse_iterator<iterator>
 
using const_reverse_iterator = std::reverse_iterator<const_iterator>
 

Public Member Functions

 QList (DataPointer dd) noexcept
 
 QList ()=default
 
 QList (qsizetype size)
 
 QList (qsizetype size, parameter_type t)
 
 QList (std::initializer_list< T > args)
 
QList< T > & operator= (std::initializer_list< T > args)
 
template<typename InputIterator , if_input_iterator< InputIterator > = true>
 QList (InputIterator i1, InputIterator i2)
 
template<typename String , typename = std::enable_if_t<std::is_same_v<T, QString> && std::is_convertible_v<String, QString>>>
 QList (const String &str)
 
 QList (qsizetype size, Qt::Initialization)
 
void swap (QList &other) noexcept
 
template<typename U = T>
QTypeTraits::compare_eq_result_container< QList, U > operator== (const QList &other) const
 
template<typename U = T>
QTypeTraits::compare_eq_result_container< QList, U > operator!= (const QList &other) const
 
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > operator< (const QList &other) const noexcept(noexcept(std::lexicographical_compare< typename QList< U >::const_iterator, typename QList::const_iterator >(std::declval< QList< U > >().begin(), std::declval< QList< U > >().end(), other.begin(), other.end())))
 
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > operator> (const QList &other) const noexcept(noexcept(other< std::declval< QList< U > >()))
 
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > operator<= (const QList &other) const noexcept(noexcept(other< std::declval< QList< U > >()))
 
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > operator>= (const QList &other) const noexcept(noexcept(std::declval< QList< U > >()< other))
 
qsizetype size () const noexcept
 
qsizetype count () const noexcept
 
qsizetype length () const noexcept
 
bool isEmpty () const noexcept
 
void resize (qsizetype size)
 
void resize (qsizetype size, parameter_type c)
 
void resizeForOverwrite (qsizetype size)
 
qsizetype capacity () const
 
void reserve (qsizetype size)
 
void squeeze ()
 
void detach ()
 
bool isDetached () const noexcept
 
bool isSharedWith (const QList< T > &other) const
 
pointer data ()
 
const_pointer data () const noexcept
 
const_pointer constData () const noexcept
 
void clear ()
 
const_reference at (qsizetype i) const noexcept
 
reference operator[] (qsizetype i)
 
const_reference operator[] (qsizetype i) const noexcept
 
void append (parameter_type t)
 
void append (const_iterator i1, const_iterator i2)
 
void append (rvalue_ref t)
 
void append (const QList< T > &l)
 
void append (QList< T > &&l)
 
void prepend (rvalue_ref t)
 
void prepend (parameter_type t)
 
template<typename... Args>
reference emplaceBack (Args &&... args)
 
template<typename ... Args>
reference emplaceFront (Args &&... args)
 
iterator insert (qsizetype i, parameter_type t)
 
iterator insert (qsizetype i, qsizetype n, parameter_type t)
 
iterator insert (const_iterator before, parameter_type t)
 
iterator insert (const_iterator before, qsizetype n, parameter_type t)
 
iterator insert (const_iterator before, rvalue_ref t)
 
iterator insert (qsizetype i, rvalue_ref t)
 
QListassign (qsizetype n, parameter_type t)
 
template<typename InputIterator , if_input_iterator< InputIterator > = true>
QListassign (InputIterator first, InputIterator last)
 
QListassign (std::initializer_list< T > l)
 
template<typename ... Args>
iterator emplace (const_iterator before, Args &&... args)
 
template<typename ... Args>
iterator emplace (qsizetype i, Args &&... args)
 
void replace (qsizetype i, parameter_type t)
 
void replace (qsizetype i, rvalue_ref t)
 
void remove (qsizetype i, qsizetype n=1)
 
void removeFirst () noexcept
 
void removeLast () noexcept
 
value_type takeFirst ()
 
value_type takeLast ()
 
QList< T > & fill (parameter_type t, qsizetype size=-1)
 
template<typename AT = T>
qsizetype count (const AT &t) const noexcept
 
void removeAt (qsizetype i)
 
template<typename AT = T>
qsizetype removeAll (const AT &t)
 
template<typename AT = T>
bool removeOne (const AT &t)
 
template<typename Predicate >
qsizetype removeIf (Predicate pred)
 
takeAt (qsizetype i)
 
void move (qsizetype from, qsizetype to)
 
iterator begin ()
 
iterator end ()
 
const_iterator begin () const noexcept
 
const_iterator end () const noexcept
 
const_iterator cbegin () const noexcept
 
const_iterator cend () const noexcept
 
const_iterator constBegin () const noexcept
 
const_iterator constEnd () const noexcept
 
reverse_iterator rbegin ()
 
reverse_iterator rend ()
 
const_reverse_iterator rbegin () const noexcept
 
const_reverse_iterator rend () const noexcept
 
const_reverse_iterator crbegin () const noexcept
 
const_reverse_iterator crend () const noexcept
 
iterator erase (const_iterator begin, const_iterator end)
 
iterator erase (const_iterator pos)
 
T & first ()
 
const T & first () const noexcept
 
const T & constFirst () const noexcept
 
T & last ()
 
const T & last () const noexcept
 
const T & constLast () const noexcept
 
bool startsWith (parameter_type t) const
 
bool endsWith (parameter_type t) const
 
QList< T > mid (qsizetype pos, qsizetype len=-1) const
 
QList< T > first (qsizetype n) const
 
QList< T > last (qsizetype n) const
 
QList< T > sliced (qsizetype pos) const
 
QList< T > sliced (qsizetype pos, qsizetype n) const
 
value (qsizetype i) const
 
value (qsizetype i, parameter_type defaultValue) const
 
void swapItemsAt (qsizetype i, qsizetype j)
 
void push_back (parameter_type t)
 
void push_back (rvalue_ref t)
 
void push_front (rvalue_ref t)
 
void push_front (parameter_type t)
 
void pop_back () noexcept
 
void pop_front () noexcept
 
template<typename ... Args>
reference emplace_back (Args &&... args)
 
bool empty () const noexcept
 
reference front ()
 
const_reference front () const noexcept
 
reference back ()
 
const_reference back () const noexcept
 
void shrink_to_fit ()
 
QList< T > & operator+= (const QList< T > &l)
 
QList< T > & operator+= (QList< T > &&l)
 
QList< T > operator+ (const QList< T > &l) const &
 
QList< T > operator+ (const QList< T > &l) &&
 
QList< T > operator+ (QList< T > &&l) const &
 
QList< T > operator+ (QList< T > &&l) &&
 
QList< T > & operator+= (parameter_type t)
 
QList< T > & operator<< (parameter_type t)
 
QList< T > & operator<< (const QList< T > &l)
 
QList< T > & operator<< (QList< T > &&l)
 
QList< T > & operator+= (rvalue_ref t)
 
QList< T > & operator<< (rvalue_ref t)
 
QList< T > toList () const noexcept
 
QList< T > toVector () const noexcept
 
- Public Member Functions inherited from QListSpecialMethodsBase< T >
template<typename AT = T>
qsizetype indexOf (const AT &t, qsizetype from=0) const noexcept
 
template<typename AT = T>
qsizetype lastIndexOf (const AT &t, qsizetype from=-1) const noexcept
 
template<typename AT = T>
bool contains (const AT &t) const noexcept
 

Static Public Member Functions

static qsizetype max_size () noexcept
 
static QList< T > fromList (const QList< T > &list) noexcept
 
static QList< T > fromVector (const QList< T > &vector) noexcept
 
template<qsizetype N>
static QList< T > fromReadOnlyData (const T(&t)[N]) noexcept
 

Friends

class ::tst_QList
 
template<typename V , typename U >
qsizetype QtPrivate::indexOf (const QList< V > &list, const U &u, qsizetype from) noexcept
 
template<typename V , typename U >
qsizetype QtPrivate::lastIndexOf (const QList< V > &list, const U &u, qsizetype from) noexcept
 

Additional Inherited Members

- Protected Types inherited from QListSpecialMethodsBase< T >
using Self = QList<T>
 
- Protected Member Functions inherited from QListSpecialMethods< T >
 ~QListSpecialMethods ()=default
 
- Protected Member Functions inherited from QListSpecialMethodsBase< T >
 ~QListSpecialMethodsBase ()=default
 
Selfself ()
 
const Selfself () const
 

Detailed Description

template<typename T>
class QList< T >

Definition at line 71 of file qlist.h.

Member Typedef Documentation

◆ const_pointer

template<typename T >
using QList< T >::const_pointer = const T *

Definition at line 95 of file qlist.h.

◆ const_reference

template<typename T >
using QList< T >::const_reference = const T &

Definition at line 97 of file qlist.h.

◆ const_reverse_iterator

template<typename T >
using QList< T >::const_reverse_iterator = std::reverse_iterator<const_iterator>

Definition at line 252 of file qlist.h.

◆ ConstIterator

template<typename T >
using QList< T >::ConstIterator = const_iterator

Definition at line 250 of file qlist.h.

◆ difference_type

template<typename T >
using QList< T >::difference_type = qptrdiff

Definition at line 99 of file qlist.h.

◆ Iterator

template<typename T >
using QList< T >::Iterator = iterator

Definition at line 249 of file qlist.h.

◆ parameter_type

template<typename T >
using QList< T >::parameter_type = typename DataPointer::parameter_type

Definition at line 101 of file qlist.h.

◆ pointer

template<typename T >
using QList< T >::pointer = T *

Definition at line 94 of file qlist.h.

◆ reference

template<typename T >
using QList< T >::reference = T &

Definition at line 96 of file qlist.h.

◆ reverse_iterator

template<typename T >
using QList< T >::reverse_iterator = std::reverse_iterator<iterator>

Definition at line 251 of file qlist.h.

◆ rvalue_ref

template<typename T >
using QList< T >::rvalue_ref = typename std::conditional<DataPointer::pass_parameter_by_value, DisableRValueRefs, T &&>::type

Definition at line 102 of file qlist.h.

◆ size_type

template<typename T >
using QList< T >::size_type = qsizetype

Definition at line 98 of file qlist.h.

◆ Type

template<typename T >
using QList< T >::Type = T

Definition at line 92 of file qlist.h.

◆ value_type

template<typename T >
using QList< T >::value_type = T

Definition at line 93 of file qlist.h.

Constructor & Destructor Documentation

◆ QList() [1/8]

template<typename T >
QList< T >::QList ( DataPointer dd)
inlinenoexcept

Definition at line 270 of file qlist.h.

◆ QList() [2/8]

template<typename T >
QList< T >::QList ( )
default

◆ QList() [3/8]

template<typename T >
QList< T >::QList ( qsizetype size)
inlineexplicit

Definition at line 277 of file qlist.h.

References d.

◆ QList() [4/8]

template<typename T >
QList< T >::QList ( qsizetype size,
parameter_type t )
inline

Definition at line 283 of file qlist.h.

References d.

◆ QList() [5/8]

template<typename T >
QList< T >::QList ( std::initializer_list< T > args)
inline

Definition at line 290 of file qlist.h.

References args, QList< T >::begin(), d, QList< T >::end(), and QList< T >::size().

+ Here is the call graph for this function:

◆ QList() [6/8]

template<typename T >
template<typename InputIterator , if_input_iterator< InputIterator > = true>
QList< T >::QList ( InputIterator i1,
InputIterator i2 )
inline

Definition at line 303 of file qlist.h.

References d.

◆ QList() [7/8]

template<typename T >
template<typename String , typename = std::enable_if_t<std::is_same_v<T, QString> && std::is_convertible_v<String, QString>>>
QList< T >::QList ( const String & str)
inlineexplicit

Definition at line 325 of file qlist.h.

References QList< T >::append(), and str.

+ Here is the call graph for this function:

◆ QList() [8/8]

template<typename T >
QList< T >::QList ( qsizetype size,
Qt::Initialization  )
inline

Definition at line 328 of file qlist.h.

References d.

Member Function Documentation

◆ append() [1/5]

template<typename T >
void QList< T >::append ( const QList< T > & l)
inline

Definition at line 468 of file qlist.h.

References QList< T >::append().

+ Here is the call graph for this function:

◆ append() [2/5]

template<typename T >
void QList< T >::append ( const_iterator i1,
const_iterator i2 )
inline

Definition at line 830 of file qlist.h.

References d.

◆ append() [3/5]

template<typename T >
void QList< T >::append ( parameter_type t)
inline

Definition at line 458 of file qlist.h.

References QList< T >::emplaceBack().

Referenced by BackendSupport::BackendSupport(), QQuickTextNodeEngine::BinaryTreeNode::BinaryTreeNode(), QConfFileSettingsPrivate::QConfFileSettingsPrivate(), QConfFileSettingsPrivate::QConfFileSettingsPrivate(), QFFmpegMediaFormatInfo::QFFmpegMediaFormatInfo(), QGeoRouteRequest::QGeoRouteRequest(), QIconTheme::QIconTheme(), QLeDBusAdvertiser::QLeDBusAdvertiser(), QList< T >::QList(), QObject::QObject(), QOpenSLESDeviceInfo::QOpenSLESDeviceInfo(), QOscBundle::QOscBundle(), QOscMessage::QOscMessage(), QPlaceManagerEngineNokiaV2::QPlaceManagerEngineNokiaV2(), QPulseAudioDeviceInfo::QPulseAudioDeviceInfo(), QQnxButtonEventNotifier::QQnxButtonEventNotifier(), QSQLiteResult::QSQLiteResult(), QUndoCommand::QUndoCommand(), QVsp2BlendingDevice::QVsp2BlendingDevice(), QWasmAudioDevice::QWasmAudioDevice(), QWindowsAudioDeviceInfo::QWindowsAudioDeviceInfo(), QWindowsFileSystemWatcherEngineThread::QWindowsFileSystemWatcherEngineThread(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWinSettingsPrivate::QWinSettingsPrivate(), QWinSettingsPrivate::QWinSettingsPrivate(), TableModel::TableModel(), QMenuPrivate::_q_actionTriggered(), QSequentialAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QHostInfoLookupManager::abortLookup(), QGestureEvent::activeGestures(), QGeoAreaMonitorPolling::activeMonitors(), QDBusSpyHookList::add(), QGridLayoutPrivate::add(), QGridLayoutPrivate::add(), QQmlTypeModule::add(), Vsp2HardwareLayerIntegration::add(), QDockAreaLayoutInfo::add(), QQmlJS::Dom::DomEnvironment::addAllLoadedCallback(), QEglFSKmsVsp2Screen::addBlendListener(), QQuickTextNodeEngine::addBorder(), QPdfEnginePrivate::addBrushPattern(), QMessageDialogOptions::addButton(), QDialogButtonBoxPrivate::addButton(), QGraphicsItemPrivate::addChild(), QQuick3DObjectPrivate::addChild(), QQuickItemPrivate::addChild(), QSvgStructureNode::addChild(), QIOPipePrivate::addChildPipe(), QWaylandCompositorPrivate::addClient(), QPdfEnginePrivate::addConstantAlphaObject(), QGeoPathPrivate::addCoordinate(), QGeoPathPrivateEager::addCoordinate(), QGeoPolygonPrivateEager::addCoordinate(), QQmlDataBlob::addDependency(), QAlphaPaintEnginePrivate::addDirtyRect(), ProxyTranslator::addEngine(), QQmlPreviewHandler::addEngine(), QZipWriterPrivate::addEntry(), QDeclarativeGeoRouteQuery::addExcludedArea(), QWaylandObject::addExtension(), JsonOutput::addFile(), QQmlJS::Dom::JsFile::addFileImport(), QQuickTextNodeEngine::addFrameDecorations(), QFutureSynchronizer< T >::addFuture(), QMimeAllGlobPatterns::addGlob(), QQmlProfilerServiceImpl::addGlobalProfiler(), QFontSubset::addGlyph(), QSGInternalTextNode::addImage(), QImagePixmapCleanupHooks::addImageHook(), QQmlTypeCompiler::addImport(), addImportToNamespace(), Parser::addIncludeDirs(), QtBluezPeripheralService::addIncludedService(), QQuick3DParticleInstanceTable::addInstance(), QMediaTimeRangePrivate::addInterval(), QQuickViewTestUtils::QaimModel::addItem(), CardLayout::addItem(), QDeclarativeGeoJsonData::addItem(), QQuickLabsPlatformMenuItemGroup::addItem(), QQuickViewTestUtils::QaimModel::addItems(), QGeoCodeReply::addLocation(), QMimeXMLProvider::addMagicMatcher(), QDeclarativeGeoMap::addMapItem_real(), QDeclarativeGeoMap::addMapItemGroup_real(), QDeclarativeGeoMap::addMapItemView_real(), QQmlJS::Dom::JsFile::addModuleImport(), QCommandLineParser::addOption(), QWaylandCompositorPrivate::addOutput(), QPageRanges::addPage(), QQmlJSMetaMethod::addParameter(), QWindowsFileSystemWatcherEngine::addPaths(), QImagePixmapCleanupHooks::addPlatformPixmapDestructionHook(), QImagePixmapCleanupHooks::addPlatformPixmapModificationHook(), QMutableTouchEvent::addPoint(), QWaylandInputMethodEventBuilder::addPreeditStyling(), QGeoTileProviderOsm::addProvider(), QUrlQueryPrivate::addQueryItem(), QPageRanges::addRange(), QtWaylandClient::QWaylandDisplay::addRegistryListener(), QMetaObjectBuilder::addRelatedMetaObject(), QAudioEnginePrivate::addRoom(), QmlLsp::QQmlCodeModel::addRootUrls(), QGeoRouteReply::addRoutes(), QMimeMagicRuleMatcher::addRule(), QMimeMagicRuleMatcher::addRules(), QXcbVirtualDesktop::addScreen(), QQnxScreenEventHandler::addScreenEventFilter(), QWidgetRepaintManager::addStaticWidget(), QAudioEnginePrivate::addStereoSound(), QEasingCurve::addTCBSegment(), QSvgText::addText(), QQuickTextNodeEngine::addTextBlock(), QGeoTiledMapScenePrivate::addTile(), QBluetoothSocketPrivateWinRT::addToPendingData(), QEvdevTouchScreenData::addTouchPoint(), QQuickMultiPointTouchArea::addTouchPoint(), QQuickMultiPointTouchArea::addTouchPoint(), QUrlModel::addUrls(), QWaylandOutputPrivate::addView(), QFileSystemModelPrivate::addVisibleFiles(), QQuickGridViewPrivate::addVisibleItems(), QQuickListViewPrivate::addVisibleItems(), QOpenGLCompositor::addWindow(), AndroidContentFileEngineIterator::advance(), QQuickDesignerSupportProperties::allPropertyNames(), QNmeaSatelliteInfoUpdate::allSatellitesInUse(), QNmeaSatelliteInfoUpdate::allSatellitesInView(), QList< T >::append(), QSqlRecord::append(), QSqlIndex::append(), QIndexMapper::append(), QCborContainerPrivate::append(), QCborContainerPrivate::append(), QCborContainerPrivate::append(), QCborContainerPrivate::appendAsciiString(), QMdiAreaPrivate::appendChild(), QQuick3DParticleEmitter::appendEmitBurst(), QGraphicsItemPrivate::appendGraphicsTransform(), QQmlContextPrivate::appendInstance(), QQuick3DParticleAffector::appendParticle(), QQmlContextPrivate::appendPropertyValue(), QNdefFilter::appendRecord(), QQmlXmlListModel::appendRole(), appendSeparator(), QSvgNode::appendStyleProperty(), QQmlJS::Dom::appendUpdatableElementInQList(), appendZIntersects(), QSvgStyleResolver::applyOpacityToGradient(), QWindowsPrintDevice::availablePrintDeviceIds(), QCupsPrinterSupport::availablePrintDeviceIds(), QCocoaPrinterSupport::availablePrintDeviceIds(), QPrinterInfo::availablePrinters(), QCtfServer::bufferData(), QQmlPropertyCacheCreator< ObjectContainer >::buildMetaObjectRecursively(), AndroidCameraPrivate::callParametersStringListMethod(), QGestureEvent::canceledGestures(), QDeclarativeSearchResultModel::categories_append(), QDeclarativePlace::category_append(), QDeclarativePlace::category_clear(), QTextMarkdownImporter::cbText(), QLowEnergyService::characteristics(), PlaceManagerEngineEsri::childCategories(), QPlaceManagerEngineNokiaV2::childCategories(), QPlaceManagerEngineOsm::childCategories(), QQmlDelegateChooser::choices_append(), QQuickWindowPrivate::cleanup(), QPainterPath::clear(), QPdfPageNavigator::clear(), QmlTypesClassDescription::collect(), QTableModel::columnItems(), QOpenGLShaderProgramPrivate::compileCacheable(), QWaylandCompositorPrivate::compositor_create_surface(), QFutureInterfaceBasePrivate::connectOutputInterface(), QMacMimeAny::convertFromMime(), QMacMimeTypeName::convertFromMime(), QMacMimeHTMLText::convertFromMime(), QMacMimeVCard::convertFromMime(), QQnxIntegration::createDisplay(), QGraphicsAnchorLayoutPrivate::createItemEdges(), QTextLayout::createLine(), QDomNodeListPrivate::createList(), QTextFormatCollection::createObjectIndex(), QQuickContext2DTexture::createTiles(), QQuickPackagePrivate::data_append(), QtWayland::DataSource::data_source_offer(), deployTranslations(), QIBusAttributeList::deserializeFrom(), QBluetoothLocalDevicePrivate::deviceConnected(), QKmsDevice::discoverPlanes(), QLowEnergyControllerPrivateBluezDBus::discoverServiceDetails(), QIconModeViewBase::doBatchedItemLayout(), QSSGSceneDesc::PropertyList< Class, T, List >::doSet(), QCtfLibImpl::doTracepoint(), QPdfEnginePrivate::drawTextItem(), QFSFileEngine::drives(), QXcbDrag::drop(), QStandardItemModel::dropMimeData(), QTlsPrivate::TlsCryptographOpenSSL::emitErrorFromCallback(), QItemSelectionModel::emitSelectionChanged(), QQmlEngineDebugServiceImpl::engineAboutToBeAdded(), QQmlEngineControlServiceImpl::engineAboutToBeAdded(), QQmlNativeDebugServiceImpl::engineAboutToBeAdded(), QQmlConfigurableDebugService< Base >::engineAboutToBeAdded(), QQmlEngineControlServiceImpl::engineAboutToBeRemoved(), QQmlProfilerServiceImpl::engineAboutToBeRemoved(), QQueue< T >::enqueue(), QQuickDeliveryAgentPrivate::ensureDeviceConnected(), QQmlTypeLoaderQmldirContent::errors(), QQmlTreeModelToTableModel::expandRow(), exportFeatureCollection(), QGeoJson::exportGeoJson(), DarwinBluetooth::extract_attribute_value(), QDeclarativeGeoRouteQuery::featureTypes(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QQuickVisualTestUtils::findItems(), findMinGWRuntimePaths(), QShader::fromSerialized(), QQmlJSBasicBlocks::generate_Construct(), QQmlJSBasicBlocks::generate_DefineArray(), QQmlJSBasicBlocks::generate_DefineObjectLiteral(), generateGlyphTables(), generateName(), QGraphicsScenePrivate::gestureEventHandler(), AndroidCameraPrivate::getFocusAreas(), getImageFormatList(), QQuickViewTestUtils::ListRange::getModelDataValues(), QWidgetTextControl::getPaintContext(), AndroidCameraPrivate::getSupportedPictureSizes(), AndroidCameraPrivate::getSupportedPreviewFormats(), AndroidCameraPrivate::getSupportedPreviewSizes(), AndroidCameraPrivate::getSupportedVideoSizes(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::handleActivityResult(), QXcbDrag::handleEnter(), QMenuBarPrivate::handleReparent(), importArrayOfPositions(), QQmlJSImporter::importModule(), QQmlImportDatabase::importPathList(), QQmlJSImporter::importQmldirs(), QWizardPrivate::init(), init_platform(), SamplePool::initialize(), PlaceManagerEngineEsri::initializeCategories(), QPlaceManagerEngineOsm::initializeCategories(), VDMAbstractItemModelDataType::initializeMetaType(), QQmlDelegateModelPartsMetaObject::initialValue(), QBspTree::insert(), QOpenGLMultiGroupSharedResource::insert(), QGraphicsWidget::insertAction(), QWidget::insertAction(), QTreeModel::insertColumns(), QToolBarAreaLayoutInfo::insertGap(), QQuickContainerPrivate::insertItem(), QQuickMenuPrivate::insertItem(), QQuickLabsPlatformMenu::insertItem(), QGridLayoutEngine::insertItem(), QToolBarAreaLayout::insertItem(), QToolBarAreaLayoutInfo::insertItem(), QComboBox::insertItems(), QQuickLabsPlatformMenuBar::insertMenu(), QDBusPlatformMenu::insertMenuItem(), QCocoaMenu::insertMenuItem(), QIOSMenu::insertMenuItem(), TableModel::insertRows(), QFont::insertSubstitution(), QFont::insertSubstitutions(), QToolBarAreaLayoutInfo::insertToolBarBreak(), QGstPipelinePrivate::installMessageFilter(), QGstPipelinePrivate::installMessageFilter(), QSSGRenderRay::intersectWithBVHTriangles(), ServerAcceptanceThread::javaNewSocket(), QPdfPageNavigator::jump(), QPdfPageNavigator::jump(), QStyleFactory::keys(), QAbstractItemModelTesterPrivate::layoutAboutToBeChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QTextFormat::lengthVectorProperty(), QResourcePrivate::load(), QWaylandCompositorPrivate::loadClientBufferIntegration(), QPpdPrintDevice::loadColorModes(), QCocoaPrintDevice::loadColorModes(), QWindowsPrintDevice::loadColorModes(), QPpdPrintDevice::loadDuplexModes(), QCocoaPrintDevice::loadDuplexModes(), QWindowsPrintDevice::loadDuplexModes(), QPpdPrintDevice::loadInputSlots(), QCocoaPrintDevice::loadInputSlots(), QWindowsPrintDevice::loadInputSlots(), QPpdPrintDevice::loadOutputBins(), QCocoaPrintDevice::loadOutputBins(), QWindowsPrintDevice::loadOutputBins(), QPpdPrintDevice::loadPageSizes(), QCocoaPrintDevice::loadPageSizes(), QWindowsPrintDevice::loadPageSizes(), QPpdPrintDevice::loadResolutions(), QCocoaPrintDevice::loadResolutions(), QWindowsPrintDevice::loadResolutions(), QHostInfoLookupManager::lookupFinished(), main(), QIdentityProxyModel::match(), QPainterPathPrivate::maybeMoveTo(), QItemSelection::merge(), QCocoaMenu::merged(), QCocoaMenuBar::merged(), QQmlJSScope::methods(), QQmlJSScope::methods(), QXcbMime::mimeConvertToFormat(), QUrlModel::mimeData(), QPlatformScreen::modes(), QEglFSKmsScreen::modes(), QOpenGLCompositor::moveToTop(), QSqlResultPrivate::namedToPositionalBinding(), QTextHtmlParser::newNode(), QPdfEnginePrivate::newPage(), QGraphicsFrameCaptureMetal::openCapture(), QQuickStatePrivate::operations_append(), QList< T >::operator+=(), QList< T >::operator+=(), QList< T >::operator+=(), QList< T >::operator+=(), QDBusMessage::operator<<(), QEdidParser::parse(), QTextHtmlParser::parse(), Moc::parseDeclareMetatype(), QCss::Parser::parseFunction(), QQuickStyledTextPrivate::parseImageAttributes(), Parser::parseMetadata(), Moc::parseMocInclude(), parseNumberTriplet(), Moc::parsePluginData(), QHttpNetworkConnectionChannel::pipelineInto(), QDeclarativePlace::place(), QMdiAreaPrivate::place(), QQmlPluginImporter::plugins(), QSGCurveGlyphAtlas::populate(), populateFromCbor(), QPrintPreviewWidgetPrivate::populateScene(), QTextDocumentLayoutPrivate::positionFloat(), QWaitConditionPrivate::post(), QWaylandCompositorPrivate::preInit(), QQmlFindUsagesSupport::process(), QmlGoToDefinitionSupport::process(), QmlGoToTypeDefinitionSupport::process(), QPulseAudioSink::processedUSecs(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), QGeoPositionInfoSourceAndroid::processSinglePositionUpdate(), QStack< T >::push(), QList< T >::push_back(), QList< T >::push_back(), q_createConfigAttributesFromFormat(), Q_GLOBAL_STATIC_WITH_ARGS(), QTest::qExec(), qRegisterResourceData(), qt_qFindChildren_helper(), QT_BEGIN_NAMESPACE::qt_servicesUuids(), qtValue(), DomIncludes::read(), DomResources::read(), DomActionGroup::read(), DomAction::read(), DomButtonGroup::read(), DomButtonGroups::read(), DomCustomWidgets::read(), DomLayout::read(), DomRow::read(), DomColumn::read(), DomItem::read(), DomWidget::read(), DomSpacer::read(), DomGradient::read(), DomColorGroup::read(), DomConnections::read(), DomConnectionHints::read(), DomDesignerData::read(), DomPropertySpecifications::read(), readArrayBuffer(), QLowEnergyControllerPrivateBluezDBus::readCharacteristic(), QLowEnergyControllerPrivateBluezDBus::readDescriptor(), QMdiAreaPrivate::rearrange(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QShortcutPrivate::redoGrab(), QWaylandSurfacePrivate::refView(), QOpenXRActionMapper::registerAction(), QQmlMetaType::registerAutoParentFunction(), QGeoAreaMonitorPollingPrivate::registerClient(), QWindowsMimeRegistry::registerMime(), QGraphicsScenePrivate::registerTopLevelItem(), QXcbWindow::registerWmTransientForChild(), QOpenXRView::registerXrItem(), QQmlDelegateModelPrivate::releaseIncubator(), QQmlLSUtils::renameUsagesOf(), QNetworkRequestFactoryPrivate::requestUrl(), QTextHtmlParser::resolveParent(), QDockAreaLayoutInfo::restoreState(), SamplePool::returnSample(), QQmlXmlListModel::roleObjects(), QQmlJSBasicBlocks::run(), QtConcurrent::FilteredReducedKernel< ReducedResultType, Iterator, KeepFunctor, ReduceFunctor, Reducer >::runIteration(), QtConcurrent::MappedReducedKernel< ReducedResultType, Iterator, MapFunctor, ReduceFunctor, Reducer >::runIteration(), QtConcurrent::FilterKernel< Sequence, KeepFunctor, ReduceFunctor >::runIteration(), QtConcurrent::FilteredReducedKernel< ReducedResultType, Iterator, KeepFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilteredEachKernel< Iterator, KeepFunctor >::runIterations(), QtConcurrent::MappedReducedKernel< ReducedResultType, Iterator, MapFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilterKernel< Sequence, KeepFunctor, ReduceFunctor >::runIterations(), QSplitter::saveState(), QZipReaderPrivate::scanFiles(), scanImports(), QBsdFbIntegration::screens(), QIntegrityFbIntegration::screens(), QLinuxFbIntegration::screens(), QVncIntegration::screens(), QTreeViewPrivate::select(), QAbstractItemViewPrivate::selectAll(), QListViewPrivate::selectAll(), QItemSelectionModel::selectedColumns(), QListWidget::selectedItems(), QTableWidget::selectedItems(), QTreeWidget::selectedItems(), QItemSelectionModel::selectedRows(), QWaylandXdgToplevel::sendFullscreen(), QWaylandXdgToplevel::sendMaximized(), QV4DebugClientPrivate::sendMessage(), QWaylandXdgToplevel::sendResizing(), TestHTTPServer::serveDirectory(), QBluetoothServiceInfo::serviceClassUuids(), QQmlSslConfiguration::setCertificateFiles(), QTreeModel::setColumnCount(), QOffscreenIntegration::setConfiguration(), QTreeWidgetItem::setData(), QListWidgetItem::setData(), QQmlDataBlob::setError(), QFileDialogComboBox::setHistory(), QNdefNfcSmartPosterRecord::setIcons(), QFormLayoutPrivate::setItem(), QMacPasteboard::setMimeData(), QObjectPrivate::setParent_helper(), QQuickPathPolyline::setPath(), QQuickPathMultiline::setPaths(), QMessagePattern::setPattern(), QPlaceMatchRequest::setResults(), QTableView::setSelection(), QQmlSslConfiguration::setSslOptionsList(), QCoreGraphicsPaintEnginePrivate::setStrokePen(), QTextBlockFormat::setTabPositions(), QNdefNfcSmartPosterRecord::setTitles(), QWaylandWlShellPrivate::shell_get_shell_surface(), MainWindow::showList(), QQmlTreeModelToTableModel::showModelChildItems(), QFileDialogComboBox::showPopup(), QHttpMultiPartIODevice::size(), QSplitter::sizes(), QConcatenateTablesProxyModelPrivate::slotSourceLayoutAboutToBeChanged(), QTableModel::sort(), QDirPrivate::sortFileList(), QByteArray::split(), QDockAreaLayoutInfo::split(), QAnyStringViewUtils::split(), splitSpaceSemicolon(), QV4::ExecutionEngine::stackTrace(), QXcbDrag::startDrag(), QSvgHandler::startElement(), QPdfPage::streamImage(), QQuadPath::subPathsClosed(), QMdiAreaPrivate::subWindowList(), QRhiGles2::supportedSampleCounts(), QWizardPrivate::switchToPage(), QStandardItem::takeRow(), QGeoCameraTilesPrivate::tileIntersections(), FunctionDef::toJson(), QHttpHeaders::toListOfPairs(), QtWayland::TouchExtensionGlobal::touch_extension_bind_resource(), QtWaylandClient::QWaylandTouchExtension::touch_extension_touch(), QTimeZonePrivate::transitions(), QWindowsTabletSupport::translateTabletProximityEvent(), QMenuBarPrivate::updateGeometries(), QQuickMultiPointTouchArea::updateTouchData(), AVFMediaPlayer::updateTracks(), QDeclarativeContactDetails::updateValue(), QMimeData::urls(), QUrlModel::urls(), QWinRegistryKey::value(), QOffscreenScreen::virtualSiblings(), QDialogButtonBoxPrivate::visibleButtons(), QmlIR::IRBuilder::visit(), QPlatformScreen::windows(), QTextOdfWriter::writeAll(), QLowEnergyControllerPrivateBluezDBus::writeCharacteristic(), QLowEnergyControllerPrivateBluezDBus::writeDescriptor(), QQmlVMEMetaObject::writeProperty(), QQmlVMEMetaObject::writeVarProperty(), QFontDatabase::writingSystems(), QtWaylandClient::QWaylandTextInputv1::zwp_text_input_v1_modifiers_map(), and QtWaylandClient::QWaylandTextInputv2::zwp_text_input_v2_modifiers_map().

+ Here is the call graph for this function:

◆ append() [4/5]

template<typename T >
void QList< T >::append ( QList< T > && l)
inline

Definition at line 836 of file qlist.h.

References append(), d, QArrayData::GrowsAtEnd, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ append() [5/5]

template<typename T >
void QList< T >::append ( rvalue_ref t)
inline

Definition at line 460 of file qlist.h.

References QList< T >::emplaceBack(), QArrayDataPointer< T >::pass_parameter_by_value, and Q_UNUSED.

+ Here is the call graph for this function:

◆ assign() [1/3]

template<typename T >
template<typename InputIterator , if_input_iterator< InputIterator > = true>
QList & QList< T >::assign ( InputIterator first,
InputIterator last )
inline

Definition at line 523 of file qlist.h.

References QList< T >::assign(), d, and QList< T >::last().

+ Here is the call graph for this function:

◆ assign() [2/3]

template<typename T >
QList & QList< T >::assign ( qsizetype n,
parameter_type t )
inline

Definition at line 516 of file qlist.h.

References QList< T >::fill(), and Q_ASSERT.

Referenced by QList< T >::assign(), QList< T >::assign(), and QList< T >::operator=().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ assign() [3/3]

template<typename T >
QList & QList< T >::assign ( std::initializer_list< T > l)
inline

Definition at line 526 of file qlist.h.

References QList< T >::assign().

+ Here is the call graph for this function:

◆ at()

template<typename T >
const_reference QList< T >::at ( qsizetype i) const
inlinenoexcept

Definition at line 446 of file qlist.h.

References d, QList< T >::data(), i, and Q_ASSERT_X.

Referenced by QEvdevTouchScreenHandler::QEvdevTouchScreenHandler(), QOscMessage::QOscMessage(), QSvgAttributes::QSvgAttributes(), QTextLineItemIterator::QTextLineItemIterator(), QTornOffMenu::QTornOffMenu(), QTuioHandler::QTuioHandler(), QFontEngineMulti::~QFontEngineMulti(), QGraphicsItem::~QGraphicsItem(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QThreadData::~QThreadData(), QTreeWidgetItem::~QTreeWidgetItem(), QWaylandSurfacePrivate::~QWaylandSurfacePrivate(), QWidgetRepaintManager::~QWidgetRepaintManager(), QWindowsFileSystemWatcherEngineThread::~QWindowsFileSystemWatcherEngineThread(), QWindowsMenu::~QWindowsMenu(), QWindowsMenuBar::~QWindowsMenuBar(), QWindowsOleEnumFmtEtc::~QWindowsOleEnumFmtEtc(), QMdiAreaPrivate::_q_closeTab(), QMdiAreaPrivate::_q_currentTabChanged(), QPrintPreviewWidgetPrivate::_q_fit(), QMenuBarPrivate::_q_internalShortcutActivated(), QGraphicsScenePrivate::_q_polishItems(), QAbstractSocketPrivate::_q_startConnecting(), QWizardPrivate::_q_updateButtonStates(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QGraphicsSceneBspTreeIndexPrivate::_q_updateSortCache(), QHostInfoLookupManager::abortLookup(), TreeWalker::acceptActionGroup(), TreeWalker::acceptConnections(), TreeWalker::acceptIncludes(), QQuickSplitViewPrivate::accumulatedSize(), QMenuPrivate::actionAt(), QMenuBarPrivate::actionAt(), QMenuBarPrivate::actionRect(), QWidgetPrivate::activateChildLayoutsRecursively(), QMdiAreaPrivate::activateHighlightedWindow(), QQmlTypeModule::add(), QGraphicsWidget::addActions(), QWidget::addActions(), QSplitterPrivate::addContribution(), QSGCurveGlyphAtlas::addGlyph(), QQmlTypeCompiler::addImport(), QGraphicsSceneBspTreeIndexPrivate::addItem(), QSGCurveGlyphAtlas::addStroke(), QPainterPath::addText(), QGraphicsItemGroup::addToGroup(), QQuickTextNodeEngine::addToSceneGraph(), QWaylandOutputPrivate::addView(), QFbScreen::addWindow(), QDialog::adjustPosition(), QTreeViewPrivate::adjustViewOptionsForIndex(), QQuickStochasticEngine::advance(), QQuickSpriteEngine::advance(), QSequentialAnimationGroupPrivate::advanceForwards(), QCommandLineParserPrivate::aliases(), QWindowsMimeRegistry::allFormatsForMime(), QWindowsMimeRegistry::allMimesForFormats(), QQmlJS::FixedPoolArray< T >::allocate(), QUrlQuery::allQueryItemValues(), allSubObjects(), QSequentialAnimationGroupPrivate::animationActualTotalDuration(), QSGThreadedRenderLoop::animationStarted(), QIconModeViewBase::appendHiddenRow(), QSvgFeMerge::apply(), QSyntaxHighlighterPrivate::applyFormatChanges(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QTextInlineObject::ascent(), QTextLine::ascent(), QTextHtmlParser::at(), QTextEngine::attributes(), QTextLayout::boundingRect(), QDialogButtonBox::buttonRole(), QCborContainerPrivate::byteArrayAt(), QCborContainerPrivate::byteData(), QMenuBarPrivate::calcActionRects(), QBoxLayoutPrivate::calcHfw(), QTextTableData::calcRowPosition(), QFormLayoutPrivate::calcSizeHints(), QGridLayoutRowData::calculateGeometries(), QTextEngine::calculateTabWidth(), QJSValue::call(), QJSValue::callAsConstructor(), QJSValue::callWithInstance(), QGeoMappingManagerEngine::cameraCapabilities(), QRegularExpressionMatch::capturedEnd(), QRegularExpressionMatch::capturedStart(), QDeclarativeSearchResultModel::category_at(), QTextTableData::cellRect(), QGridLayoutPrivate::cellRect(), QTextTableData::cellWidth(), QAbstractItemModel::changePersistentIndexList(), Moc::checkProperties(), Moc::checkSuperClasses(), QQuickItemViewPrivate::checkVisible(), QUndoCommand::child(), QQuickItem::childAt(), QWidgetPrivate::childAtRecursiveHelper(), QStandardItemPrivate::childIndex(), QGraphicsItemPrivate::childrenBoundingRectHelper(), QQmlDelegateChooser::choices_at(), QResourcePrivate::clear(), QListModel::clear(), QTableModel::clear(), QTreeModel::clear(), QToolBar::clear(), QConfFileSettingsPrivate::clear(), QTableModel::clearContents(), QListModel::clearItemData(), QTreeModel::clearItemData(), QDeclarativeGeoMap::clearMapItems(), QAbstractItemViewPrivate::clearOrRemove(), QQuickBasePositioner::clearPositionedItems(), QTextDocumentPrivate::clearUndoRedoStacks(), QZipWriter::close(), QPainterPathPrivate::close(), QTreeViewPrivate::collapse(), QSplitterPrivate::collapsible(), QXcbColormap::colorAt(), QGridLayoutPrivate::colSpacing(), QGridLayoutPrivate::colStretch(), QTextTableCell::column(), QStandardItemModelPrivate::columnsRemoved(), QCborContainerPrivate::compareElement(), QQuickStatePrivate::complete(), QGraphicsItemPrivate::TransformData::computedFullTransform(), QJsonValueConstRef::concreteString(), QMetaObject::connectSlotsByName(), QCborContainerPrivate::containerAt(), QQuadPath::contains(), contextFactory(), QWindowsMimeRegistry::converterFromMime(), QWindowsMimeRegistry::converterToMime(), convertPath(), QGeoPathPrivate::coordinateAt(), QDockWidgetLayout::count(), QOpenGLTimeMonitorPrivate::create(), QWindowPrivate::create(), QGraphicsScene::createItemGroup(), QTextLayout::createLine(), QWidgetPrivate::createRecursively(), QLocale::createSeparatedList(), QWidgetPrivate::createWinId(), QQuickFolderBreadcrumbBarPrivate::crumbClicked(), AndroidContentFileEngineIterator::currentFileName(), AndroidContentFileEngineIterator::currentFilePath(), QPdfPageNavigator::currentLink(), QPdfPageNavigator::currentLocation(), QPdfPageNavigator::currentPage(), QPdfPageNavigator::currentZoom(), QDeclarativeGeocodeModel::data(), QDeclarativeGeoRouteModel::data(), QListModel::data(), QQmlTableModel::data(), QQuickViewTestUtils::QaimModel::data(), QDeclarativeSearchResultModel::data(), QTreeWidgetItem::data(), QListWidgetItem::data(), QQuickPackagePrivate::data_at(), QQuickAnimationPropertyUpdater::debugUpdater(), QCocoaPrintDevice::defaultResolution(), QQmlDelegateChooser::delegate(), QObjectPrivate::deleteChildren(), QQuickDeliveryAgentPrivate::deliverHoverEventRecursive(), QCocoaScreen::deliverUpdateRequests(), QQmlTreeModelToTableModel::depthAtRow(), QQuick3DObjectPrivate::derefSceneManager(), QQuickItemPrivate::derefWindow(), QTextInlineObject::descent(), QTextLine::descent(), QOpenGLTimeMonitorPrivate::destroy(), QButtonGroupPrivate::detectCheckedButton(), QGridLayoutPrivate::distribute(), QQuickParentAnimationData::doAction(), QRegularExpressionPrivate::doMatch(), QSplitterPrivate::doMove(), QSplitterPrivate::doResize(), QGraphicsScenePrivate::draw(), QTextLayout::draw(), QTextLayout::drawCursor(), QTextDocumentLayoutPrivate::drawFrame(), QTextDocumentLayoutPrivate::drawTableCell(), QTextDocumentLayoutPrivate::drawTableCellBorder(), QStandardItemModel::dropMimeData(), QQmlTreeModelToTableModel::dump(), QQuickVisualTestUtils::dumpTree(), QBoxLayoutPrivate::effectiveMargins(), QPainterPath::elementAt(), QTextEngine::elidedText(), QQuick3DParticleEmitter::emitBurst(), QItemSelectionModel::emitSelectionChanged(), QTextDocumentPrivate::endEditBlock(), QTextLayout::endLayout(), QResourcePrivate::ensureChildren(), QGridLayoutEngine::ensureDynamicConstraint(), QFontEngineMulti::ensureEngineAt(), QWidget::ensurePolished(), QGraphicsItemPrivate::ensureSortedChildren(), QDBusMessage::errorMessage(), QQmlDirParser::errors(), QCss::Parser::errorSymbol(), QGraphicsSceneBspTreeIndexPrivate::estimateItems(), QGeoTiledMapOsm::evaluateCopyrights(), QMYSQLResult::exec(), QOCICols::execBatch(), QTreeViewPrivate::expand(), QToolBarLayout::expandedSize(), QGridLayoutPrivate::expandingDirections(), QTreeViewPrivate::expandOrCollapseItemAtPos(), QItemSelectionModelPrivate::expandSelection(), QDockAreaLayoutInfo::expansive(), exportMultiLineString(), exportMultiPolygon(), QWaylandObject::extension(), QWaylandObject::extension(), QSvgText::fastBounds(), QOCICols::fieldFromDefine(), QZipReader::fileData(), QConfFileSettingsPrivate::fileName(), QWinSettingsPrivate::fileName(), QFileSystemModelPrivate::fileSystemChanged(), QZipPrivate::fillFileInfo(), QQuadPath::fillSideOf(), QIBusPlatformInputContext::filterEventFinished(), QV4::Compiler::Context::findArgument(), findBySize(), QCborContainerPrivate::findCborMapKey(), FileInfoThread::findChangeRange(), QTextEngine::findItem(), QQuickVisualTestUtils::findItem(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QQuickVisualTestUtils::findItems(), QGraphicsGridLayoutEngine::findLayoutItem(), QQuickGridLayoutEngine::findLayoutItem(), QUrlQueryPrivate::findRecodedKey(), QDockAreaLayoutInfo::findSeparator(), findTextureWidgetsRecursively(), QQuickStateGroupPrivate::findTransition(), QQuickVisualTestUtils::findVisibleChild(), QSplitterPrivate::findWidget(), QSplitterPrivate::findWidgetJustBeforeOrJustAfter(), QListModel::flags(), QMenuBarPrivate::focusFirstAction(), for(), forcePolishHelper(), forceUpdate(), QTextEngine::formatIndex(), language::formatOverload(), QXcbDropData::formats_sys(), QTextTablePrivate::fragmentRemoved(), QV4::ExecutionEngine::fromData(), QSSGLayerRenderData::frustumCulling(), QSSGLayerRenderData::frustumCullingInline(), QDockAreaLayoutInfo::gapIndex(), QToolBarAreaLayoutInfo::gapIndex(), Generator::generateCode(), CPP::generateMultiDirectiveBegin(), QGestureEvent::gesture(), QGraphicsScenePrivate::gestureEventHandler(), QGraphicsScenePrivate::gestureTargetsAtHotSpots(), QPRand::get(), QDeclarativeGeocodeModel::get(), QDeclarativeGeoRouteModel::get(), QPRand::get(), QGridLayoutPrivate::getItemPosition(), QMenuPrivate::getLastVisibleAction(), QDBusMenuRegistrarInterface::GetMenuForWindow(), QMenuBarPrivate::getNextAction(), QWidgetPrivate::getOpaqueChildren(), QQuick3DParticleCustomShape::getPosition(), QQmlTableModel::getRow(), QOCICols::getValues(), QFontEngineMulti::glyphIndex(), QTextLayout::glyphRuns(), QQuickStochasticEngine::goalSeek(), QQuickGradient::gradientStops(), QXcbDrag::handleDrop(), QXcbDrag::handleEnter(), QQuickPathViewPrivate::handleMousePressEvent(), QQuickSplitViewPrivate::handleRelease(), QWindowsScreenManager::handleScreenChanges(), QXcbDrag::handleSelectionRequest(), QWaylandOutputPrivate::handleWindowPixelSizeChanged(), QRegularExpressionMatch::hasCaptured(), QTimerInfoList::hasPendingTimers(), QTableModel::headerData(), QTextInlineObject::height(), QTextLine::height(), QSqlResultPrivate::holderAt(), QGeoPolygonPrivate::holePath(), QTextLine::horizontalAdvance(), QListModeViewBase::horizontalOffset(), QListModeViewBase::horizontalScrollToValue(), QMainWindowLayout::hover(), QIBusAttributeList::imAttributes(), importGeometryCollection(), importMultiLineString(), importMultiPolygon(), QTreeViewPrivate::indentationForItem(), QListModel::index(), QTableModel::index(), QTreeModel::index(), QFileSystemModel::index(), QListModel::index(), QToolBarLayout::indexOf(), QGraphicsGridLayoutEngine::indexOf(), QQuickGridLayoutEngine::indexOf(), QSqlRecord::indexOf(), QDockAreaLayoutInfo::indexOf(), indexOfMonitor(), QDockAreaLayoutInfo::indexOfPlaceHolder(), QListModeViewBase::indexToListViewItem(), QIconModeViewBase::indexToListViewItem(), QDockAreaLayoutInfo::info(), BezierEase::init(), QWaylandCompositorPrivate::init(), QV4::Heap::ArrayObject::init(), QDirectFbIntegration::initializeDirectFB(), QGraphicsWidget::insertActions(), QWidget::insertActions(), QStandardItemPrivate::insertColumns(), QTreeModel::insertColumns(), QDockAreaLayoutInfo::insertGap(), QToolBarAreaLayoutInfo::insertGap(), QWindowsMenu::insertIntoMenuBar(), QComboBox::insertItems(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QSplitterPrivate::insertWidget(), QListModeViewBase::intersectingSet(), QOpenGLTimeMonitorPrivate::intervals(), QGraphicsItemPrivate::invalidateDepthRecursively(), QPainterPathPrivate::isClosed(), QMenu::isEmpty(), QQmlTreeModelToTableModel::isExpanded(), QBrush::isOpaque(), QOpenGLTimeMonitorPrivate::isResultAvailable(), QHttpMultiPartIODevice::isSequential(), QGuiApplicationPrivate::isWindowBlocked(), QConfFileSettingsPrivate::isWritable(), QTableModel::item(), QDomNodeListPrivate::item(), QDockAreaLayoutInfo::itemAt(), QGridLayoutEngine::itemAt(), QGridLayoutPrivate::itemAt(), QDockWidgetLayout::itemAt(), QToolBarLayout::itemAt(), QGridLayoutEngine::itemAt(), QQuickListViewPrivate::itemBefore(), QListModel::itemData(), QTableModel::itemData(), QTreeModel::itemData(), QTreeViewPrivate::itemDecorationRect(), QDockWidgetLayout::itemForRole(), QTreeViewPrivate::itemHeight(), QIconModeViewBase::itemIndex(), QQmlTreeModelToTableModel::itemIndex(), QTextEngine::itemize(), QDockAreaLayoutInfo::itemRect(), QToolBarAreaLayoutInfo::itemRect(), QDockAreaLayoutInfo::itemRect(), QGraphicsSceneBspTree::items(), QQmlDelegateModelPrivate::itemsInserted(), QQmlDelegateModelPrivate::itemsRemoved(), QQuickItemPrivate::itemToParentTransform(), QQuickSplitViewPrivate::itemVisibilityChanged(), QTextEngine::justify(), QDialog::keyPressEvent(), QQuickListViewPrivate::lastPosition(), QMdiAreaPrivate::lastWindowAboutToBeDestroyed(), QTreeViewPrivate::layout(), QToolBarLayout::layoutActions(), QTextDocumentLayoutPrivate::layoutCell(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutFrame(), QQuickTableViewPrivate::layoutHorizontalEdge(), QPrintPreviewWidgetPrivate::layoutPages(), QQuickSplitViewPrivate::layoutPositionItems(), QQuickSplitViewPrivate::layoutResizeSplitItems(), QTextDocumentLayoutPrivate::layoutTable(), QQuickTableViewPrivate::layoutVerticalEdge(), QQuickGridViewPrivate::layoutVisibleItems(), QQuickListViewPrivate::layoutVisibleItems(), QTextLine::leading(), QTextLine::leadingIncluded(), Parser::lexem(), Moc::lexemUntil(), QResourcePrivate::load(), QHeaderViewPrivate::logicalIndex(), Parser::lookup(), macList(), Preprocessor::macroExpandIdentifier(), main(), makeArgNames(), makeArgs(), QQuickItemViewPrivate::mapFromModel(), QAbstractProxyModel::mapSelectionToSource(), QQmlTreeModelToTableModel::mapToModel(), QQmlTreeModelToTableModel::mapToModel(), QTextBlockGroupPrivate::markBlocksDirty(), QNdefFilter::match(), QDockAreaLayoutInfo::maximumSize(), QWaylandSurfaceViewMapper::maybePrimaryView(), QCocoaMenu::menuItemAt(), QIOSMenu::menuItemAt(), QWindowsMenu::menuItemAt(), QIOSMenu::menuItemForTag(), QItemSelection::merge(), QQuickDeliveryAgentPrivate::mergePointerTargets(), QQmlDMAbstractItemModelData::metaCall(), QStandardItemModel::mimeData(), QListModel::mimeData(), QTableModel::mimeData(), QDockAreaLayoutInfo::minimumSize(), QToolBarAreaLayoutInfo::minimumSize(), CardLayout::minimumSize(), QTreeViewPrivate::modelIndex(), QXcbDrag::move(), QQmlTableModel::moveRow(), QWidgetRepaintManager::moveStaticWidgets(), QQnxIntegration::moveToScreen(), QObjectPrivate::moveToThread_helper(), QQuickViewTestUtils::QaimModel::name(), QDockWidgetLayout::nativeWindowDeco(), QTextLine::naturalTextRect(), QTextLine::naturalTextWidth(), QSubpathFlatIterator::next(), Parser::next(), SymbolStack::next(), QJSListForOfIterator::next(), next(), QDockAreaLayoutInfo::next(), QWindowsOleEnumFmtEtc::Next(), QRegularExpressionMatchPrivate::nextMatch(), QQuickStochasticEngine::nextState(), QMdiAreaPrivate::nextVisibleSubWindow(), QGuiApplicationPrivate::notifyLayoutDirectionChange(), QGuiApplicationPrivate::notifyWindowIconChanged(), QQuickViewTestUtils::QaimModel::number(), QQmlDelegateModelPrivate::object(), QTextFormatCollection::objectFormatIndex(), QQuickStatePrivate::operations_at(), QQuickStatePrivate::operations_replace(), Compress::operator()(), QGifHandler::option(), QICNSHandler::option(), QWidgetPrivate::overlappedRegion(), QQuickItemPrivate::paintOrderChildItems(), QDockAreaLayoutInfo::paintSeparators(), QCommandLineParserPrivate::parse(), parseCmdLine(), parseCollection(), QSvgHandler::parseCSStoXMLAttrs(), QQuickStackViewPrivate::parseElements(), QTlsPrivate::X509CertificateGeneric::parseExtension(), QCss::Parser::parseFunction(), parseOptions(), parseOptions(), QCommandLineParserPrivate::parseOptionValue(), parseStopNode(), QQuick3DParticleAffector::particle(), Parser::peek(), QXcbColormap::pixel(), QPainterPath::pointAtPercent(), QQuickDeliveryAgentPrivate::pointerTargets(), QMenuPrivate::popup(), QtWayland::TouchExtensionGlobal::postTouchEvent(), QWaitConditionPrivate::pre(), QGraphicsSceneBspTreeIndex::prepareBoundingRectChange(), prepareModelMaterialsImpl(), QDBusConnectionPrivate::prepareReply(), QQuickBasePositioner::prePositioning(), QDockAreaLayoutInfo::prev(), QTextHtmlStyleSelector::previousSiblingNode(), QGeoJson::printQvariant(), QDashStroker::processCurrentSubpath(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), QTreeWidgetItemPrivate::propagateDisabled(), QWidgetPrivate::propagatePaletteChange(), QTextFormat::properties(), QBluetoothServiceInfoPrivate::protocolDescriptor(), QBluetoothServiceInfo::protocolServiceMultiplexer(), QGraphicsSceneBspTreeIndexPrivate::purgeRemovedItems(), q_createNativeChildrenAndSetParent(), qDBusPropertyGet(), qDBusPropertyGetAll(), qDBusPropertySet(), QTest::qExec(), qRegisterResourceData(), QTest::qSignalDumperCallback(), QSqlQuery_snippets(), qt_findClosestValue(), qUnregisterResourceData(), qwindowcontainer_traverse(), QRasterPaintEnginePrivate::rasterizeLine_dashed(), QTreeWidgetItem::read(), QICNSHandler::read(), QHttpMultiPartIODevice::readData(), QOCICols::readLOBs(), QOCICols::readPiecewise(), QMdi::RegularTiler::rearrange(), QMdi::SimpleCascader::rearrange(), QMdi::IconTiler::rearrange(), QSplitterPrivate::recalc(), QFormLayoutPrivate::recalcHFW(), QTapGestureRecognizer::recognize(), QTapAndHoldGestureRecognizer::recognize(), QNdefFilter::recordAt(), QOpenGLTimeMonitorPrivate::recordSample(), QTextLine::rect(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QQuickItemPrivate::recursiveRefFromEffectItem(), QUndoCommand::redo(), QQuick3DObjectPrivate::refSceneManager(), QQuickItemPrivate::refWindow(), QConfFileSettingsPrivate::remove(), QListModel::remove(), QTextFramePrivate::remove_me(), QSortFilterProxyModel::removeColumns(), QTableModel::removeColumns(), QWidgetRepaintManager::removeDirtyWidget(), QWizardPrivate::removeFieldAt(), QGraphicsItemGroup::removeFromGroup(), QIconModeViewBase::removeHiddenRow(), QMediaTimeRangePrivate::removeInterval(), QGraphicsSceneBspTreeIndexPrivate::removeItem(), QQuickListViewPrivate::removeNonVisibleItems(), QQuickBasePositioner::removePositionedItem(), QHttpNetworkConnectionPrivate::removeReply(), QSortFilterProxyModel::removeRows(), QTableModel::removeRows(), JsonOutput::removeTargetDirectory(), QToolBarAreaLayoutInfo::removeToolBarBreak(), QWaylandOutputPrivate::removeView(), QFileSystemModelPrivate::removeVisibleFile(), QStackedLayoutPrivate::replaceAt(), QCborContainerPrivate::replaceAt_complex(), QQuickFolderBreadcrumbBarPrivate::repopulate(), QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests(), QSvgFeMerge::requiresSourceAlpha(), QGraphicsScenePrivate::resetDirtyItem(), QGraphicsItemPrivate::resetFocusProxy(), QGraphicsSceneBspTreeIndexPrivate::resetIndex(), QTextHtmlParser::resolveNode(), QQmlImportNamespace::resolveType(), LibHybrisEglServerBuffer::resourceForClient(), QUnifiedTimer::restart(), QQuickSpriteEngine::restart(), QDockAreaLayoutInfo::restoreState(), QFileDialogPrivate::restoreWidgetState(), QFileDialogPrivate::retranslateStrings(), QSequentialAnimationGroupPrivate::rewindForwards(), QQmlXmlListModel::roleNames(), QTextTableCell::row(), QGridLayoutPrivate::rowSpacing(), QStandardItemModelPrivate::rowsRemoved(), QGridLayoutPrivate::rowStretch(), QUnifiedTimer::runningAnimationCount(), QOpenGLTimeMonitorPrivate::samples(), sanityCheck(), QQuickParentChange::saveCurrentValues(), QSvgPaintEngine::saveGradientStops(), QDockAreaLayoutInfo::saveState(), QPixmapIconEngine::scaledPixmap(), QGraphicsItem::sceneEvent(), QQmlTypePrivate::scopedEnumValue(), QQmlTypePrivate::scopedEnumValue(), QWidgetPrivate::scrollChildren(), QListModeViewBase::scrollContentsBy(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QWaylandCompositorPrivate::seatFor(), QHeaderViewPrivate::sectionsRemoved(), QItemSelectionModel::selectedColumns(), QListWidget::selectedItems(), QItemSelectionModel::selectedRows(), QQmlTreeModelToTableModel::selectionForRowRange(), QFutureInterfaceBasePrivate::sendCallOut(), QFutureInterfaceBasePrivate::sendCallOuts(), QWidgetPrivate::sendComposeStatus(), QWidgetPrivate::sendPendingMoveAndResizeEvents(), sendResizeEvents(), QDockAreaLayoutInfo::separatorMove(), separatorMoveHelper(), QDockAreaLayoutInfo::separatorRect(), QDockAreaLayoutInfo::separatorRect(), QDockAreaLayoutInfo::separatorRegion(), QIBusAttributeList::serializeTo(), QBluetoothServiceInfoPrivate::serverChannel(), QBluetoothServiceInfo::serviceClassUuids(), QConfFileSettingsPrivate::set(), QAndroidPlatformScreen::setAvailableGeometry(), QStandardItemPrivate::setChild(), QGradient::setColorAt(), QSimplex::setConstraints(), QSequentialAnimationGroupPrivate::setCurrentAnimation(), QPrintPreviewWidgetPrivate::setCurrentPage(), QPainterPathStroker::setDashPattern(), QListModel::setData(), QQmlTableModel::setData(), QTreeWidgetItem::setData(), QListWidgetItem::setData(), QQuickItemPrivate::setEffectiveEnableRecur(), QQuickItemPrivate::setEffectiveVisibleRecur(), QWidgetPrivate::setEnabled_helper(), QQmlDataBlob::setError(), QFontEngineMulti::setFallbackFamiliesList(), QMenuPrivate::setFirstActionActive(), QTreeWidgetItem::setFlags(), QGridLayoutEngine::setGeometries(), CardLayout::setGeometry(), QSGOpenVGGlyphNode::setGlyphs(), QQuickStochasticEngine::setGoal(), QSGOpenVGInternalRectangleNode::setGradientStops(), QSGSoftwareInternalRectangleNode::setGradientStops(), QSGBasicInternalRectangleNode::setGradientStops(), QTableModel::setHeaderData(), QTableModel::setHorizontalHeaderItem(), QQuickItemPrivate::setImplicitLayoutMirror(), QQuick3DSkin::setInverseBindPoses(), QTableModel::setItem(), QGraphicsWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLocale_helper(), QTextFormat::setProperty(), QDBusPendingCallPrivate::setReplyCallback(), QSplitterPrivate::setSizes_helper(), QGradient::setStops(), QObjectPrivate::setThreadData_helper(), QGraphicsItem::setTransformations(), QWidgetPrivate::setUpdatesEnabled_helper(), QBoxLayoutPrivate::setupGeom(), QFormLayoutPrivate::setupHfwLayoutData(), QQmlDMAbstractItemModelData::setValue(), QTableModel::setVerticalHeaderItem(), QWidgetPrivate::setWindowIcon_helper(), QHttpMultiPartIODevice::size(), QDockAreaLayoutInfo::sizeHint(), QToolBarAreaLayoutLine::sizeHint(), QToolBarAreaLayoutInfo::sizeHint(), CardLayout::sizeHint(), QDockAreaLayoutItem::skip(), QToolBarAreaLayoutLine::skip(), Preprocessor::skipBranch(), Preprocessor::skipUntilEndif(), QConcatenateTablesProxyModelPrivate::slotSourceLayoutChanged(), sm_performSaveYourself(), QListModel::sort(), QStringListModel::sort(), QDirPrivate::sortFileList(), QTreeModel::sortItems(), QIdentityProxyModelPrivate::sourceLayoutChanged(), QDockAreaLayoutInfo::split(), splitIntoFamilies(), QQuickStochasticEngine::start(), QBluetoothServiceDiscoveryAgentPrivate::startServiceDiscovery(), QWidgetRepaintManager::staticContents(), QGridLayoutRowData::stealBox(), QWindowsFileSystemWatcherEngineThread::stop(), QSplitterPrivate::storeSizes(), QCborContainerPrivate::stringAt(), QCborContainerPrivate::stringEqualsElement(), QFontEngineMulti::stringToCMap(), QQuadPath::subPathsClosed(), QWidgetPrivate::subtractOpaqueSiblings(), QMdiAreaPrivate::subWindowList(), QSupportedWritingSystems::supported(), Parser::symbol(), SymbolStack::symbol(), Parser::symbol_lookup(), Parser::symbolAt(), QWidgetRepaintManager::sync(), QCborValue::tag(), QListModel::take(), QDockWidgetLayout::takeAt(), QTreeWidgetItem::takeChild(), QTreeWidgetItem::takeChildren(), QTableModel::takeHorizontalHeaderItem(), QTableModel::takeVerticalHeaderItem(), Parser::test(), QCss::Parser::test(), QQmlTreeModelToTableModel::testConsistency(), Moc::testFunctionAttribute(), QXcbDrag::timerEvent(), QCborValue::toDateTime(), QPainterPath::toFillPolygons(), Parser::token(), QGuiApplication::topLevelWindows(), QAnyStringViewUtils::toStringView(), QGridLayoutRowData::totalBox(), QFontSubset::toTruetype(), MFPlayerSession::trackMetaData(), QQuickParentAnimation::transition(), QQuickPropertyAction::transition(), QGridLayoutEngine::transpose(), QUndoCommand::undo(), QTextDocumentPrivate::undoRedo(), QGraphicsScenePrivate::ungrabKeyboard(), QGraphicsScenePrivate::ungrabMouse(), QDockAreaLayoutInfo::unplug(), QMainWindowLayout::unplug(), Parser::unquotedLexem(), QResource::unregisterResource(), QResource::unregisterResource(), Moc::until(), QCss::Parser::until(), QTextTablePrivate::update(), QMenuPrivate::updateActionRects(), QGraphicsItemPrivate::updateAncestorFlag(), QGraphicsItemPrivate::updateAncestorFlags(), QAnimationTimer::updateAnimationsTime(), QQmlAnimationTimer::updateAnimationsTime(), QUnifiedTimer::updateAnimationTimers(), QQuickListViewPrivate::updateCurrentSection(), QWidgetPrivate::updateFont(), QGraphicsWidgetPrivate::updateFont(), QMenuBarPrivate::updateGeometries(), QSGBasicInternalRectangleNode::updateGeometry(), QQuickSplitViewPrivate::updateHandleVisibilities(), QTreeWidgetItemPrivate::updateHiddenStatus(), QQuickSplitViewPrivate::updateHoveredHandle(), QGraphicsItemPrivate::updatePaintedViewBoundingRects(), QGraphicsWidgetPrivate::updatePalette(), updatePixelRatioHelper(), QQuickListViewPrivate::updateStickySections(), QDeclarativeSearchResultModel::updateWith(), QInputMethodQueryEvent::value(), QCborContainerPrivate::valueAt(), QCommandLineParser::values(), variantToString(), QListModeViewBase::verticalOffset(), QListModeViewBase::verticalScrollToValue(), QTreeViewPrivate::viewIndex(), QDialogButtonBoxPrivate::visibleButtons(), QQuickItemViewPrivate::visibleItem(), QmlIR::IRBuilder::visit(), QHeaderViewPrivate::visualIndex(), QTreeViewPrivate::visualRect(), QWindowsFileSystemWatcherEngineThread::wakeup(), QDockWidgetLayout::widgetForRole(), QTextInlineObject::width(), QTextLine::width(), QSGSoftwareThreadedRenderLoop::windowDestroyed(), QSGThreadedRenderLoop::windowDestroyed(), QPixmapIconEngine::write(), QQmlPropertyPrivate::write(), QQmlJSStreamWriter::writeEndObject(), QWinSettingsPrivate::writeHandle(), QTextLine::x(), QTextLine::y(), and QAndroidCamera::zoomTo().

+ Here is the call graph for this function:

◆ back() [1/2]

template<typename T >
reference QList< T >::back ( )
inline

Definition at line 689 of file qlist.h.

References QList< T >::last().

Referenced by QSvgText::addText(), parseStopNode(), QSvgPaintEngine::saveGradientStops(), and QQmlLSUtils::sourceLocationToDomItem().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ back() [2/2]

template<typename T >
const_reference QList< T >::back ( ) const
inlinenoexcept

Definition at line 690 of file qlist.h.

References QList< T >::last().

+ Here is the call graph for this function:

◆ begin() [1/2]

template<typename T >
iterator QList< T >::begin ( )
inline

Definition at line 625 of file qlist.h.

References d, and QList< T >::detach().

Referenced by FolderIterator::FolderIterator(), QHash< Key, T >::QHash(), QList< T >::QList(), QMultiHash< Key, T >::QMultiHash(), QWindowsMimeRegistry::~QWindowsMimeRegistry(), QWizardPrivate::_q_handleFieldObjectDestroyed(), QTimerInfoList::activateTimers(), QDBusAdaptorConnector::addAdaptor(), QWasmIntegration::addContainerElement(), QV4::CompiledData::ResolvedTypeReferenceMap::addToHash(), QTextEngine::adjustUnderlines(), QQuickItemViewPrivate::applyModelChanges(), QQuickItemViewPrivate::applyRemovalChange(), QVarLengthArray< T, Prealloc >::assign(), QQmlContextPrivate::cleanInstances(), QOpenGLContextGroupPrivate::cleanup(), QmlTypesClassDescription::collect(), QList< T >::constFirst(), convertIterableToVariantList(), QSvgMask::createMask(), QList< T >::crend(), detectLatestAndroidPlatform(), QBluetoothLocalDevicePrivate::deviceDisconnected(), disambiguateFileSelectedScripts(), QSvgTinyDocument::draw(), QSvgG::drawCommand(), QSvgSymbol::drawCommand(), QSvgMarker::drawCommand(), QSvgSwitch::drawCommand(), QTextDocumentLayoutPrivate::drawFlow(), effectiveTextMargin(), QGraphicsItemPrivate::ensureSequentialSiblingIndex(), QGraphicsScenePrivate::ensureSequentialTopLevelSiblingIndexes(), QGraphicsItemPrivate::ensureSortedChildren(), filterItemsFromTextLocation(), QUrlQueryPrivate::findKey(), QList< T >::first(), QList< T >::first(), QList< T >::first(), QTextTablePrivate::fragmentAdded(), QTextDocumentLayoutPrivate::frameIteratorForYPosition(), CPP::generateMultiDirectiveBegin(), QGraphicsScenePrivate::gestureEventHandler(), QSSGLayerRenderData::getRenderableItem2Ds(), AndroidCameraPrivate::getSupportedPictureSizes(), AndroidCameraPrivate::getSupportedPreviewSizes(), AndroidCameraPrivate::getSupportedVideoSizes(), QWaylandXdgToplevelPrivate::handleAckConfigure(), handlePropertyDefinitionAndBindingOverlap(), huntAndUnregister(), QtPrivate::indexOf(), QListModel::insert(), QAndroidPlatformMenuBar::insertMenu(), QAndroidPlatformMenu::insertMenuItem(), QtPrivate::lastIndexOf(), QItemSelectionModelPrivate::layoutChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QWasmWindowStack::lower(), QMimeMagicRule::matches(), mergeStringLiterals(), QFileSystemModel::mimeData(), QTreeModel::mimeData(), QQmlJSMetaMethod::mutableParametersRange(), Compress::operator()(), operator<<(), QList< T >::operator==(), QQuickItemPrivate::paintOrderChildItems(), Moc::parse(), QCommandLineParserPrivate::parse(), QGeoPositionInfoSourcePrivate::pluginsSorted(), QQuickDeliveryAgentPrivate::pointerTargets(), QDBusAdaptorConnector::polish(), QWasmWindowStack::pushWindow(), qListToSet(), QQuickViewTestUtils::qquickmodelviewstestutil_move(), QtPrivate::QStringList_join(), QWasmWindowStack::raise(), QWasmWindowStack::rbegin(), QDBusConnection::registerObject(), Vsp2HardwareLayerIntegration::remove(), QWasmIntegration::removeContainerElement(), QAndroidEventDispatcherStopper::removeEventDispatcher(), QtWaylandClient::QWaylandDisplay::removeListener(), QAndroidPlatformMenuBar::removeMenu(), QAndroidPlatformMenu::removeMenuItem(), QWindowsFileSystemWatcherEngine::removePaths(), QQmlTableModel::removeRow(), QQmlTreeModelToTableModel::removeVisibleRows(), QWasmWindowStack::removeWindow(), QList< T >::rend(), QList< T >::rend(), QBsdKeyboardHandler::resetKeymap(), QWasmIntegration::resizeScreen(), QQmlImportNamespace::resolveType(), QtConcurrent::FilteredReducedKernel< ReducedResultType, Iterator, KeepFunctor, ReduceFunctor, Reducer >::runIteration(), QtConcurrent::MappedReducedKernel< ReducedResultType, Iterator, MapFunctor, ReduceFunctor, Reducer >::runIteration(), QtConcurrent::FilterKernel< Sequence, KeepFunctor, ReduceFunctor >::runIteration(), QtConcurrent::FilteredReducedKernel< ReducedResultType, Iterator, KeepFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilteredEachKernel< Iterator, KeepFunctor >::runIterations(), QtConcurrent::MappedReducedKernel< ReducedResultType, Iterator, MapFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilterKernel< Sequence, KeepFunctor, ReduceFunctor >::runIterations(), selectionIsEmpty(), QWasmIntegration::setContainerElements(), QStandardItem::setData(), QList< T >::sliced(), QList< T >::sliced(), QQuick3DParticleInstanceTable::sort(), QStringListModel::sort(), QStandardItemPrivate::sortChildren(), sortContainer(), sortStringList(), QAndroidPlatformMenu::syncMenuItem(), uenumToIdList(), QQmlJS::Dom::updatePathFromOwnerQList(), QTableModel::updateRowIndexes(), QWasmWindowStack::windowPositionPreferenceChanged(), and QTimeZonePrivate::windowsIdToIanaIds().

+ Here is the call graph for this function:

◆ begin() [2/2]

template<typename T >
const_iterator QList< T >::begin ( ) const
inlinenoexcept

Definition at line 628 of file qlist.h.

References d.

◆ capacity()

template<typename T >
qsizetype QList< T >::capacity ( ) const
inline

Definition at line 422 of file qlist.h.

References d.

Referenced by QGraphicsViewPrivate::allocStyleOptionsArray().

+ Here is the caller graph for this function:

◆ cbegin()

◆ cend()

◆ clear()

template<typename T >
void QList< T >::clear ( )
inline

Definition at line 434 of file qlist.h.

References d, and QList< T >::size().

Referenced by DomAction::~DomAction(), DomActionGroup::~DomActionGroup(), DomButtonGroup::~DomButtonGroup(), DomButtonGroups::~DomButtonGroups(), DomColorGroup::~DomColorGroup(), DomColumn::~DomColumn(), DomConnectionHints::~DomConnectionHints(), DomConnections::~DomConnections(), DomCustomWidgets::~DomCustomWidgets(), DomDesignerData::~DomDesignerData(), DomGradient::~DomGradient(), DomIncludes::~DomIncludes(), DomItem::~DomItem(), DomLayout::~DomLayout(), DomPropertySpecifications::~DomPropertySpecifications(), DomResources::~DomResources(), DomRow::~DomRow(), DomSpacer::~DomSpacer(), DomWidget::~DomWidget(), QDeclarativeGeocodeModel::~QDeclarativeGeocodeModel(), QDynamicRigidBody::~QDynamicRigidBody(), QOpenGLEngineSharedShaders::~QOpenGLEngineSharedShaders(), QQuick3DParticleEmitter::~QQuick3DParticleEmitter(), QTreeWidgetItem::~QTreeWidgetItem(), QWasmIntegration::~QWasmIntegration(), QWaylandSurfacePrivate::~QWaylandSurfacePrivate(), QWindowsOleEnumFmtEtc::~QWindowsOleEnumFmtEtc(), Scheduler::~Scheduler(), QGraphicsScenePrivate::_q_polishItems(), QSortFilterProxyModelPrivate::_q_sourceLayoutAboutToBeChanged(), QSortFilterProxyModelPrivate::_q_sourceLayoutChanged(), QAbstractSocketPrivate::_q_startConnecting(), QAbstractSocketPrivate::_q_testConnection(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QEasingCurve::addTCBSegment(), QQuickState::apply(), QQuickTransitionManagerPrivate::applyBindings(), QSSGStageGeneratorBase::begin(), QQuickTransitionManager::cancel(), QQuickTableViewPrivate::cancelSelectionTracking(), QV4::ExecutionEngine::catchException(), QDeclarativeSearchResultModel::categories_clear(), QTextMarkdownImporter::cbEnterBlock(), QQmlDelegateChooser::choices_clear(), QOpenGLContextGroupPrivate::cleanup(), QSqlCachedResultPrivate::cleanup(), QResourcePrivate::clear(), QUrlQuery::clear(), QMimeAllGlobPatterns::clear(), QPainterPathPrivate::clear(), QTextFormatCollection::clear(), QHostInfoLookupManager::clear(), QSqlRecord::clear(), QTestEventList::clear(), QGraphicsSceneBspTree::clear(), QHeaderViewPrivate::clear(), QListModel::clear(), QTreeModel::clear(), QtPrivate::FixedColumnMatrix< T, NumColumns >::clear(), QDialogButtonBox::clear(), QDockAreaLayoutInfo::clear(), QToolBarAreaLayoutInfo::clear(), QNdefFilter::clear(), QQuickLabsPlatformMenu::clear(), QQuickLabsPlatformMenuBar::clear(), QQuickLabsPlatformMenuItemGroup::clear(), QQmlIncubator::clear(), QQmlDirParser::clear(), QQuickPathViewPrivate::clear(), QQuickActionGroupPrivate::clear(), QQuickButtonGroupPrivate::clear(), QQuickViewTestUtils::QaimModel::clear(), QQuickVisualTestUtils::SignalMultiSpy::clear(), QPlaceMatchRequestPrivate::clear(), QMediaTimeRange::clear(), SamplePool::clear(), QNmeaSatelliteInfoUpdate::clear(), QQuick3DParticleInstanceTable::clear(), QPdfPageNavigator::clear(), QQuickPdfSelection::clear(), QListModeViewBase::clear(), QIconModeViewBase::clear(), QSGInternalTextNode::clear(), QAnimationGroupPrivate::clear(), QQuick3DParticleTrailEmitter::clearBursts(), QDirPrivate::clearCache(), QMessageDialogOptions::clearCustomButtons(), QDeclarativeSearchResultModel::clearData(), QTextEngine::clearDecorations(), QColorSpacePrivate::clearElementListProcessingForEdit(), QQuick3DParticleEmitter::clearEmitBursts(), QFutureSynchronizer< T >::clearFutures(), QTableModel::clearItemData(), QTreeModel::clearItemData(), QTextEngine::clearLineData(), QQmlTreeModelToTableModel::clearModelData(), QQuick3DParticleAffector::clearParticles(), QGeoPathPrivate::clearPath(), QQuickBasePositioner::clearPositionedItems(), QPdfSearchModelPrivate::clearResults(), QQmlXmlListModel::clearRole(), QQuickContext2DTexture::clearTiles(), QQuickMultiPointTouchArea::clearTouchLists(), QTextDocumentPrivate::clearUndoRedoStacks(), QDeclarativeGeoRouteQuery::clearWaypoints(), QDBusConnectionPrivate::closeConnection(), QTreeViewPrivate::columnsAboutToBeRemoved(), QIBusPlatformInputContext::commit(), QIBusPlatformInputContext::commitText(), QQmlTypeCompiler::compile(), QQuickStatePrivate::complete(), QWaylandCompositorPrivate::connectToExternalSockets(), QDtlsPrivateOpenSSL::continueHandshake(), convertIterableToVariantList(), QXcbWindow::create(), QDomNodeListPrivate::createList(), QSslSocketPrivate::createPlainSocket(), QQuickContext2DTexture::createTiles(), QQuickPackagePrivate::data_clear(), QQuickPropertyChangesPrivate::decode(), QObjectPrivate::deleteChildren(), QtWaylandClient::VulkanServerBufferIntegration::deleteOrphanedTextures(), QOpenGLContextGroupPrivate::deletePendingResources(), deployTranslations(), QOpenGLTimeMonitorPrivate::destroy(), QBspTree::destroy(), QQuickSplitViewPrivate::destroyHandles(), QKmsDevice::discoverPlanes(), QDBusConnectionPrivate::doDispatch(), QGraphicsScenePrivate::drawItemHelper(), QDB2ResultPrivate::emptyValueCache(), QMimeXMLProvider::ensureLoaded(), QHttpNetworkConnectionPrivate::fillHttp2Queue(), QItemSelectionModelPrivate::finalize(), QQmlObjectCreator::finalize(), QV4DebugClientPrivate::flushSendBuffer(), QTextEngine::freeMemory(), QGraphicsScenePrivate::gestureEventHandler(), FileInfoThread::getFileInfos(), QXcbDrag::handleEnter(), QWaylandOutputPrivate::handleWindowPixelSizeChanged(), huntAndUnregister(), importMultiPolygon(), QSslSocketPrivate::init(), QFileDialogPrivate::init(), QCss::Parser::init(), QPainterState::init(), QTlsPrivate::TlsCryptographOpenSSL::init(), QPRand::init(), QCborStreamReaderPrivate::initDecoder(), QSSGRendererPrivate::intersectRayWithSubsetRenderable(), QNearFieldTargetPrivateImpl::invalidate(), QItemSelectionModelPrivate::layoutAboutToBeChanged(), QAbstractItemModelTesterPrivate::layoutChanged(), QItemSelectionModelPrivate::layoutChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutTable(), QBluetoothServer::listen(), QResourcePrivate::load(), QPpdPrintDevice::loadColorModes(), QCocoaPrintDevice::loadColorModes(), QPpdPrintDevice::loadDuplexModes(), QCocoaPrintDevice::loadDuplexModes(), QPpdPrintDevice::loadInputSlots(), QCocoaPrintDevice::loadInputSlots(), QPpdPrintDevice::loadOutputBins(), QCocoaPrintDevice::loadOutputBins(), QPpdPrintDevice::loadPageSizes(), QCocoaPrintDevice::loadPageSizes(), QQmlJS::Dom::DomEnvironment::loadPendingDependencies(), QPpdPrintDevice::loadResolutions(), QCocoaPrintDevice::loadResolutions(), QEventDispatcherUNIXPrivate::markPendingSocketNotifiers(), QListWidget::mimeData(), QTableWidget::mimeData(), QListModel::mimeData(), QTableModel::mimeData(), QTreeModel::mimeData(), QTreeViewPrivate::modelAboutToBeReset(), QTreeViewPrivate::modelDestroyed(), QQuickMultiPointTouchArea::mouseMoveEvent(), SocketWorker::notifyAboutNewData(), QWinRTLowEnergyServiceHandler::obtainCharList(), EVRCustomPresenter::OnClockSetRate(), QDeclarativeSearchResultModel::onContentUpdated(), QQuickStatePrivate::operations_clear(), Compress::operator()(), operator>>(), VkSpecParser::parse(), QTextHtmlParser::parse(), QCompleter::pathFromIndex(), QPrintPreviewWidgetPrivate::populateScene(), QQuickItemViewPrivate::positionViewAtIndex(), QSSGLayerRenderData::prepareModelsForRender(), QEvdevTouchScreenData::processInputEvent(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), QGraphicsItemCache::purge(), QGraphicsSceneBspTreeIndexPrivate::purgeRemovedItems(), QDeclarativeSearchResultModel::queryFinished(), QTreeWidgetItem::read(), QPixmapIconEngine::read(), QShortcutPrivate::redoGrab(), QSyntaxHighlighterPrivate::reformatBlocks(), QDeclarativePolylineMapItemPrivateCPU::regenerateCache(), QTextFramePrivate::remove_me(), QWindowsFontDatabase::removeApplicationFonts(), ShadowMapPass::renderPrep(), ReflectionMapPass::renderPrep(), VDMAbstractItemModelDataType::replaceWatchedRoles(), QQuickFolderBreadcrumbBarPrivate::repopulate(), QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests(), QThreadPoolPrivate::reset(), QWindowsSystemProxy::reset(), QWizardPrivate::reset(), QQuickContext2D::reset(), QDeclarativeGeoRouteModel::reset(), QQuick3DParticleEmitter::reset(), QWaylandInputMethodEventBuilder::reset(), QIBusPlatformInputContext::reset(), QGraphicsItemPrivate::resetFocusProxy(), QSSGLayerRenderData::resetForFrame(), ShadowMapPass::resetForFrame(), ReflectionMapPass::resetForFrame(), ZPrePassPass::resetForFrame(), DepthMapPass::resetForFrame(), ScreenMapPass::resetForFrame(), ScreenReflectionPass::resetForFrame(), OpaquePass::resetForFrame(), TransparentPass::resetForFrame(), Item2DPass::resetForFrame(), UserPass::resetForFrame(), QGraphicsSceneBspTreeIndexPrivate::resetIndex(), QBsdKeyboardHandler::resetKeymap(), QQuickItemViewTransitioner::resetTargetLists(), QDtlsPrivateOpenSSL::resumeHandshake(), QSSGParticleRenderer::rhiPrepareRenderable(), QQmlXmlListModel::roleObjects(), QFFmpegImageCapture::setCaptureSession(), QGstreamerImageCapture::setCaptureSession(), QLowEnergyServiceData::setCharacteristics(), QSslConfiguration::setCiphers(), QLoggingSettingsParser::setContent(), QLoggingSettingsParser::setContent(), QLowEnergyCharacteristicData::setDescriptors(), QBoxLayoutPrivate::setDirty(), QQmlDirParser::setError(), QWaylandSharedTextureProvider::setExtensionReady(), QTextEngine::setFormats(), QFutureSynchronizer< T >::setFuture(), QNdefNfcSmartPosterRecord::setIcons(), AVFMediaPlayer::setMedia(), QXcbScreen::setMonitor(), QSqlRecord::setNull(), QMessagePattern::setPattern(), QGlyphRun::setRawData(), QDBusPendingCallPrivate::setReplyCallback(), QGradient::setStops(), QNdefNfcSmartPosterRecord::setTitles(), QBoxLayoutPrivate::setupGeom(), QFormLayoutPrivate::setupHfwLayoutData(), QFormLayoutPrivate::setupVerticalLayoutData(), QUrlModel::setUrls(), QGtk3FileDialogHelper::show(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::show(), MainWindow::showList(), QConcatenateTablesProxyModelPrivate::slotSourceLayoutChanged(), QIdentityProxyModelPrivate::sourceLayoutChanged(), QBluetoothDeviceDiscoveryAgentPrivate::start(), QQmlAnimationTimer::startAnimations(), QQuickSpriteEngine::startAssemblingImage(), QTlsPrivate::TlsCryptographOpenSSL::startHandshake(), QDtlsPrivateOpenSSL::startHandshake(), QQuickFlickableReboundTransition::startTransition(), QQmlEngineControlServiceImpl::stateChanged(), QAndroidAudioDecoder::stop(), AVFAudioDecoder::stop(), Scheduler::stopScheduler(), QQmlConfigurableDebugService< Base >::stopWaiting(), QWaylandSurfacePrivate::surface_commit(), QWidgetRepaintManager::sync(), QHstsStore::synchronize(), QQuick3DSceneRenderer::synchronize(), QQuick3DWindowAttachment::synchronize(), QTreeWidgetItem::takeChildren(), QPainterPath::toSubpathPolygons(), QtWaylandClient::QWaylandTouchExtension::touchCanceled(), QQuickShapeGenericRenderer::triangulateStroke(), QDockAreaLayoutInfo::unnest(), QPdfLinkModelPrivate::update(), QMenuBarPrivate::updateGeometries(), QSGSoftwareRenderableNodeUpdater::updateNodes(), QQuickImageParticle::updatePaintNode(), AVFMediaPlayer::updateTracks(), QQmlJSStreamWriter::writeEndObject(), QtWaylandClient::QWaylandTextInputv1::zwp_text_input_v1_modifiers_map(), and QtWaylandClient::QWaylandTextInputv2::zwp_text_input_v2_modifiers_map().

+ Here is the call graph for this function:

◆ constBegin()

template<typename T >
const_iterator QList< T >::constBegin ( ) const
inlinenoexcept

Definition at line 632 of file qlist.h.

References d.

Referenced by QParallelAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QQmlImports::addFileImport(), QWindowsFileSystemWatcherEngine::addPaths(), QQuickListViewPrivate::addVisibleItems(), QSvgStyle::apply(), QQuickItemViewPrivate::applyModelChanges(), QAbstractItemViewPrivate::clearOrRemove(), QParallelAnimationGroupPrivate::connectUncontrolledAnimations(), QTextDocumentLayoutPrivate::drawFrame(), QList< T >::emplace(), QQuickListViewPrivate::endPositionAt(), QThreadPoolPrivate::enqueueTask(), QListModel::ensureSorted(), QTextTablePrivate::findCellIndex(), QUrlQueryPrivate::findKey(), findObject(), QProcessEnvironmentPrivate::fromList(), QJsonArray::fromStringList(), Generator::generateCode(), QGraphicsScenePrivate::gestureEventHandler(), QQmlVMEMetaObject::getQObjectGuardForProperty(), QTextDocumentLayoutPrivate::hitTest(), QQmlJS::AST::BoundNames::indexOf(), QList< T >::insert(), QList< T >::insert(), QQmlDelegateModelPrivate::itemsRemoved(), QIdentityProxyModel::mapSelectionFromSource(), QIdentityProxyModel::mapSelectionToSource(), QDBusInterfacePrivate::metacall(), QDBusConnection::objectRegisteredAt(), QQuickListViewPrivate::originPosition(), parseProvider(), parseTracepoint(), QQuickListViewPrivate::positionAt(), QSGRenderer::preprocess(), QSvgStructureNode::previousSiblingNode(), QUrlQuery::query(), QUrlQuery::queryItems(), QQuickItemViewPrivate::removeItem(), QQuickItemViewPrivate::repositionFirstItem(), QOpenGLMultiGroupSharedResource::resources(), QSvgStyle::revert(), QQmlImportInstance::setQmldirContent(), QQuickListViewPrivate::snapPosAt(), QTextOption::tabArray(), QQuickListViewPrivate::updateCurrentSection(), QQnxScreen::updateHierarchy(), QQuickItemViewPrivate::updateVisibleIndex(), and QQuickListViewPrivate::visibleItemsChanged().

+ Here is the caller graph for this function:

◆ constData()

◆ constEnd()

template<typename T >
const_iterator QList< T >::constEnd ( ) const
inlinenoexcept

Definition at line 633 of file qlist.h.

References d.

Referenced by QParallelAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QQmlImports::addFileImport(), QWindowsFileSystemWatcherEngine::addPaths(), QQuickListViewPrivate::addVisibleItems(), QSvgStyle::apply(), QAbstractItemViewPrivate::clearOrRemove(), QmlTypesClassDescription::collect(), QParallelAnimationGroupPrivate::connectUncontrolledAnimations(), QTextDocumentLayoutPrivate::drawFrame(), QQuickListViewPrivate::endPositionAt(), QThreadPoolPrivate::enqueueTask(), QTextTablePrivate::findCellIndex(), findObject(), QProcessEnvironmentPrivate::fromList(), QJsonArray::fromStringList(), Generator::generateCode(), QGraphicsScenePrivate::gestureEventHandler(), QQmlVMEMetaObject::getQObjectGuardForProperty(), QUrlQuery::hasQueryItem(), QTextDocumentLayoutPrivate::hitTest(), QQmlJS::AST::BoundNames::indexOf(), QQuickListViewPrivate::lastPosition(), QIdentityProxyModel::mapSelectionFromSource(), QIdentityProxyModel::mapSelectionToSource(), QDBusInterfacePrivate::metacall(), QDBusConnection::objectRegisteredAt(), parseProvider(), parseTracepoint(), QQuickListViewPrivate::positionAt(), QSGRenderer::preprocess(), QSvgStructureNode::previousSiblingNode(), QUrlQuery::query(), QUrlQuery::queryItems(), QUrlQuery::queryItemValue(), QOpenGLMultiGroupSharedResource::resources(), QSvgStyle::revert(), QQmlImportInstance::setQmldirContent(), QQuickListViewPrivate::snapPosAt(), sortStringList(), QTextOption::tabArray(), QQnxScreen::updateHierarchy(), and QQuickItemViewPrivate::updateVisibleIndex().

+ Here is the caller graph for this function:

◆ constFirst()

template<typename T >
const T & QList< T >::constFirst ( ) const
inlinenoexcept

Definition at line 647 of file qlist.h.

References QList< T >::begin(), QList< T >::isEmpty(), and Q_ASSERT.

Referenced by Generator::Generator(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QWinSettingsPrivate::~QWinSettingsPrivate(), QTimerInfoList::activateTimers(), QQuickGridViewPrivate::addVisibleItems(), QQuickGridViewPrivate::adjustFirstItem(), QQuickListViewPrivate::adjustFirstItem(), QGlobalNetworkProxy::applicationProxy(), QQuickListViewPrivate::applyInsertionChange(), QTlsPrivate::TlsCryptographOpenSSL::checkSslErrors(), QGraphicsScenePrivate::clearKeyboardGrabber(), QGraphicsScenePrivate::clearMouseGrabber(), QQuadPath::controlPointRect(), detectLatestAndroidPlatform(), QPageRanges::firstPage(), Moc::generate(), CPP::generateMultiDirectiveBegin(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::handleActivityResult(), QQuickListViewPrivate::initializeCurrentItem(), QPainterPath::isEmpty(), QQuickListViewPrivate::itemGeometryChanged(), QItemSelectionModelPrivate::layoutAboutToBeChanged(), QQuickGridViewPrivate::layoutVisibleItems(), QQuickListViewPrivate::layoutVisibleItems(), main(), QQmlTypePrivate::metaObject(), QXcbMime::mimeConvertToFormat(), QGraphicsScenePrivate::mousePressEventHandler(), QQuickItemPrivate::nextPrevItemInTabFocusChain(), Moc::parseClassHead(), QWaitConditionPrivate::post(), QOpenGLContextGroupPrivate::removeContext(), QQuickGridViewPrivate::removeNonVisibleItems(), QQuickItemViewPrivate::repositionFirstItem(), QQuickGridViewPrivate::resetFirstItemPosition(), QQuickListViewPrivate::resetFirstItemPosition(), QThreadPoolThread::run(), QGraphicsScenePrivate::sendTouchBeginEvent(), QBenchmarkTestMethodData::setResults(), QXcbDrag::startDrag(), QGraphicsScenePrivate::touchEventHandler(), QThreadPoolPrivate::tryToStartMoreThreads(), QQuickListViewPrivate::updateSizeChangesBeforeVisiblePos(), and windowPlacementOffset().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ constLast()

template<typename T >
const T & QList< T >::constLast ( ) const
inlinenoexcept

Definition at line 650 of file qlist.h.

References QList< T >::end(), QList< T >::isEmpty(), and Q_ASSERT.

Referenced by QSGRootNode::~QSGRootNode(), QQuickGridViewPrivate::addVisibleItems(), QOpenGLCompositor::addWindow(), QQuickListViewPrivate::applyInsertionChange(), QQuickItemViewPrivate::applyRemovalChange(), QOpenGLCompositor::changeWindowIndex(), QGraphicsScenePrivate::dispatchHoverEvent(), QTextDocumentLayoutPrivate::drawFlow(), QGraphicsScenePrivate::enterModal(), QQmlApplicationEnginePrivate::finishLoad(), QGraphicsScenePrivate::grabKeyboard(), QGraphicsScenePrivate::grabMouse(), BezierEase::init(), QToolBarAreaLayoutInfo::insertToolBarBreak(), QQuickListViewPrivate::itemBefore(), QPageRanges::lastPage(), QDialogButtonBoxPrivate::layoutButtons(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutTable(), QGraphicsScenePrivate::mousePressEventHandler(), QOpenGLCompositor::moveToTop(), Moc::parseFunctionArguments(), QTextHtmlParser::parseTag(), QQuickGridViewPrivate::removeNonVisibleItems(), QQuickListViewPrivate::removeNonVisibleItems(), QGraphicsScenePrivate::sendMouseEvent(), QGraphicsScenePrivate::storeMouseButtonsForMouseGrabber(), QWizardPrivate::switchToPage(), Preprocessor::tokenize(), QGraphicsScenePrivate::ungrabKeyboard(), QGraphicsScenePrivate::ungrabMouse(), QTextTableData::updateTableSize(), and QPdfEnginePrivate::writeTail().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ count() [1/2]

template<typename T >
qsizetype QList< T >::count ( ) const
inlinenoexcept

Definition at line 398 of file qlist.h.

References QList< T >::size().

Referenced by QOCIBatchCleanupHandler::~QOCIBatchCleanupHandler(), QWindowsOleEnumFmtEtc::~QWindowsOleEnumFmtEtc(), __attribute__(), QAbstractSocketPrivate::_q_connectToNextAddress(), QAbstractSocketPrivate::_q_startConnecting(), QWindowsFileSystemWatcherEngine::addPaths(), allSubObjects(), Scheduler::areSamplesScheduled(), QDeclarativeSearchResultModel::categories_count(), QDeclarativeSearchResultModel::category_at(), QDeclarativePlace::category_count(), QDeclarativeGeoMap::clearMapItems(), QQuickBasePositioner::clearPositionedItems(), QDB2ResultPrivate::clearValueCache(), QDeclarativeGeocodeModel::count(), QDeclarativeGeoRouteModel::count(), QMacMimeFileUri::count(), QDeclarativeGeocodeModel::data(), QDeclarativeGeoRouteModel::data(), QDeclarativeSearchResultModel::data(), QCocoaPrintDevice::defaultResolution(), QBoxLayoutPrivate::effectiveMargins(), end(), QSGOpenVGNodeVisitor::endVisit(), QColorSpacePrivate::equals(), QGeoTiledMappingManagerEngineNokia::evaluateCopyrightsText(), QOCICols::execBatch(), QOCICols::fieldFromDefine(), QQuickAbstractButtonPrivate::findExclusiveButtons(), QDeclarativeGeocodeModel::geocodeError(), QDeclarativeGeocodeModel::geocodeFinished(), QDeclarativeGeocodeModel::get(), QDeclarativeGeoRouteModel::get(), QDockAreaLayoutInfo::hasGapItem(), MainWindow::highlightListItems(), QWasmWindowStack::lower(), QCocoaMenu::menuItemAt(), CardLayout::minimumSize(), QWindowsOleEnumFmtEtc::Next(), parseCollection(), QWasmWindowStack::pushWindow(), QWasmWindowStack::raise(), QWaylandCompositorPrivate::removeOutput(), QWasmWindowStack::removeWindow(), QSGOpenVGGlyphNode::render(), QSSGQmlUtilities::replaceReferencesToResource(), QObjectPrivate::ConnectionData::resizeSignalVector(), QDeclarativeGeocodeModel::rowCount(), QDeclarativeGeoRouteModel::rowCount(), QOpenXRSpatialAnchorModel::rowCount(), QDeclarativeSearchResultModel::rowCount(), QIOSFileDialog::selectedFilesChanged(), CardLayout::setGeometry(), QSGCurveGlyphNode::setGlyphs(), QSGDistanceFieldGlyphNode::setGlyphs(), QSGOpenVGInternalRectangleNode::setGradientStops(), QSSGSceneDesc::setProperty(), CardLayout::sizeHint(), QWindowsOleEnumFmtEtc::Skip(), MFPlayerSession::trackCount(), AVFMediaPlayer::trackCount(), QSSGQmlUtilities::valueToQml(), and QSGOpenVGNodeVisitor::visit().

+ Here is the call graph for this function:

◆ count() [2/2]

template<typename T >
template<typename AT = T>
qsizetype QList< T >::count ( const AT & t) const
inlinenoexcept

Definition at line 585 of file qlist.h.

References QList< T >::data(), and QList< T >::size().

+ Here is the call graph for this function:

◆ crbegin()

template<typename T >
const_reverse_iterator QList< T >::crbegin ( ) const
inlinenoexcept

Definition at line 638 of file qlist.h.

References QList< T >::end().

Referenced by QUrlModel::addUrls(), QFileDialogPrivate::deleteCurrent(), QWizardPrivate::reset(), QPlatformScreen::topLevelAt(), and topLevelAt().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ crend()

template<typename T >
const_reverse_iterator QList< T >::crend ( ) const
inlinenoexcept

Definition at line 639 of file qlist.h.

References QList< T >::begin().

Referenced by QUrlModel::addUrls(), QFileDialogPrivate::deleteCurrent(), QtWidgetsActionPrivate::destroy(), QWizardPrivate::reset(), QPlatformScreen::topLevelAt(), and topLevelAt().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ data() [1/2]

template<typename T >
pointer QList< T >::data ( )
inline

Definition at line 431 of file qlist.h.

References d, and QList< T >::detach().

Referenced by LibHybrisEglServerBuffer::LibHybrisEglServerBuffer(), QtWaylandClient::LibHybrisServerBuffer::LibHybrisServerBuffer(), QOCIBatchCleanupHandler::~QOCIBatchCleanupHandler(), QGraphicsViewPrivate::allocStyleOptionsArray(), QWaylandQuickCompositorQuickExtensionContainer::append_extension(), QQuick3DParticleEmitter::appendEmitBurst(), QList< T >::at(), QWaylandQuickCompositorQuickExtensionContainer::atFunction(), QQuick3DParticleEmitter::clearEmitBursts(), QWaylandQuickCompositorQuickExtensionContainer::clearFunction(), QList< T >::count(), QWaylandQuickCompositorQuickExtensionContainer::countFunction(), QOpenGLTimeMonitorPrivate::create(), QVertexIndexVector::data(), QV4::Heap::DECLARE_HEAP_OBJECT(), QOpenGLTimeMonitorPrivate::destroy(), QQuick3DParticleEmitter::emitBurst(), QQuick3DParticleEmitter::emitBurstCount(), QQmlBinding::evaluate(), QQmlPropertyBindingJSForBoundFunction::evaluate(), QGraphicsViewPrivate::freeStyleOptionsArray(), BezierEase::getBezierSegment(), QV4::getGadgetProperty(), BrcmBuffer::handle(), QOpenXRSpaceExtension::handleEvent(), QTreeViewPrivate::insertViewItems(), QtWaylandClient::LibHybrisServerBuffer::libhybris_buffer_add_fd(), QV4::FunctionPrototype::method_apply(), QQmlJS::Dom::ListP::operator*(), QQmlJS::Dom::ListP::operator*(), QQmlJS::Dom::ListP::operator->(), QQmlJS::Dom::ListP::operator->(), QList< T >::operator==(), QList< T >::operator[](), QQmlPropertyPrivate::readValueProperty(), QQuick3DParticleEmitter::removeLastEmitBurst(), QTreeViewPrivate::removeViewItems(), QQuick3DParticleEmitter::replaceEmitBurst(), LibHybrisEglServerBuffer::resourceForClient(), QHeaderViewPrivate::sectionsRemoved(), QWaylandKeyboardPrivate::sendEnter(), QDynamicRigidBody::setInertiaMatrix(), swap_bit_order(), QPainterPath::translate(), QQuickShapeGenericRenderer::triangulateFill(), QQuickShapeGenericRenderer::triangulateStroke(), QSSGQmlUtilities::valueToQml(), and QQmlPropertyPrivate::write().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ data() [2/2]

template<typename T >
const_pointer QList< T >::data ( ) const
inlinenoexcept

Definition at line 432 of file qlist.h.

References d.

◆ detach()

template<typename T >
void QList< T >::detach ( )
inline

Definition at line 426 of file qlist.h.

References d.

Referenced by QSslSocketPrivate::addDefaultCaCertificate(), QList< T >::begin(), QList< T >::data(), QList< T >::end(), QList< T >::move(), and QList< T >::swapItemsAt().

+ Here is the caller graph for this function:

◆ emplace() [1/2]

template<typename T >
template<typename ... Args>
iterator QList< T >::emplace ( const_iterator before,
Args &&... args )
inline

Definition at line 530 of file qlist.h.

References args, QList< T >::constBegin(), QList< T >::emplace(), and Q_ASSERT_X.

Referenced by QList< T >::emplace(), QList< T >::insert(), and QList< T >::insert().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ emplace() [2/2]

template<typename T >
template<typename ... Args>
QList< T >::iterator QList< T >::emplace ( qsizetype i,
Args &&... args )

Definition at line 873 of file qlist.h.

References args, begin(), d, i, and Q_ASSERT_X.

+ Here is the call graph for this function:

◆ emplace_back()

template<typename T >
template<typename ... Args>
reference QList< T >::emplace_back ( Args &&... args)
inline

Definition at line 683 of file qlist.h.

References args, and QList< T >::emplaceBack().

Referenced by createRenderablesHelper(), QDir::entryInfoList(), QDir::entryList(), QDirPrivate::initFileLists(), and QStringListModel::sort().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ emplaceBack()

template<typename T >
template<typename... Args>
QList< T >::reference QList< T >::emplaceBack ( Args &&... args)
inline

Definition at line 882 of file qlist.h.

References args, and d.

Referenced by QQmlJSScope::addOwnRuntimeFunctionIndex(), QList< T >::append(), QList< T >::append(), QList< T >::emplace_back(), QQmlComponent::errors(), QNetworkHeadersPrivate::fromHttpToRaw(), QTimerInfoList::registeredTimers(), and QBenchmarkTestMethodData::setResults().

+ Here is the caller graph for this function:

◆ emplaceFront()

template<typename T >
template<typename... Args>
QList< T >::reference QList< T >::emplaceFront ( Args &&... args)
inline

Definition at line 852 of file qlist.h.

References args, and d.

Referenced by QList< T >::prepend(), and QList< T >::prepend().

+ Here is the caller graph for this function:

◆ empty()

◆ end() [1/2]

template<typename T >
iterator QList< T >::end ( )
inline

Definition at line 626 of file qlist.h.

References d, and QList< T >::detach().

Referenced by FolderIterator::FolderIterator(), QHash< Key, T >::QHash(), QList< T >::QList(), QMultiHash< Key, T >::QMultiHash(), QWizardPrivate::_q_handleFieldObjectDestroyed(), QTimerInfoList::activateTimers(), QDBusAdaptorConnector::addAdaptor(), QWasmIntegration::addContainerElement(), QV4::CompiledData::ResolvedTypeReferenceMap::addToHash(), QTextEngine::adjustUnderlines(), QQuickItemViewPrivate::applyModelChanges(), QQuickItemViewPrivate::applyRemovalChange(), QVarLengthArray< T, Prealloc >::assign(), QQmlContextPrivate::cleanInstances(), QOpenGLContextGroupPrivate::cleanup(), QmlTypesClassDescription::collect(), QList< T >::constLast(), convertIterableToVariantList(), QList< T >::crbegin(), QSvgMask::createMask(), detectLatestAndroidPlatform(), QBluetoothLocalDevicePrivate::deviceDisconnected(), disambiguateFileSelectedScripts(), QSvgTinyDocument::draw(), QSvgG::drawCommand(), QSvgSymbol::drawCommand(), QSvgMarker::drawCommand(), QSvgSwitch::drawCommand(), QTextDocumentLayoutPrivate::drawFlow(), effectiveTextMargin(), QGraphicsItemPrivate::ensureSequentialSiblingIndex(), QGraphicsScenePrivate::ensureSequentialTopLevelSiblingIndexes(), QGraphicsItemPrivate::ensureSortedChildren(), filterItemsFromTextLocation(), QTextTablePrivate::fragmentAdded(), QTextDocumentLayoutPrivate::frameIteratorForYPosition(), CPP::generateMultiDirectiveBegin(), QGraphicsScenePrivate::gestureEventHandler(), QSSGLayerRenderData::getRenderableItem2Ds(), AndroidCameraPrivate::getSupportedPictureSizes(), AndroidCameraPrivate::getSupportedPreviewSizes(), AndroidCameraPrivate::getSupportedVideoSizes(), QWaylandXdgToplevelPrivate::handleAckConfigure(), handlePropertyDefinitionAndBindingOverlap(), huntAndUnregister(), QtPrivate::indexOf(), QListModel::insert(), QList< T >::insert(), QAndroidPlatformMenuBar::insertMenu(), QAndroidPlatformMenu::insertMenuItem(), QList< T >::last(), QList< T >::last(), QList< T >::last(), QMediaTimeRange::latestTime(), QItemSelectionModelPrivate::layoutChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QWasmWindowStack::lower(), QMimeMagicRule::matches(), mergeStringLiterals(), QFileSystemModel::mimeData(), QTreeModel::mimeData(), QQmlJSMetaMethod::mutableParametersRange(), Compress::operator()(), operator<<(), QQuickItemPrivate::paintOrderChildItems(), Moc::parse(), QCommandLineParserPrivate::parse(), QGeoPositionInfoSourcePrivate::pluginsSorted(), QQuickDeliveryAgentPrivate::pointerTargets(), QDBusAdaptorConnector::polish(), qListToSet(), QtPrivate::QStringList_join(), QWasmWindowStack::raise(), QList< T >::rbegin(), QList< T >::rbegin(), QDBusConnection::registerObject(), Vsp2HardwareLayerIntegration::remove(), QWasmIntegration::removeContainerElement(), QAndroidEventDispatcherStopper::removeEventDispatcher(), QtWaylandClient::QWaylandDisplay::removeListener(), QAndroidPlatformMenuBar::removeMenu(), QAndroidPlatformMenu::removeMenuItem(), QWindowsFileSystemWatcherEngine::removePaths(), QWasmWindowStack::removeWindow(), QWasmWindowStack::rend(), QWasmIntegration::resizeScreen(), QQmlImportNamespace::resolveType(), QtConcurrent::FilteredReducedKernel< ReducedResultType, Iterator, KeepFunctor, ReduceFunctor, Reducer >::runIteration(), QtConcurrent::MappedReducedKernel< ReducedResultType, Iterator, MapFunctor, ReduceFunctor, Reducer >::runIteration(), QtConcurrent::FilterKernel< Sequence, KeepFunctor, ReduceFunctor >::runIteration(), QtConcurrent::FilteredReducedKernel< ReducedResultType, Iterator, KeepFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilteredEachKernel< Iterator, KeepFunctor >::runIterations(), QtConcurrent::MappedReducedKernel< ReducedResultType, Iterator, MapFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilterKernel< Sequence, KeepFunctor, ReduceFunctor >::runIterations(), selectionIsEmpty(), QWasmIntegration::setContainerElements(), QStandardItem::setData(), QList< T >::sliced(), QQuick3DParticleInstanceTable::sort(), QStringListModel::sort(), QStandardItemPrivate::sortChildren(), sortContainer(), sortStringList(), QAndroidPlatformMenu::syncMenuItem(), uenumToIdList(), QQmlJS::Dom::updatePathFromOwnerQList(), QTableModel::updateRowIndexes(), QWasmWindowStack::windowPositionPreferenceChanged(), and QTimeZonePrivate::windowsIdToIanaIds().

+ Here is the call graph for this function:

◆ end() [2/2]

template<typename T >
const_iterator QList< T >::end ( ) const
inlinenoexcept

Definition at line 629 of file qlist.h.

References d.

◆ endsWith()

template<typename T >
bool QList< T >::endsWith ( parameter_type t) const
inline

Definition at line 652 of file qlist.h.

References QList< T >::isEmpty(), and QList< T >::last().

+ Here is the call graph for this function:

◆ erase() [1/2]

◆ erase() [2/2]

template<typename T >
iterator QList< T >::erase ( const_iterator pos)
inline

Definition at line 642 of file qlist.h.

References QList< T >::erase(), and pos.

Referenced by QList< T >::erase().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ fill()

template<typename T >
QList< T > & QList< T >::fill ( parameter_type t,
qsizetype size = -1 )
inline

Definition at line 903 of file qlist.h.

References capacity, copy(), d, and qMin().

Referenced by QList< T >::assign(), QMenuBarPrivate::calcActionRects(), QODBCResultPrivate::clearValues(), QGraphicsSceneBspTree::initialize(), QTextDocumentLayoutPrivate::layoutTable(), QSyntaxHighlighterPrivate::reformatBlock(), QOpenGLTimeMonitorPrivate::reset(), QQuick3DParticle::reset(), and QGridLayoutRowData::reset().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ first() [1/3]

template<typename T >
T & QList< T >::first ( )
inline

Definition at line 645 of file qlist.h.

References QList< T >::begin(), QList< T >::isEmpty(), and Q_ASSERT.

Referenced by QOpenSLESDeviceInfo::QOpenSLESDeviceInfo(), QGraphicsItem::~QGraphicsItem(), add(), QPlainTestLogger::addBenchmarkResults(), QQuickViewTestUtils::QaimModel::addItems(), QQuickPathView::childMouseEventFilter(), QQuickSplitView::childMouseEventFilter(), QWasmLocalStorageSettingsPrivate::children(), QDeclarativeGeoMap::clearMapItems(), QGeoCameraTilesPrivate::clipFootprintToMap(), QQuickGridViewPrivate::colPosAt(), QXcbDrag::defaultAction(), doActivate(), QQuickParticleEmitter::emitWindow(), QQuickTrailEmitter::emitWindow(), QuickTestResult::endDataRun(), QQuickDeliveryAgent::event(), execCommand(), QQmlObjectCreator::finalize(), QComboBox::findData(), QIndexMapper::first(), QQuickItemViewPrivate::firstItemInView(), QList< T >::front(), QList< T >::front(), QGradientCache::generateGradientColorTable(), QEglFSScreen::grabWindow(), hasSelection(), QQueue< T >::head(), QQueue< T >::head(), if(), QQuickViewTestUtils::QaimModel::insertItems(), QGeoPathPrivate::length(), main(), QNdefFilter::match(), QConcatenateTablesProxyModel::mimeData(), QQuickFileDialog::onShow(), QQuickGridViewPrivate::originPosition(), QScroller::pixelPerMeter(), QQnxIntegration::primaryDisplay(), QXcbConnection::primaryScreen(), QQuickWidgetRenderControl::renderWindow(), QQuickGridViewPrivate::rowPosAt(), QSimplex::setConstraints(), setModelProperties(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::show(), QQuickGridViewPrivate::snapPosAt(), QList< T >::startsWith(), QSvgNode::styleProperty(), QList< T >::takeFirst(), QGeoCameraTilesPrivate::tilesFromPolygon(), QSGBasicInternalRectangleNode::updateGeometry(), QQuickFileDialogImplPrivate::updateSelectedFile(), QQuickMultiPointTouchArea::updateTouchData(), and QTimeZonePrivate::windowsIdToDefaultIanaId().

+ Here is the call graph for this function:

◆ first() [2/3]

template<typename T >
const T & QList< T >::first ( ) const
inlinenoexcept

Definition at line 646 of file qlist.h.

References QList< T >::begin(), QList< T >::isEmpty(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ first() [3/3]

template<typename T >
QList< T > QList< T >::first ( qsizetype n) const
inline

Definition at line 655 of file qlist.h.

References QList< T >::begin().

+ Here is the call graph for this function:

◆ fromList()

template<typename T >
static QList< T > QList< T >::fromList ( const QList< T > & list)
inlinestaticnoexcept

Definition at line 722 of file qlist.h.

References list.

◆ fromReadOnlyData()

template<typename T >
template<qsizetype N>
static QList< T > QList< T >::fromReadOnlyData ( const T(&) t[N])
inlinestaticnoexcept

Definition at line 729 of file qlist.h.

Referenced by QSslSocketPrivate::unixRootCertDirectories().

+ Here is the caller graph for this function:

◆ fromVector()

template<typename T >
static QList< T > QList< T >::fromVector ( const QList< T > & vector)
inlinestaticnoexcept

Definition at line 725 of file qlist.h.

References vector.

◆ front() [1/2]

template<typename T >
reference QList< T >::front ( )
inline

Definition at line 687 of file qlist.h.

References QList< T >::first().

Referenced by argv0BaseName(), QQmlProfilerClientPrivate::forwardDebugMessages(), QQmlPreviewHandler::loadUrl(), QtAndroidMenu::onOptionsItemSelected(), QtAndroidMenu::onPrepareOptionsMenu(), QQmlLSUtils::sourceLocationToDomItem(), and QSctpSocketPrivate::writeToSocket().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ front() [2/2]

template<typename T >
const_reference QList< T >::front ( ) const
inlinenoexcept

Definition at line 688 of file qlist.h.

References QList< T >::first().

+ Here is the call graph for this function:

◆ insert() [1/6]

template<typename T >
iterator QList< T >::insert ( const_iterator before,
parameter_type t )
inline

Definition at line 491 of file qlist.h.

References QList< T >::insert(), and Q_ASSERT_X.

+ Here is the call graph for this function:

◆ insert() [2/6]

template<typename T >
iterator QList< T >::insert ( const_iterator before,
qsizetype n,
parameter_type t )
inline

Definition at line 496 of file qlist.h.

References QList< T >::constBegin(), QList< T >::insert(), and Q_ASSERT_X.

+ Here is the call graph for this function:

◆ insert() [3/6]

template<typename T >
iterator QList< T >::insert ( const_iterator before,
rvalue_ref t )
inline

Definition at line 501 of file qlist.h.

References QList< T >::constBegin(), QList< T >::insert(), and Q_ASSERT_X.

+ Here is the call graph for this function:

◆ insert() [4/6]

template<typename T >
iterator QList< T >::insert ( qsizetype i,
parameter_type t )
inline

Definition at line 488 of file qlist.h.

References QList< T >::emplace(), and i.

Referenced by FolderIterator::FolderIterator(), QObjectCleanupHandler::add(), QQmlTypeModule::add(), QQmlDelegateModelPrivate::addCacheItem(), addImportToNamespace(), QMediaTimeRangePrivate::addInterval(), QQmlXmlListModel::appendRole(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QV4DebugClient::backtrace(), QV4DebugClient::changeBreakpoint(), QV4DebugClient::clearBreakpoint(), QTreeWidgetItem::clone(), QStandardItemModelPrivate::columnsInserted(), QV4DebugClient::continueDebugging(), QQuickSplitViewPrivate::createHandleItem(), QThreadPoolPrivate::enqueueTask(), QQmlJSScope::enumerations(), QV4DebugClient::evaluate(), QGeoTiledMappingManagerEngineNokia::evaluateCopyrightsText(), QOpenGLEngineSharedShaders::findProgramInCache(), QTextTablePrivate::fragmentAdded(), QV4DebugClient::frame(), QQmlDelegateModelPrivate::insert(), QNetworkAuthenticationCache::insert(), QList< T >::insert(), QList< T >::insert(), QList< T >::insert(), QSqlRecord::insert(), QListModel::insert(), QListModel::insert(), QToolBarLayout::insertAction(), QCborContainerPrivate::insertAt(), QTreeWidgetItem::insertChild(), QStandardItemPrivate::insertColumns(), QTableModel::insertColumns(), TableModel::insertColumns(), QGeoPathPrivate::insertCoordinate(), QDockAreaLayoutInfo::insertGap(), QQuickViewTestUtils::QaimModel::insertItem(), QQuickLabsPlatformMenu::insertItem(), QGridLayoutEngine::insertItem(), QQuickViewTestUtils::QaimModel::insertItems(), QQuickLabsPlatformMenuBar::insertMenu(), QAndroidPlatformMenuBar::insertMenu(), QCocoaMenuBar::insertMenu(), QGtk3Menu::insertMenuItem(), QWidgetPlatformMenu::insertMenuItem(), QDBusPlatformMenu::insertMenuItem(), QAndroidPlatformMenu::insertMenuItem(), QCocoaMenu::insertMenuItem(), QIOSMenu::insertMenuItem(), insertOrRemoveItems(), TableModel::insertRows(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QTreeModel::insertRows(), QListModel::insertRows(), QTableModel::insertRows(), QToolBarAreaLayoutInfo::insertToolBarBreak(), QTreeViewPrivate::insertViewItems(), QSplitterPrivate::insertWidget(), QGeoServiceProviderPrivate::loadPluginMetadata(), QV4DebugClient::lookup(), QQmlJSScope::methods(), QGraphicsItem::mouseReleaseEvent(), QQuickDeliveryAgentPrivate::pointerTargets(), QWaitConditionPrivate::pre(), QQmlJSScope::properties(), QWasmWindowStack::pushWindow(), QDBusConnection::registerObject(), QTextFramePrivate::remove_me(), QTextHtmlParser::resolveParent(), QStandardItemModelPrivate::rowsInserted(), QV4DebugClient::scope(), QV4DebugClient::scripts(), QV4DebugClient::setBreakpoint(), QGradient::setColorAt(), QFileSystemModel::setData(), QV4DebugClient::setExceptionBreak(), QTableModel::setItem(), QQmlTreeModelToTableModel::showModelChildItems(), QDockAreaLayoutInfo::split(), QGeoCameraTilesPrivate::tilesFromPolygon(), and QTimerInfoList::timerInsert().

+ Here is the call graph for this function:

◆ insert() [5/6]

template<typename T >
QList< T >::iterator QList< T >::insert ( qsizetype i,
qsizetype n,
parameter_type t )
inline

Definition at line 861 of file qlist.h.

References begin(), d, i, Q_ASSERT_X, and Q_LIKELY.

+ Here is the call graph for this function:

◆ insert() [6/6]

template<typename T >
iterator QList< T >::insert ( qsizetype i,
rvalue_ref t )
inline

Definition at line 506 of file qlist.h.

References QList< T >::emplace(), QList< T >::end(), i, QArrayDataPointer< T >::pass_parameter_by_value, and Q_UNUSED.

+ Here is the call graph for this function:

◆ isDetached()

template<typename T >
bool QList< T >::isDetached ( ) const
inlinenoexcept

Definition at line 427 of file qlist.h.

References d.

◆ isEmpty()

template<typename T >
bool QList< T >::isEmpty ( ) const
inlinenoexcept

Definition at line 401 of file qlist.h.

References d.

Referenced by QFFmpegMediaFormatInfo::QFFmpegMediaFormatInfo(), QTreeWidgetItemIterator::QTreeWidgetItemIterator(), QWinSettingsPrivate::QWinSettingsPrivate(), StateSaver::StateSaver(), QAbstractFileEngineHandler::~QAbstractFileEngineHandler(), QDeclarativeGeoMap::~QDeclarativeGeoMap(), QGraphicsItem::~QGraphicsItem(), QObjectPrivate::~QObjectPrivate(), QOffscreenIntegration::~QOffscreenIntegration(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QQmlDataBlob::~QQmlDataBlob(), QQuick3DWindowAttachment::~QQuick3DWindowAttachment(), QSGRootNode::~QSGRootNode(), QToolBarLayout::~QToolBarLayout(), QTreeWidgetItem::~QTreeWidgetItem(), QXcbConnection::~QXcbConnection(), QAbstractSocketPrivate::_q_abortConnectionAttempt(), QAbstractSocketPrivate::_q_connectToNextAddress(), QGraphicsScenePrivate::_q_emitUpdated(), QGraphicsScenePrivate::_q_polishItems(), QBluetoothServiceDiscoveryAgentPrivate::_q_serviceDiscoveryFinished(), QSortFilterProxyModelPrivate::_q_sourceLayoutAboutToBeChanged(), QSortFilterProxyModelPrivate::_q_sourceLayoutChanged(), QQuickLoaderPrivate::_q_sourceLoaded(), QAbstractSocketPrivate::_q_startConnecting(), QHttpNetworkConnectionPrivate::_q_startNextRequest(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), CPP::WriteInitialization::acceptWidget(), accumulatedSize(), QEventDispatcherUNIXPrivate::activateSocketNotifiers(), QTimerInfoList::activateTimers(), QMdiAreaPrivate::activateWindow(), QPlainTestLogger::addBenchmarkResults(), QQmlImports::addLibraryImport(), QQuickOverlayPrivate::addPopup(), QFbScreen::addWindow(), QTextEngine::adjustUnderlines(), AndroidContentFileEngineIterator::advance(), QHttpNetworkConnectionChannel::allDone(), QPointerEvent::allPointsGrabbed(), QAnimationGroupPrivate::animationRemoved(), QSvgStyle::apply(), QQuickAnimatorPrivate::apply(), QQuickListViewPrivate::applyInsertionChange(), QQuickItemViewPrivate::applyModelChanges(), argv0BaseName(), QTextLayout::boundingRect(), QQmlIncubatorPrivate::calculateStatus(), QDeclarativeGeocodeModel::cancel(), QDeclarativeGeoRouteModel::cancel(), QTextMarkdownImporter::cbEnterBlock(), QTextMarkdownImporter::cbEnterSpan(), QTextMarkdownImporter::cbLeaveBlock(), QTextMarkdownImporter::cbLeaveSpan(), QTextMarkdownImporter::cbText(), QSvgHandler::characters(), QTlsPrivate::TlsCryptographOpenSSL::checkSslErrors(), Moc::checkSuperClasses(), QWidgetPrivate::childAt_helper(), QWasmLocalStorageSettingsPrivate::children(), QQmlTreeModelToTableModel::childrenVisible(), QObjectCleanupHandler::clear(), QThreadPoolPrivate::clear(), QQuickLabsPlatformMenu::clear(), QQuickLabsPlatformMenuBar::clear(), QQuickLabsPlatformMenuItemGroup::clear(), QConfFileSettingsPrivate::clear(), QWindowsDirect2DPaintEnginePrivate::clearClips(), QDeclarativeSearchResultModel::clearData(), QDeclarativeGeoRouteQuery::clearExcludedAreas(), QGraphicsScenePrivate::clearKeyboardGrabber(), QDeclarativeGeoMap::clearMapItems(), QGraphicsScenePrivate::clearMouseGrabber(), QWindowsScreenManager::clearScreens(), QTextDocumentPrivate::clearUndoRedoStacks(), QDeclarativeGeoRouteQuery::clearWaypoints(), QGraphicsSceneBspTreeIndexPrivate::climbTree(), QCborStreamWriterPrivate::closeContainer(), QmlTypesClassDescription::collect(), QQuickGridViewPrivate::colPosAt(), QQmlTypeCompiler::compile(), QGraphicsItemPrivate::TransformData::computedFullTransform(), QList< T >::constFirst(), QList< T >::constLast(), QOpenGLTimeMonitorPrivate::create(), QXcbWindow::create(), QGraphicsScene::createItemGroup(), QQmlType::createProxy(), QFileDialogPrivate::createWidgets(), QSvgHandler::currentColor(), QPainterPath::currentPosition(), QPen::dashPattern(), QDeclarativeSupportedCategoriesModel::data(), QQmlScriptBlob::dataReceived(), QGraphicsSceneBspTree::debug(), QTlsPrivate::TlsKeyGeneric::decodeDer(), QXcbDrag::defaultAction(), QmlIR::IRBuilder::defineQMLObject(), QBoxLayoutPrivate::deleteAll(), QGridLayoutPrivate::deleteAll(), QHttpNetworkConnectionPrivate::dequeueRequest(), QGeoAreaMonitorPollingPrivate::deregisterClient(), QOpenGLTimeMonitorPrivate::destroy(), detectLatestAndroidPlatform(), QVncServer::discardClient(), QLowEnergyControllerPrivateBluezDBus::discoverServiceDetails(), QGraphicsScenePrivate::dispatchHoverEvent(), QDBusConnectionPrivate::doDispatch(), QWindowsNativeFileDialogBase::doExec(), QQmlTypeData::done(), QGraphicsScenePrivate::draw(), QTextLayout::draw(), QTextLayout::drawCursor(), QTextDocumentLayoutPrivate::drawFlow(), QGraphicsScenePrivate::drawItemHelper(), QGraphicsScenePrivate::drawItems(), QGraphicsScenePrivate::drawSubtreeRecursive(), QWidgetPrivate::drawWidget(), QMediaTimeRange::earliestTime(), QGraphicsItemPrivate::effectiveBoundingRect(), QItemSelectionModel::emitSelectionChanged(), QQuickParticleEmitter::emitWindow(), QQuickTrailEmitter::emitWindow(), QuickTestResult::endDataRun(), QSvgHandler::endElement(), QXcbBackingStore::endPaint(), QQuickListViewPrivate::endPositionAt(), QList< T >::endsWith(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisitHelper(), QResourcePrivate::ensureChildren(), QResourcePrivate::ensureInitialized(), QTextDocumentLayoutPrivate::ensureLayouted(), QGraphicsItemPrivate::ensureSortedChildren(), QGraphicsScenePrivate::enterModal(), QDBusMessage::errorMessage(), QGraphicsSceneBspTreeIndexPrivate::estimateItems(), QQuick3DWindowAttachment::evaluateEol(), QQuickWidget::event(), QQuickDeliveryAgentPrivate::eventInDelivery(), QCoreApplication::exec(), QOCICols::execBatch(), QQmlTreeModelToTableModel::expandPendingRows(), QItemSelectionModelPrivate::expandSelection(), DarwinBluetooth::extract_service_record(), QConfFileSettingsPrivate::fileName(), QWinSettingsPrivate::fileName(), QHttpNetworkConnectionPrivate::fillPipeline(), QItemSelectionModelPrivate::finalize(), QQmlProfilerClientPrivate::finalize(), QQmlObjectCreator::finalize(), findObject(), QList< T >::first(), QList< T >::first(), QTextEngine::formatIndex(), QQmlProfilerClientPrivate::forwardDebugMessages(), QTextDocumentLayoutPrivate::frameIteratorForYPosition(), QIcon::fromTheme(), Generator::generateCode(), QQuick3DParticleEmitter::generateEmitBursts(), QmlIR::IRBuilder::generateFromQml(), QSGGradientCache::get(), FileInfoThread::getFileInfos(), QQuick3DParticleCustomShape::getPosition(), QSSGLayerRenderData::getRenderableItem2Ds(), QGeoTileFetcherOsm::getTileImage(), QGraphicsScenePrivate::grabKeyboard(), QGraphicsScenePrivate::grabMouse(), QEglFSScreen::grabWindow(), QEglFSScreen::handleCursorMove(), QOpenXRActionMapper::handleInput(), QHttpNetworkConnectionChannel::handleStatus(), QSGSoftwareEventQueue::hasMoreEvents(), QSGRenderThreadEventQueue::hasMoreEvents(), SymbolStack::hasNext(), ServerAcceptanceThread::hasPendingConnections(), QTimerInfoList::hasPendingTimers(), QQmlXMLHttpRequest::header(), QFileDialogPrivate::helperPrepareShow(), QListModeViewBase::horizontalOffset(), QListModeViewBase::horizontalScrollToValue(), QQmlPluginImporter::importPlugins(), QQmlIncubatorPrivate::incubate(), QQuickLoaderPrivate::incubatorStateChanged(), QListModel::index(), QDeclarativeSupportedCategoriesModel::index(), QSequentialAnimationGroupPrivate::indexForCurrentTime(), QListModeViewBase::indexToListViewItem(), QHttpNetworkConnectionChannel::init(), QFileDialogPrivate::init(), init_platform(), QConfFileSettingsPrivate::initAccess(), QQuickListViewPrivate::initializeCurrentItem(), QStandardItemPrivate::insertColumns(), QToolBarAreaLayoutInfo::insertItem(), QComboBox::insertItems(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QToolBarAreaLayoutInfo::insertToolBarBreak(), QDeclarativeGeoMapItemView::instantiateAllItems(), QListModeViewBase::intersectingSet(), QSSGRenderRay::intersectWithBVH(), QWidgetRepaintManager::isDirty(), QUrlQuery::isEmpty(), QObjectCleanupHandler::isEmpty(), QJsonObject::isEmpty(), QPageRanges::isEmpty(), QGlyphRun::isEmpty(), QSqlRecord::isEmpty(), Parser::isEmpty(), QIndexMapper::isEmpty(), QMediaTimeRange::isEmpty(), QQmlType::isExtendedType(), QSslConfiguration::isNull(), QPixmapIconEngine::isNull(), QShaderDescription::isValid(), QPdfSelection::isValid(), QColorSpacePrivate::isValid(), QColorSpace::isValidTarget(), QGuiApplicationPrivate::isWindowBlocked(), QConfFileSettingsPrivate::isWritable(), QTreeViewPrivate::itemHeight(), QQmlTreeModelToTableModel::itemIndex(), QQuickItemPrivate::itemToParentTransform(), QQmlJS::Dom::ModuleIndex::iterateDirectSubpaths(), QList< T >::last(), QList< T >::last(), QQuickGridViewPrivate::lastPosition(), QQuickListViewPrivate::lastPosition(), QMediaTimeRange::latestTime(), QDialogButtonBoxPrivate::layoutButtons(), QItemSelectionModelPrivate::layoutChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QQuickListViewPrivate::layoutVisibleItems(), QCborStreamReader::leaveContainer(), QGraphicsScenePrivate::leaveScene(), QGeoPathPrivate::lineContains(), QQuickVectorImageGenerator::Utils::listString(), QResourcePrivate::load(), QSslConfiguration::localCertificate(), QQmlImportDatabase::locateLocalQmldir(), QHeaderViewPrivate::logicalIndex(), main(), QWidgetRepaintManager::markDirty(), QGraphicsScenePrivate::markDirty(), QNdefFilter::match(), QMimeMagicRule::matches(), QWaylandKeyboardPrivate::maybeUpdateKeymap(), QQmlTypePrivate::metaObject(), QXcbMime::mimeConvertToFormat(), QListWidget::mimeData(), QTableWidget::mimeData(), QConcatenateTablesProxyModel::mimeData(), QQuickDeliveryAgentPrivate::mousePointData(), QGraphicsScenePrivate::mousePressEventHandler(), QOpenGLCompositor::moveToTop(), SymbolStack::next(), ServerAcceptanceThread::nextPendingConnection(), QQuickItemPrivate::nextPrevItemInTabFocusChain(), QMdiAreaPrivate::nextVisibleSubWindow(), VDMAbstractItemModelDataType::notify(), QQuickFileDialog::onCreate(), SocketWorker::onReadyRead(), QQuickFileDialog::onShow(), operator<<(), QTextFormat::operator==(), QQuickGridViewPrivate::originPosition(), QQuickListViewPrivate::originPosition(), QPdfSearchModelPrivate::pageAndIndexForResult(), QDeclarativeSupportedCategoriesModel::parent(), QCborStreamReader::parentContainerType(), Moc::parse(), QQuickStyledTextPrivate::parse(), QCommandLineParserPrivate::parse(), QQmlDebugServerImpl::parseArguments(), Moc::parseClassHead(), Moc::parseFunctionArguments(), parseTracepoint(), QQuickContext2D::popState(), QQuickStackViewPrivate::popToItem(), QQuickListViewPrivate::positionAt(), QWaitConditionPrivate::post(), postProcessQmldir(), QWaitConditionPrivate::pre(), QHttpNetworkConnectionPrivate::predictNextRequest(), QHttpNetworkConnectionPrivate::predictNextRequestsReply(), QSSGLayerRenderData::prepareModelsForRender(), QXcbConnection::primaryScreen(), QGeoJson::printQvariant(), QQmlProfilerClientPrivate::processCurrentEvent(), QGraphicsScenePrivate::processDirtyItemsRecursive(), QEvdevTouchScreenData::processInputEvent(), QGeoSatelliteInfoSourceAndroid::processSatelliteUpdate(), QOpenXRView::processTouch(), QBluetoothServiceInfo::protocolServiceMultiplexer(), qDBusIntrospectObject(), QtPrivate::QStringList_join(), qt_call_post_routines(), QAndroidAudioDecoder::read(), QAudioOutputStream::readData(), QMdi::RegularTiler::rearrange(), QMdi::SimpleCascader::rearrange(), QMdi::IconTiler::rearrange(), QMdiAreaPrivate::rearrange(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QShortcutPrivate::redoGrab(), QQuickItemViewPrivate::refill(), QOpenXRActionMapper::registerAction(), QDBusConnection::registerObject(), QConfFileSettingsPrivate::remove(), QWasmIntegration::removeContainerElement(), QOpenGLContextGroupPrivate::removeContext(), QQuickDeliveryAgentPrivate::removeGrabber(), QGraphicsScenePrivate::removePopup(), QQuickOverlayPrivate::removePopup(), QHttpNetworkConnectionPrivate::removeReply(), QWaylandOutputPrivate::removeView(), QOpenGLCompositor::removeWindow(), QSGOpenVGInternalRectangleNode::render(), ReflectionMapPass::renderPass(), Item2DPass::renderPass(), ShadowMapPass::renderPrep(), ReflectionMapPass::renderPrep(), QQuickStackViewPrivate::replaceElements(), QNetworkReplyHttpImplPrivate::replySslErrors(), QDeclarativeGeocodeModel::reset(), QDeclarativeGeoRouteModel::reset(), QQmlProfilerClientPrivate::resolveStackTop(), QAnimationTimer::restartAnimationTimer(), QQmlAnimationTimer::restartAnimationTimer(), QHostInfoAgent::reverseLookup(), QSvgStyle::revert(), QDeclarativeSupportedCategoriesModel::rowCount(), QQuickGridViewPrivate::rowPosAt(), QThreadPoolThread::run(), runMoc(), QPixmapIconEngine::scaledPixmap(), QMdiAreaPrivate::scrollBarPolicyChanged(), QListModeViewBase::scrollContentsBy(), QIconModeViewBase::scrollContentsBy(), QHeaderViewPrivate::sectionsRemoved(), QListViewPrivate::selectAll(), QGtk3FileDialogHelper::selectedFiles(), QFutureInterfaceBasePrivate::sendCallOut(), QFutureInterfaceBasePrivate::sendCallOuts(), QV4ProfilerAdapter::sendMessages(), QCocoaEventDispatcherPrivate::sendQueuedUserInputEvents(), QGraphicsScenePrivate::sendTouchBeginEvent(), QBluetoothServiceInfoPrivate::serverChannel(), QConfFileSettingsPrivate::set(), QSGBasicInternalRectangleNode::setColor(), QWasmIntegration::setContainerElements(), QSequentialAnimationGroupPrivate::setCurrentAnimation(), QQmlDataBlob::setError(), QWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLocale_helper(), QStandardItemPrivate::setModel(), setModelProperties(), QTextEngine::setPreeditArea(), QSSGSceneDesc::setProperty(), QQmlImportInstance::setQmldirContent(), QBenchmarkTestMethodData::setResults(), QQuickPlatformFileDialog::show(), QGraphicsAnchorLayoutPrivate::simplifyGraph(), sm_performSaveYourself(), QQuickGridViewPrivate::snapPosAt(), QT_BEGIN_NAMESPACE::socket_protocol(), QBluetoothServiceInfo::socketProtocol(), QDirPrivate::sortFileList(), QQmlAnimationTimer::startAnimations(), QQuickOverlayPrivate::startDrag(), QSvgHandler::startElement(), QTlsPrivate::TlsCryptographOpenSSL::startHandshake(), QBluetoothServiceDiscoveryAgentPrivate::startServiceDiscovery(), QList< T >::startsWith(), QWidgetRepaintManager::staticContents(), QUnifiedTimer::stopAnimationTimer(), QGradient::stops(), QQmlAnimationTimer::stopTimer(), QSvgNode::styleProperty(), QQuadPath::subPathsClosed(), QWidgetPrivate::subtractOpaqueChildren(), QWidgetPrivate::subtractOpaqueSiblings(), QMdiAreaPrivate::subWindowList(), QRhiGles2::supportedSampleCounts(), QSGSoftwareEventQueue::takeEvent(), QList< T >::takeFirst(), QXcbEventQueue::takeFirst(), QList< T >::takeLast(), SamplePool::takeSample(), QQmlTreeModelToTableModel::testConsistency(), FunctionDef::toJson(), Preprocessor::tokenize(), toString(), QGraphicsScenePrivate::touchEventHandler(), QQuickTransitionManager::transition(), QThreadPoolPrivate::tryStart(), QThreadPoolPrivate::tryToStartMoreThreads(), QGraphicsScenePrivate::ungrabKeyboard(), QGraphicsScenePrivate::ungrabMouse(), QAnimationTimer::unregisterAnimation(), QQmlAnimationTimer::unregisterAnimation(), QTimerInfoList::unregisterTimers(), QSGSoftwareInternalRectangleNode::update(), QMdiAreaPrivate::updateActiveWindow(), QQuickButtonGroupPrivate::updateCheckState(), QWindowsDirect2DPaintEnginePrivate::updateClipEnabled(), QQuickListViewPrivate::updateCurrentSection(), QSGBasicInternalRectangleNode::updateGeometry(), QQuickSplitViewPrivate::updateHandleVisibilities(), QTreeViewPrivate::updateScrollBars(), QQuickListViewPrivate::updateSections(), QQuickFileDialogImplPrivate::updateSelectedFile(), QQuickMultiPointTouchArea::updateTouchData(), QQuickItemViewPrivate::updateViewport(), BezierEase::value(), TCBEase::value(), variantToString(), QListModeViewBase::verticalOffset(), QListModeViewBase::verticalScrollToValue(), QTreeViewPrivate::viewIndex(), QHeaderViewPrivate::visualIndex(), QTableView::visualRegionForSelection(), QTreeView::visualRegionForSelection(), QThreadPoolPrivate::waitForDone(), QLocalServerPrivate::waitForNewConnection(), QFontSubset::widthArray(), QTextOdfWriter::writeBlock(), QIcc::writeColorTrc(), QQmlJSStreamWriter::writeEndObject(), QWinSettingsPrivate::writeHandle(), QSSGQmlUtilities::writeQmlForNode(), QSSGQmlUtilities::writeQmlForResourceNode(), and writeTracepoints().

◆ isSharedWith()

template<typename T >
bool QList< T >::isSharedWith ( const QList< T > & other) const
inline

Definition at line 429 of file qlist.h.

References d, and other().

Referenced by QQmlDelegateModelPrivate::insert().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ last() [1/3]

template<typename T >
T & QList< T >::last ( )
inline

Definition at line 648 of file qlist.h.

References QList< T >::end(), QList< T >::isEmpty(), and Q_ASSERT.

Referenced by QGeoTiledMappingManagerEngineOsm::QGeoTiledMappingManagerEngineOsm(), QSequentialAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QMutableTouchEvent::addPoint(), QTextHtmlParser::applyAttributes(), QList< T >::assign(), QSequentialAnimationGroupPrivate::atEnd(), QList< T >::back(), QList< T >::back(), QOpenGLCompositor::changeWindowIndex(), QPainterPathPrivate::close(), QQuickGridViewPrivate::colPosAt(), QOpenGLShaderProgramPrivate::compileCacheable(), QLowEnergyControllerPrivateBluezDBus::discoverServiceDetails(), QPdfEnginePrivate::drawTextItem(), QList< T >::endsWith(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisitHelper(), QTextDocumentLayoutPrivate::ensureLayouted(), QOpenGLEngineSharedShaders::findProgramInCache(), QToolBarAreaLayout::insertItem(), QToolBarAreaLayoutInfo::insertItem(), QPainterPathPrivate::isClosed(), QIndexMapper::last(), QQuickGridViewPrivate::lastPosition(), QGeoPathPrivate::length(), QQuickVectorImageGenerator::Utils::listString(), QPainterPathPrivate::maybeMoveTo(), QTextHtmlParser::newNode(), QQuickStatePrivate::operations_removeLast(), QTextHtmlParser::parse(), QTextHtmlParser::parseTag(), QHttpNetworkConnectionPrivate::predictNextRequest(), QHttpNetworkConnectionPrivate::predictNextRequestsReply(), QTest::qExec(), QQuick3DParticleAffector::removeLastParticle(), QOpenGLCompositor::removeWindow(), QTextHtmlParser::resolveNode(), QTextHtmlParser::resolveParent(), QDockAreaLayoutInfo::restoreState(), QQuickGridViewPrivate::rowPosAt(), MainWindow::showList(), QQuadPath::subPathsClosed(), QList< T >::takeLast(), Preprocessor::tokenize(), QStack< T >::top(), QStack< T >::top(), QWasmWindowStack::topWindow(), QDeclarativePolylineMapItemPrivateCPU::updateCache(), QSGBasicInternalRectangleNode::updateGeometry(), QQmlJS::Dom::QQmlDomAstCreator::visit(), QQmlJS::Dom::QQmlDomAstCreator::visit(), QQmlJS::Dom::QQmlDomAstCreator::visit(), and QQmlJS::Dom::QQmlDomAstCreator::visit().

+ Here is the call graph for this function:

◆ last() [2/3]

template<typename T >
const T & QList< T >::last ( ) const
inlinenoexcept

Definition at line 649 of file qlist.h.

References QList< T >::end(), QList< T >::isEmpty(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ last() [3/3]

template<typename T >
QList< T > QList< T >::last ( qsizetype n) const
inline

Definition at line 657 of file qlist.h.

References QList< T >::end().

+ Here is the call graph for this function:

◆ length()

template<typename T >
qsizetype QList< T >::length ( ) const
inlinenoexcept

Definition at line 399 of file qlist.h.

References QList< T >::size().

Referenced by QQmlDelayedCallQueue::addUniquelyAndExecuteLater(), QQmlListModel::append(), QDeclarativePolylineMapItem::coordinateAt(), QQmlDelegateModelGroup::create(), deployRPaths(), QTextLayout::draw(), QQmlDelegateModelPrivate::emitChanges(), QQmlLocaleValueType::formattedDataSize(), QTextLine::glyphRuns(), QQmlComponent::incubateObject(), QQmlListModel::insert(), QQmlDelegateModelGroup::insert(), QDeclarativePolylineMapItem::insertCoordinate(), QQuickVectorImageGenerator::Utils::listString(), QQmlDelegateModelGroup::move(), QQuickLabsPlatformMenu::open(), QQuickStackViewPrivate::parseElements(), QQmlDelegateModelGroupPrivate::parseGroupArgs(), QDeclarativePolylineMapItem::pathLength(), QQuickStackView::pop(), QQuickTextInput::positionAt(), QQuickStackView::push(), QQmlListModel::remove(), QQmlDelegateModelGroup::remove(), QDeclarativePolygonMapItem::removeCoordinate(), QDeclarativePolylineMapItem::removeCoordinate(), QDeclarativePolylineMapItem::removeCoordinate(), QQuickStackView::replace(), QDeclarativePolylineMapItem::replaceCoordinate(), QQmlDelegateModelGroup::resolve(), QQuickWorkerScript::sendMessage(), QDynamicRigidBody::setInertiaMatrix(), setMatrix(), QAnyStringViewUtils::split(), QQuickDragAttached::start(), QQuickDragAttached::startDrag(), QuickTestResult::stringify(), QQmlLocaleValueType::toString(), QDeclarativePolygonMapItemPrivateCPU::updatePolish(), and QDeclarativePolylineMapItemPrivateCPU::updatePolish().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ max_size()

template<typename T >
static qsizetype QList< T >::max_size ( )
inlinestaticnoexcept

Definition at line 692 of file qlist.h.

◆ mid()

template<typename T >
QList< T > QList< T >::mid ( qsizetype pos,
qsizetype len = -1 ) const
inline

Definition at line 975 of file qlist.h.

References d, pos, and QList().

Referenced by QQmlDelegateModelPrivate::itemsInserted(), and QQmlDelegateModelPrivate::itemsRemoved().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ move()

template<typename T >
void QList< T >::move ( qsizetype from,
qsizetype to )
inline

Definition at line 610 of file qlist.h.

References d, QList< T >::detach(), Q_ASSERT_X, and QList< T >::size().

Referenced by QMdiAreaPrivate::_q_moveTab(), QOpenGLCompositor::changeWindowIndex(), QMdiAreaPrivate::emitWindowActivated(), QOpenGLEngineSharedShaders::findProgramInCache(), QSplitterPrivate::insertWidget(), QAndroidPlatformScreen::lower(), QFbScreen::lower(), QListModel::move(), QQuickViewTestUtils::QaimModel::moveItem(), QListModel::moveRows(), QAndroidPlatformScreen::raise(), QFbScreen::raise(), and QMdiAreaPrivate::rearrange().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ operator!=()

template<typename T >
template<typename U = T>
QTypeTraits::compare_eq_result_container< QList, U > QList< T >::operator!= ( const QList< T > & other) const
inline

Definition at line 352 of file qlist.h.

References other().

+ Here is the call graph for this function:

◆ operator+() [1/4]

template<typename T >
QList< T > QList< T >::operator+ ( const QList< T > & l) &&
inline

Definition at line 702 of file qlist.h.

◆ operator+() [2/4]

template<typename T >
QList< T > QList< T >::operator+ ( const QList< T > & l) const &
inline

Definition at line 700 of file qlist.h.

◆ operator+() [3/4]

template<typename T >
QList< T > QList< T >::operator+ ( QList< T > && l) &&
inline

Definition at line 706 of file qlist.h.

◆ operator+() [4/4]

template<typename T >
QList< T > QList< T >::operator+ ( QList< T > && l) const &
inline

Definition at line 704 of file qlist.h.

◆ operator+=() [1/4]

template<typename T >
QList< T > & QList< T >::operator+= ( const QList< T > & l)
inline

Definition at line 698 of file qlist.h.

References QList< T >::append().

+ Here is the call graph for this function:

◆ operator+=() [2/4]

template<typename T >
QList< T > & QList< T >::operator+= ( parameter_type t)
inline

Definition at line 708 of file qlist.h.

References QList< T >::append().

+ Here is the call graph for this function:

◆ operator+=() [3/4]

template<typename T >
QList< T > & QList< T >::operator+= ( QList< T > && l)
inline

Definition at line 699 of file qlist.h.

References QList< T >::append().

+ Here is the call graph for this function:

◆ operator+=() [4/4]

template<typename T >
QList< T > & QList< T >::operator+= ( rvalue_ref t)
inline

Definition at line 716 of file qlist.h.

References QList< T >::append().

+ Here is the call graph for this function:

◆ operator<()

template<typename T >
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > QList< T >::operator< ( const QList< T > & other) const
inlinenoexcept

Definition at line 352 of file qlist.h.

◆ operator<<() [1/4]

template<typename T >
QList< T > & QList< T >::operator<< ( const QList< T > & l)
inline

Definition at line 708 of file qlist.h.

◆ operator<<() [2/4]

template<typename T >
QList< T > & QList< T >::operator<< ( parameter_type t)
inline

Definition at line 708 of file qlist.h.

◆ operator<<() [3/4]

template<typename T >
QList< T > & QList< T >::operator<< ( QList< T > && l)
inline

Definition at line 708 of file qlist.h.

◆ operator<<() [4/4]

template<typename T >
QList< T > & QList< T >::operator<< ( rvalue_ref t)
inline

Definition at line 716 of file qlist.h.

◆ operator<=()

template<typename T >
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > QList< T >::operator<= ( const QList< T > & other) const
inlinenoexcept

Definition at line 369 of file qlist.h.

References other().

+ Here is the call graph for this function:

◆ operator=()

template<typename T >
QList< T > & QList< T >::operator= ( std::initializer_list< T > args)
inline

Definition at line 297 of file qlist.h.

References args, and QList< T >::assign().

+ Here is the call graph for this function:

◆ operator==()

template<typename T >
template<typename U = T>
QTypeTraits::compare_eq_result_container< QList, U > QList< T >::operator== ( const QList< T > & other) const
inline

Definition at line 341 of file qlist.h.

References QList< T >::begin(), d, QList< T >::data(), other(), and QList< T >::size().

+ Here is the call graph for this function:

◆ operator>()

template<typename T >
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > QList< T >::operator> ( const QList< T > & other) const
inlinenoexcept

Definition at line 369 of file qlist.h.

◆ operator>=()

template<typename T >
template<typename U = T>
QTypeTraits::compare_lt_result_container< QList, U > QList< T >::operator>= ( const QList< T > & other) const
inlinenoexcept

Definition at line 383 of file qlist.h.

References other().

+ Here is the call graph for this function:

◆ operator[]() [1/2]

template<typename T >
reference QList< T >::operator[] ( qsizetype i)
inline

Definition at line 451 of file qlist.h.

References d, QList< T >::data(), i, and Q_ASSERT_X.

+ Here is the call graph for this function:

◆ operator[]() [2/2]

template<typename T >
const_reference QList< T >::operator[] ( qsizetype i) const
inlinenoexcept

Definition at line 457 of file qlist.h.

References at, and i.

◆ pop_back()

template<typename T >
void QList< T >::pop_back ( )
inlinenoexcept

Definition at line 679 of file qlist.h.

References QList< T >::removeLast().

Referenced by MainWindow::showList().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ pop_front()

template<typename T >
void QList< T >::pop_front ( )
inlinenoexcept

Definition at line 680 of file qlist.h.

References QList< T >::removeFirst().

Referenced by QCtfServer::bufferData(), QQuickParticleEmitter::emitWindow(), QQuickTrailEmitter::emitWindow(), QQmlObjectCreator::finalize(), QPulseAudioSink::processedUSecs(), QFileInfoGatherer::run(), and QSctpSocketPrivate::writeToSocket().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ prepend() [1/2]

template<typename T >
void QList< T >::prepend ( parameter_type t)
inline

Definition at line 480 of file qlist.h.

References QList< T >::emplaceFront().

+ Here is the call graph for this function:

◆ prepend() [2/2]

template<typename T >
void QList< T >::prepend ( rvalue_ref t)
inline

Definition at line 473 of file qlist.h.

References QList< T >::emplaceFront(), QArrayDataPointer< T >::pass_parameter_by_value, and Q_UNUSED.

Referenced by QBluetoothServiceDiscoveryAgentPrivate::_q_deviceDiscovered(), QXcbNativeInterface::addHandler(), QXcbVirtualDesktop::addScreen(), QQuickGridViewPrivate::addVisibleItems(), QQuickListViewPrivate::addVisibleItems(), QAndroidPlatformScreen::addWindow(), QFbScreen::addWindow(), QQmlTypeData::allDependenciesDone(), QMdiAreaPrivate::appendChild(), QQmlScriptBlob::done(), QQmlTypeData::done(), QGraphicsScenePrivate::enterModal(), QDockAreaLayout::findSeparator(), QToolBarAreaLayout::gapIndex(), QDockAreaLayout::gapIndex(), QQmlPluginImporter::importDynamicPlugin(), QQmlPluginImporter::importPlugins(), QDockAreaLayout::indexOf(), QDockAreaLayout::indexOfPlaceHolder(), QWaylandCompositorPrivate::initializeHardwareIntegration(), QGraphicsSceneBspTree::insertItem(), QCss::Parser::parseTerm(), QCompleter::pathFromIndex(), QGraphicsItemPrivate::prependGraphicsTransform(), QList< T >::push_front(), QList< T >::push_front(), QCoreApplication::qAddPostRoutine(), qAddPreRoutine(), QHttpNetworkConnectionPrivate::queueRequest(), QHttpNetworkConnectionPrivate::requeueRequest(), QMdiAreaPrivate::subWindowList(), and QStandardItem::takeColumn().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ push_back() [1/2]

template<typename T >
void QList< T >::push_back ( parameter_type t)
inline

Definition at line 675 of file qlist.h.

References QList< T >::append().

Referenced by QGeoTiledMappingManagerEngineOsm::QGeoTiledMappingManagerEngineOsm(), QSSGStageGeneratorBase::addConstantBufferParam(), QWasmIntegration::addContainerElement(), QAndroidEventDispatcherStopper::addEventDispatcher(), QSSGMaterialVertexPipeline::addFunction(), QSSGStageGeneratorBase::addFunction(), QQmlImports::addInlineComponentImport(), QSSGSceneDesc::addNode(), QHstsStore::addToObserved(), QQnxScreen::addWindow(), QWasmScreen::allWindows(), appendIfNew(), QV4DebuggerAgent::breakPointIds(), QSctpSocketPrivate::canReadNotification(), dataToUrls(), QWaylandXdgToplevelPrivate::handleFocusReceived(), QWindowsScreenManager::handleScreenChanges(), QQmlIncubatorPrivate::incubate(), QTriangulator< T >::initialize(), QItemSelection::merge(), QV4::RegExpPrototype::method_replace(), operator>>(), Parser::parse(), Moc::parseClassHead(), parseEnumFlags(), Parser::parseInstrument(), Parser::parseParamReplace(), Parser::parsePoint(), Parser::parsePrefix(), parseProvider(), QSSGLayerRenderData::prepareForRender(), QSSGLayerRenderData::prepareModelsForRender(), QWasmWindowStack::pushWindow(), QQuick3DWindowAttachment::queueForCleanup(), QQuick3DWindowAttachment::queueForCleanup(), QQnxWindow::raise(), QQnxScreen::raiseWindow(), QPhysicsWorld::registerContact(), QMainNfcNewIntentListener::registerListener(), QQuick3DWindowAttachment::registerSceneManager(), QWasmLocalStorageSettingsPrivate::remove(), ShadowMapPass::renderPrep(), ReflectionMapPass::renderPrep(), BacktraceJob::run(), QQmlListAccessor::setList(), setModelProperties(), QQnxWindow::setParent(), QQuickItemParticle::take(), QGenericUnixTheme::themeNames(), and QFontDatabase::writingSystems().

+ Here is the call graph for this function:

◆ push_back() [2/2]

template<typename T >
void QList< T >::push_back ( rvalue_ref t)
inline

Definition at line 676 of file qlist.h.

References QList< T >::append().

+ Here is the call graph for this function:

◆ push_front() [1/2]

template<typename T >
void QList< T >::push_front ( parameter_type t)
inline

Definition at line 678 of file qlist.h.

References QList< T >::prepend().

+ Here is the call graph for this function:

◆ push_front() [2/2]

template<typename T >
void QList< T >::push_front ( rvalue_ref t)
inline

Definition at line 677 of file qlist.h.

References QList< T >::prepend().

Referenced by QQnxScreen::addWindow(), QQnxWindow::lower(), QQnxScreen::lowerWindow(), and QQuickItemParticle::take().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ rbegin() [1/2]

template<typename T >
reverse_iterator QList< T >::rbegin ( )
inline

Definition at line 634 of file qlist.h.

References QList< T >::end().

Referenced by QWasmWindowStack::begin(), QWasmWindowStack::begin(), QQuickItemViewPrivate::findLastIndexInView(), QQuickItemViewPrivate::findLastVisibleIndex(), QMenuPrivate::syncPlatformMenu(), QQnxScreen::topLevelAt(), and QQuickRectangle::updatePaintNode().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ rbegin() [2/2]

template<typename T >
const_reverse_iterator QList< T >::rbegin ( ) const
inlinenoexcept

Definition at line 636 of file qlist.h.

References QList< T >::end().

+ Here is the call graph for this function:

◆ remove()

◆ removeAll()

template<typename T >
template<typename AT = T>
qsizetype QList< T >::removeAll ( const AT & t)
inline

Definition at line 592 of file qlist.h.

References QtPrivate::sequential_erase_with_copy().

Referenced by QGraphicsWidget::~QGraphicsWidget(), QWidget::~QWidget(), QXcbNativeInterface::addHandler(), QQuick3DParticleAffector::appendParticle(), QDeclarativePlace::category_append(), QQuick3DObjectPrivate::derefSceneManager(), QWaylandSurfacePrivate::derefView(), QGeoAreaMonitorPollingPrivate::deregisterClient(), QQmlEngineDebugServiceImpl::engineAboutToBeRemoved(), QQmlNativeDebugServiceImpl::engineAboutToBeRemoved(), QQuickDeliveryAgentPrivate::ensureDeviceConnected(), QGraphicsScenePrivate::enterModal(), QQmlApplicationEnginePrivate::finishLoad(), QTextTablePrivate::fragmentRemoved(), QV4DebuggerAgent::handleDebuggerDeleted(), QWaylandKeyboardPrivate::keyEvent(), QGraphicsScenePrivate::leaveModal(), QQnxWindow::lower(), QQuickMultiPointTouchArea::mouseReleaseEvent(), QWaitConditionPrivate::post(), QCoreApplication::qRemovePostRoutine(), QQnxWindow::raise(), QQuick3DParticleEmitter::registerEmitBurst(), QGraphicsWidget::removeAction(), QWidget::removeAction(), QV4DebuggerAgent::removeDebugger(), QWidgetRepaintManager::removeDirtyWidget(), QQnxIntegration::removeDisplay(), QXcbNativeInterface::removeHandler(), QImagePixmapCleanupHooks::removeImageHook(), QGraphicsSceneBspTree::removeItem(), QGridLayoutEngine::removeItem(), QGraphicsScenePrivate::removeItemHelper(), QDBusPlatformMenu::removeMenuItem(), QGstPipelinePrivate::removeMessageFilter(), QGstPipelinePrivate::removeMessageFilter(), QWindowsFileSystemWatcherEngine::removePaths(), QImagePixmapCleanupHooks::removePlatformPixmapDestructionHook(), QImagePixmapCleanupHooks::removePlatformPixmapModificationHook(), QWidgetRepaintManager::removeStaticWidget(), QGraphicsScenePrivate::removeView(), QQnxScreen::removeWindow(), QQuick3DParticleAffector::replaceParticle(), QQuickParticleSystem::reset(), QOffscreenIntegration::setConfiguration(), QGraphicsTransformPrivate::setItem(), QQuickSpriteEngine::startAssemblingImage(), QQuick3DParticleEmitter::unRegisterEmitBurst(), QQuick3DParticleSystem::unRegisterParticle(), QQuick3DParticleSystem::unRegisterParticleAffector(), QQuick3DParticleSystem::unRegisterParticleEmitter(), QOpenXRView::unregisterXrItem(), QQuickParticleSystem::updateCurrentTime(), and QWidgetActionPrivate::widgetDestroyed().

+ Here is the call graph for this function:

◆ removeAt()

template<typename T >
void QList< T >::removeAt ( qsizetype i)
inline

Definition at line 590 of file qlist.h.

References i, and QList< T >::remove().

Referenced by QMediaTimeRangePrivate::addInterval(), QFbScreen::addWindow(), QSequentialAnimationGroupPrivate::animationRemoved(), QQuickStatePrivate::complete(), QFutureInterfaceBasePrivate::disconnectOutputInterface(), QItemSelectionModel::emitSelectionChanged(), QQuick3DParticleEmitter::getEmitAmountFromDynamicBursts(), QQmlDelegateModelPrivate::itemsRemoved(), QWidgetRepaintManager::moveStaticWidgets(), QDockAreaLayoutInfo::remove(), QListModel::remove(), QObjectCleanupHandler::remove(), QTextFramePrivate::remove_me(), QQmlDelegateModelPrivate::removeCacheItem(), QGraphicsItemPrivate::removeChild(), QMetaObjectBuilder::removeClassInfo(), TableModel::removeColumns(), QGeoPathPrivate::removeCoordinate(), QDeclarativeGeoRouteQuery::removeExcludedArea(), QGeoPolygonPrivate::removeHole(), QNdefNfcSmartPosterRecord::removeIcon(), QNdefNfcSmartPosterRecord::removeIcon(), QMediaTimeRangePrivate::removeInterval(), QQuickViewTestUtils::QaimModel::removeItem(), QQuickViewTestUtils::QaimModel::removeItems(), QFileSystemModelPrivate::removeNode(), QQuickListViewPrivate::removeNonVisibleItems(), QMetaObjectBuilder::removeRelatedMetaObject(), QHttpNetworkConnectionPrivate::removeReply(), TableModel::removeRows(), JsonOutput::removeTargetDirectory(), QNdefNfcSmartPosterRecord::removeTitle(), QNdefNfcSmartPosterRecord::removeTitle(), QToolBarAreaLayoutInfo::removeToolBar(), QToolBarAreaLayoutInfo::removeToolBarBreak(), QFileSystemModelPrivate::removeVisibleFile(), QFileSystemModel::setData(), QUnifiedTimer::stopAnimationTimer(), QXcbDrag::timerEvent(), QDockAreaLayoutInfo::unnest(), QAnimationTimer::unregisterAnimation(), QQmlAnimationTimer::unregisterAnimation(), QResource::unregisterResource(), QResource::unregisterResource(), QGraphicsScenePrivate::unregisterTopLevelItem(), QSGSoftwareThreadedRenderLoop::windowDestroyed(), and QSGThreadedRenderLoop::windowDestroyed().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ removeFirst()

template<typename T >
void QList< T >::removeFirst ( )
inlinenoexcept

Definition at line 807 of file qlist.h.

References d, and Q_ASSERT.

Referenced by QBluetoothServiceDiscoveryAgentPrivate::_q_serviceDiscoveryFinished(), QList< T >::pop_front(), QQuickGridViewPrivate::removeNonVisibleItems(), QThreadPoolThread::run(), QDBusXmlToCpp::run(), and QThreadPoolPrivate::tryToStartMoreThreads().

+ Here is the caller graph for this function:

◆ removeIf()

template<typename T >
template<typename Predicate >
qsizetype QList< T >::removeIf ( Predicate pred)
inline

Definition at line 604 of file qlist.h.

References QtPrivate::sequential_erase_if().

Referenced by ControlsNativeValidatorPass::ControlsNativeValidatorPass(), QWindowsFormatInfo::QWindowsFormatInfo(), Moc::checkProperties(), QOpenGLEngineSharedShaders::cleanupCustomStage(), QIOPipePrivate::pumpData(), QItemSelectionModel::select(), QAbstractItemView::selectedIndexes(), QItemSelectionModel::selection(), QMovie::supportedFormats(), and QTimerInfoList::unregisterTimers().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ removeLast()

◆ removeOne()

template<typename T >
template<typename AT = T>
bool QList< T >::removeOne ( const AT & t)
inline

Definition at line 598 of file qlist.h.

References QtPrivate::sequential_erase_one().

Referenced by QAbstractFileEngineHandler::~QAbstractFileEngineHandler(), QQuick3DWindowAttachment::~QQuick3DWindowAttachment(), QQuickItem::~QQuickItem(), QSQLiteResult::~QSQLiteResult(), QOpenGLMultiGroupSharedResource::cleanup(), QQuickLabsPlatformMenu::clear(), QQuickLabsPlatformMenuBar::clear(), QQmlProfilerServiceImpl::dataReady(), QVncServer::discardClient(), QQuick3DWindowAttachment::evaluateEol(), execCommand(), QWaylandXdgToplevelPrivate::handleFocusLost(), QQuickPathViewPrivate::itemDestroyed(), QQmlEngineControlServiceImpl::messageReceived(), QOpenGLCompositor::moveToTop(), QWindowsMenuBar::notifyRemoved(), QWindowsMenu::notifyRemoved(), QMessageDialogOptions::removeButton(), QGraphicsItemPrivate::removeChild(), QQuick3DObjectPrivate::removeChild(), QQuickItemPrivate::removeChild(), QIOPipePrivate::removeChildPipe(), QWaylandCompositorPrivate::removeClient(), QOpenGLContextGroupPrivate::removeContext(), ProxyTranslator::removeEngine(), QQmlPreviewHandler::removeEngine(), QWaylandObject::removeExtension(), QWaylandSurfacePrivate::removeFrameCallback(), QQmlProfilerServiceImpl::removeGlobalProfiler(), QQuickContainerPrivate::removeItem(), QQuickMenuPrivate::removeItem(), QGraphicsSceneBspTreeIndexPrivate::removeItem(), QQuickLabsPlatformMenu::removeItem(), QQuickLabsPlatformMenuItemGroup::removeItem(), QGraphicsScenePrivate::removeItemHelper(), QDeclarativeGeoMap::removeMapItem_real(), QDeclarativeGeoMap::removeMapItemGroup_real(), QDeclarativeGeoMap::removeMapItemView_real(), QCocoaMenuBar::removeMenu(), QQuickLabsPlatformMenuBar::removeMenu(), QGtk3Menu::removeMenuItem(), QWidgetPlatformMenu::removeMenuItem(), QCocoaMenu::removeMenuItem(), QIOSMenu::removeMenuItem(), QWaylandCompositorPrivate::removeOutput(), QQuickOverlayPrivate::removePopup(), QAudioEnginePrivate::removeRoom(), QmlLsp::QQmlCodeModel::removeRootUrls(), QXcbVirtualDesktop::removeScreen(), QQnxScreenEventHandler::removeScreenEventFilter(), QAudioEnginePrivate::removeStereoSound(), QWaylandOutputPrivate::removeView(), QAndroidPlatformScreen::removeWindow(), QFbScreen::removeWindow(), QOpenGLCompositor::removeWindow(), QUnifiedTimer::resumeAnimationTimer(), QThreadPoolThread::run(), QWaylandXdgToplevel::sendUnmaximized(), QGraphicsItem::setFocusProxy(), QUnifiedTimer::stopAnimationTimer(), QQuick3DWindowAttachment::synchronize(), QtWayland::TouchExtensionGlobal::touch_extension_destroy_resource(), QQuickItemPrivate::transform_clear(), QSSGQmlUtilities::unlinkChild(), QAnimationTimer::unregisterAnimation(), QQmlAnimationTimer::unregisterAnimation(), QQmlMetaType::unregisterAutoParentFunction(), QMainNfcNewIntentListener::unregisterListener(), QWindowsMimeRegistry::unregisterMime(), QQuick3DWindowAttachment::unregisterSceneManager(), QWaylandWlShellPrivate::unregisterShellSurface(), QWaylandCompositorPrivate::unregisterSurface(), QGraphicsScenePrivate::unregisterTopLevelItem(), and QQuick3DSceneManager::updateBoundingBoxes().

+ Here is the call graph for this function:

◆ rend() [1/2]

template<typename T >
reverse_iterator QList< T >::rend ( )
inline

Definition at line 635 of file qlist.h.

References QList< T >::begin().

Referenced by QWasmWindowStack::end(), QWasmWindowStack::end(), QQuickItemViewPrivate::findLastIndexInView(), QQuickItemViewPrivate::findLastVisibleIndex(), QMenuPrivate::syncPlatformMenu(), QQnxScreen::topLevelAt(), and QQuickRectangle::updatePaintNode().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ rend() [2/2]

template<typename T >
const_reverse_iterator QList< T >::rend ( ) const
inlinenoexcept

Definition at line 637 of file qlist.h.

References QList< T >::begin().

+ Here is the call graph for this function:

◆ replace() [1/2]

template<typename T >
void QList< T >::replace ( qsizetype i,
parameter_type t )
inline

Definition at line 543 of file qlist.h.

References d, QArrayDataPointer< T >::detach(), i, and Q_ASSERT_X.

Referenced by QStandardItemPrivate::childDeleted(), QQuickPackagePrivate::data_replace(), QWaylandOutputPrivate::handleWindowPixelSizeChanged(), QStandardItemPrivate::insertColumns(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QQuickStatePrivate::operations_replace(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), QStackedLayoutPrivate::replaceAt(), QStandardItemPrivate::setChild(), and QTreeModel::sortItems().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ replace() [2/2]

template<typename T >
void QList< T >::replace ( qsizetype i,
rvalue_ref t )
inline

Definition at line 550 of file qlist.h.

References d, QArrayDataPointer< T >::detach(), i, QArrayDataPointer< T >::pass_parameter_by_value, Q_ASSERT_X, and Q_UNUSED.

+ Here is the call graph for this function:

◆ reserve()

template<typename T >
void QList< T >::reserve ( qsizetype size)

Definition at line 753 of file qlist.h.

References capacity, d, QArrayDataPointer< T >::d_ptr(), and qMax().

Referenced by QtWaylandClient::LibHybrisServerBuffer::LibHybrisServerBuffer(), QGraphicsViewPrivate::QGraphicsViewPrivate(), QQnxButtonEventNotifier::QQnxButtonEventNotifier(), QShortcutMapPrivate::QShortcutMapPrivate(), QWindowsFileSystemWatcherEngineThread::QWindowsFileSystemWatcherEngineThread(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QDecompressHelper::acceptedEncoding(), QCoreApplication::arguments(), QCupsPrinterSupport::availablePrintDeviceIds(), QPrinterInfo::availablePrinters(), QTableModel::columnItems(), convertIterableToVariantList(), QVectorPath::convertToPainterPath(), QQuickSplitViewPrivate::createHandles(), QPen::dashPattern(), QAlphaPaintEngine::drawPolygon(), QQmlComponent::errors(), QQmlDirParser::errors(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QMimeData::formats(), QNetworkHeadersPrivate::fromHttpToRaw(), QGeoCameraTilesPrivate::frustumFootprint(), generateGlyphTables(), generateName(), FileInfoThread::getFileInfos(), QXcbDrag::handleEnter(), QListViewPrivate::hiddenRowIds(), QUrl::idnWhitelist(), QWizardPrivate::init(), QCss::Parser::init(), QPRand::init(), QComboBox::insertItems(), QV4::SparseArray::keys(), QTextDocumentLayoutPrivate::layoutFlow(), QPpdPrintDevice::loadDuplexModes(), QPpdPrintDevice::loadInputSlots(), QPpdPrintDevice::loadOutputBins(), main(), QGraphicsView::mapFromScene(), QGraphicsView::mapToScene(), QIdentityProxyModel::match(), QItemSelection::merge(), QDBusInterfacePrivate::metacall(), QXcbMime::mimeConvertToFormat(), QListWidget::mimeData(), QTableWidget::mimeData(), QAbstractProxyModel::mimeData(), QConcatenateTablesProxyModel::mimeData(), QSortFilterProxyModel::mimeData(), QTableModel::mimeData(), QEglFSKmsScreen::modes(), QBrush::operator>>(), Scanner::parseArguments(), QAbstractItemModel::persistentIndexList(), QHstsCache::policies(), populateFromCbor(), QGraphicsItemAnimation::posList(), QWin32PrintEngine::property(), QTest::qExec(), qtValue(), ICOReader::read(), QShortcutPrivate::redoGrab(), QDeclarativePolylineMapItemPrivateCPU::regenerateCache(), QDBusAdaptorConnector::relay(), QPainterPath::reserve(), QGraphicsItemAnimation::rotationList(), QtConcurrent::FilteredReducedKernel< ReducedResultType, Iterator, KeepFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilteredEachKernel< Iterator, KeepFunctor >::runIterations(), QtConcurrent::MappedReducedKernel< ReducedResultType, Iterator, MapFunctor, ReduceFunctor, Reducer >::runIterations(), QtConcurrent::FilterKernel< Sequence, KeepFunctor, ReduceFunctor >::runIterations(), QSplitter::saveState(), QGraphicsItemAnimation::scaleList(), QListWidget::selectedItems(), QTreeWidget::selectedItems(), QQmlTreeModelToTableModel::selectionForRowRange(), QQmlDataBlob::setError(), QTextFormat::setProperty(), QBenchmarkTestMethodData::setResults(), QTableView::setSelection(), QTextBlockFormat::setTabPositions(), QGraphicsItemAnimation::shearList(), QQmlTreeModelToTableModel::showModelChildItems(), QSplitter::sizes(), QJSList< QQmlListProperty< QObject >, QObject * >::slice(), QJSList< QQmlListProperty< QObject >, QObject * >::slice(), QConcatenateTablesProxyModelPrivate::slotSourceLayoutAboutToBeChanged(), QTableModel::sort(), QStringListModel::sort(), QFileSystemModel::sort(), QCoreTextFontDatabase::standardSizes(), QPluginLoader::staticInstances(), QSortFilterProxyModelPrivate::store_persistent_indexes(), QSettingsPrivate::stringListToVariantList(), QPrinterInfo::supportedColorModes(), QPrinterInfo::supportedDuplexModes(), QTextOption::tabArray(), QStandardItem::takeColumn(), QStandardItem::takeRow(), Preprocessor::tokenize(), QHttpHeaders::toListOfPairs(), QPolygonF::toPolygon(), QPainterPath::toSubpathPolygons(), QCborArray::toVariantList(), QGraphicsItemAnimation::translationList(), QSortFilterProxyModelPrivate::update_persistent_indexes(), QMenuBarPrivate::updateGeometries(), QUrlModel::urls(), QtWaylandClient::QWaylandScreen::virtualSiblings(), and QFontDatabase::writingSystems().

+ Here is the call graph for this function:

◆ resize() [1/2]

template<typename T >
void QList< T >::resize ( qsizetype size)
inline

Definition at line 403 of file qlist.h.

References QList< T >::size().

Referenced by LibHybrisEglServerBuffer::LibHybrisEglServerBuffer(), QtWaylandClient::LibHybrisServerBuffer::LibHybrisServerBuffer(), QFontEngineMulti::QFontEngineMulti(), QGeoFileTileCacheOsm::QGeoFileTileCacheOsm(), QGraphicsViewPrivate::allocStyleOptionsArray(), QMenuBarPrivate::calcActionRects(), QSctpSocketPrivate::canReadNotification(), QPdfSearchModelPrivate::clearResults(), QTextDocumentPrivate::clearUndoRedoStacks(), QOpenGLTimeMonitorPrivate::create(), QBspTree::create(), QIconModeViewBase::dataChanged(), QQuick3DParticleSpriteParticle::handleMaxAmountChanged(), QGeoFileTileCacheOsm::init(), QSqlCachedResultPrivate::init(), QGraphicsSceneBspTree::initialize(), QHeaderViewPrivate::initializeIndexMapping(), QStandardItemPrivate::insertColumns(), QTreeModel::insertColumns(), QTableModel::insertColumns(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QTableModel::insertRows(), QTreeViewPrivate::layout(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutTable(), QShaderDescriptionPrivate::loadFromStream(), QSqlCachedResultPrivate::nextIndex(), CppGenerator::operator()(), Compress::operator()(), QSSGLayerRenderData::prepareForRender(), prepareModelMaterialsImpl(), Recognizer::reallocateStack(), QBsdKeyboardHandler::resetKeymap(), QHeaderViewPrivate::sectionsRemoved(), QTreeModel::setColumnCount(), QFontEngineMulti::setFallbackFamiliesList(), NS_IIOF_HELPERS::QIIOFHelper::setOption(), QListModeViewBase::setRowCount(), QFormLayoutPrivate::setupHfwLayoutData(), QFormLayoutPrivate::setupVerticalLayoutData(), QQuadPath::splitElementAt(), QFontSubset::toTruetype(), QQuickShapeGenericRenderer::triangulateFill(), QQuickShapeGenericRenderer::triangulateStroke(), and QTextTablePrivate::update().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ resize() [2/2]

template<typename T >
void QList< T >::resize ( qsizetype size,
parameter_type c )
inline

Definition at line 409 of file qlist.h.

References QList< T >::size().

+ Here is the call graph for this function:

◆ resizeForOverwrite()

template<typename T >
void QList< T >::resizeForOverwrite ( qsizetype size)
inline

Definition at line 415 of file qlist.h.

References QList< T >::size().

+ Here is the call graph for this function:

◆ shrink_to_fit()

template<typename T >
void QList< T >::shrink_to_fit ( )
inline

Definition at line 691 of file qlist.h.

References QList< T >::squeeze().

+ Here is the call graph for this function:

◆ size()

template<typename T >
qsizetype QList< T >::size ( ) const
inlinenoexcept

Definition at line 397 of file qlist.h.

References d.

Referenced by Generator::Generator(), QCborArray::QCborArray(), QCborMap::QCborMap(), QEvdevTouchScreenHandler::QEvdevTouchScreenHandler(), QList< T >::QList(), QQmlDMAbstractItemModelData::QQmlDMAbstractItemModelData(), QSvgAttributes::QSvgAttributes(), QTornOffMenu::QTornOffMenu(), QTuioHandler::QTuioHandler(), ResolvedTypeAlias::ResolvedTypeAlias(), QFontEngineMulti::~QFontEngineMulti(), QGraphicsItem::~QGraphicsItem(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QQnxWindow::~QQnxWindow(), QSvgText::~QSvgText(), QThreadData::~QThreadData(), QTreeWidgetItem::~QTreeWidgetItem(), QWaylandSurfacePrivate::~QWaylandSurfacePrivate(), QWidgetRepaintManager::~QWidgetRepaintManager(), QWindowsMenu::~QWindowsMenu(), QWindowsMenuBar::~QWindowsMenuBar(), QWinSettingsPrivate::~QWinSettingsPrivate(), QMdiAreaPrivate::_q_currentTabChanged(), QQuickFolderListModelPrivate::_q_directoryUpdated(), QHttpNetworkConnectionChannel::_q_disconnected(), QPrintPreviewWidgetPrivate::_q_fit(), QGraphicsScenePrivate::_q_polishItems(), QQuickFolderListModelPrivate::_q_sortFinished(), QHttpNetworkConnectionPrivate::_q_startNextRequest(), QSequentialAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QWizardPrivate::_q_updateButtonStates(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QGraphicsSceneBspTreeIndexPrivate::_q_updateSortCache(), QHostInfoLookupManager::abortLookup(), CPP::WriteInitialization::acceptWidget(), QMenuBarPrivate::actionAt(), QMenuBarPrivate::actionRect(), QQuickActionGroupPrivate::actions_count(), QWidgetPrivate::activateChildLayoutsRecursively(), QMdiAreaPrivate::activateHighlightedWindow(), QTimerInfoList::activateTimers(), QThreadPoolPrivate::activeThreadCount(), QQmlTypeModule::add(), QGraphicsWidget::addActions(), QWidget::addActions(), QQmlDelegateModelPrivate::addCacheItem(), QGraphicsItemPrivate::addChild(), QTreeWidgetItem::addChild(), QMetaObjectBuilder::addClassInfo(), QPainterPath::addEllipse(), QWizardPrivate::addField(), QSGCurveGlyphAtlas::addGlyph(), QFontSubset::addGlyph(), QQmlTypeCompiler::addImport(), QMediaTimeRangePrivate::addInterval(), QQuickViewTestUtils::QaimModel::addItem(), QGraphicsSceneBspTreeIndexPrivate::addItem(), QQuickLabsPlatformMenu::addItem(), QQuickViewTestUtils::QaimModel::addItems(), QQuickLabsPlatformMenu::addMenu(), QQuickLabsPlatformMenuBar::addMenu(), QCommandLineParser::addOption(), QQmlJSScope::addOwnPropertyBinding(), QStatusBar::addPermanentWidget(), QGraphicsScenePrivate::addPopup(), QPainterPath::addRect(), QMetaObjectBuilder::addRelatedMetaObject(), QtPrivate::ResultStoreBase::addResults(), QtPrivate::ResultStoreBase::addResults(), QPainterPath::addRoundedRect(), QSGCurveGlyphAtlas::addStroke(), QPainterPath::addText(), QQuickTextNodeEngine::addToSceneGraph(), QWaylandOutputPrivate::addView(), QFileSystemModelPrivate::addVisibleFiles(), QQuickGridViewPrivate::addVisibleItems(), QQuickListViewPrivate::addVisibleItems(), QFbScreen::addWindow(), QQuickGridViewPrivate::adjustFirstItem(), QQuickListViewPrivate::adjustFirstItem(), QDialog::adjustPosition(), FolderIterator::advance(), AndroidContentFileEngineIterator::advance(), QSequentialAnimationGroupPrivate::advanceForwards(), QQuick3DParticleAttractor::affectParticle(), QQmlTypeData::allDependenciesDone(), QWindowsMimeRegistry::allFormatsForMime(), QNetworkInterfaceManager::allInterfaces(), QWindowsMimeRegistry::allMimesForFormats(), QQmlJS::FixedPoolArray< T >::allocate(), QGraphicsViewPrivate::allocStyleOptionsArray(), QSequentialAnimationGroupPrivate::animationActualTotalDuration(), QSequentialAnimationGroupPrivate::animationRemoved(), QSGThreadedRenderLoop::animationStarted(), QCborContainerPrivate::append(), QMdiAreaPrivate::appendChild(), QIconModeViewBase::appendHiddenRow(), appendList(), QQmlXmlListModel::appendRole(), QQmlJS::Dom::appendUpdatableElementInQList(), QDockAreaLayoutInfo::apply(), QSvgAnimateColor::apply(), QQuickAnimatorPrivate::apply(), QSvgFeMerge::apply(), QSyntaxHighlighterPrivate::applyFormatChanges(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QQuickItemViewPrivate::applyModelChanges(), QQuickItemViewPrivate::applyRemovalChange(), argumentsFromCommandLineAndFile(), QmlTypeRegistrar::argumentsFromCommandLineAndFile(), QTextEngine::attributes(), QXcbScreen::availableGeometry(), QAppleIconEngine::availableSizes(), QTreeModel::beginRemoveItems(), QVsp2BlendingDevice::blend(), QTextLayout::boundingRect(), QAndroidAudioDecoder::bufferAvailable(), QCtfServer::bufferData(), QDialogButtonBox::buttonRole(), QQuickButtonGroupPrivate::buttons_count(), QMenuBarPrivate::calcActionRects(), QQuickPathViewPrivate::calcCurrentIndex(), QBoxLayoutPrivate::calcHfw(), QTextEngine::calculateTabWidth(), QJSValue::call(), QJSManagedValue::call(), QJSValue::callAsConstructor(), QJSManagedValue::callAsConstructor(), QV4::CallMethod(), QJSValue::callWithInstance(), QJSManagedValue::callWithInstance(), QSctpSocketPrivate::canReadNotification(), QAlphaPaintEnginePrivate::canSeeTroughBackground(), QTextMarkdownImporter::cbEnterBlock(), QTextMarkdownImporter::cbLeaveBlock(), QAbstractItemModel::changePersistentIndexList(), Moc::checkListSizes(), Moc::checkProperties(), QQuickItemViewPrivate::checkVisible(), QUndoCommand::child(), QQuickItem::childAt(), QWidgetPrivate::childAtRecursiveHelper(), QUndoCommand::childCount(), QStandardItemPrivate::childIndex(), QGraphicsItemPrivate::childrenBoundingRectHelper(), QQmlDelegateChooser::choices_count(), QMetaObjectBuilder::classInfoCount(), QResourcePrivate::clear(), QList< T >::clear(), QListModel::clear(), QTableModel::clear(), QQuickViewTestUtils::QaimModel::clear(), QSqlRelationalTableModelPrivate::clearCache(), QSqlRelationalTableModelPrivate::clearChanges(), QTableModel::clearContents(), QAbstractItemViewPrivate::clearOrRemove(), QTextDocumentPrivate::clearUndoRedoStacks(), QQuickControlsTestUtils::clickButton(), QWidgetPrivate::clipRegion(), QZipWriter::close(), QSplitterPrivate::collapsible(), QXcbColormap::colorAt(), TableModel::columnCount(), QTableModel::columnCount(), compareElement(), QQuickStatePrivate::complete(), QQmlTableModel::componentComplete(), QGraphicsItemPrivate::TransformData::computedFullTransform(), QMetaObject::connectSlotsByName(), QCborStreamReader::containerDepth(), QMediaTimeRange::contains(), QSqlRecordPrivate::contains(), contextFactory(), QWindowsMimeRegistry::converterFromMime(), QWindowsMimeRegistry::converterToMime(), convertIterableToVariantList(), convertPath(), QGeoPathPrivate::coordinateAt(), QTreeViewPrivate::coordinateForItem(), QQuickNinePatchData::coordsForSize(), QIndexMapper::cost(), QZipReader::count(), QTextHtmlParser::count(), QSqlRecord::count(), QGridLayoutPrivate::count(), QIndexMapper::count(), QList< T >::count(), CardLayout::count(), QDockWidgetLayout::count(), QToolBarLayout::count(), QList< T >::count(), QOpenGLTimeMonitorPrivate::create(), QWindowPrivate::create(), createArrayBuffer(), QGraphicsScene::createItemGroup(), QTextLayout::createLine(), QTextFormatCollection::createObjectIndex(), QWidgetPrivate::createRecursively(), QSSGRenderHelpers::createRenderables(), QLocale::createSeparatedList(), QQuickPropertyAnimation::createTransitionActions(), QWidgetPrivate::createWinId(), FolderIterator::currentFileName(), AndroidContentFileEngineIterator::currentFileName(), FolderIterator::currentFilePath(), AndroidContentFileEngineIterator::currentFilePath(), QPdfPageNavigator::currentLink(), QPdfPageNavigator::currentLocation(), QPdfPageNavigator::currentPage(), QPdfPageNavigator::currentZoom(), QListModel::data(), QTreeWidgetItem::data(), QListWidgetItem::data(), QQuickPackagePrivate::data_count(), QIconModeViewBase::dataChanged(), QGraphicsSceneBspTree::debug(), QQuickAnimationPropertyUpdater::debugUpdater(), QTlsPrivate::TlsKeyGeneric::decodeDer(), QV4::Compiler::Codegen::defineFunction(), QQmlDelegateChooser::delegate(), QDockAreaLayoutInfo::deleteAllLayoutItems(), QObjectPrivate::deleteChildren(), QQuickDeliveryAgentPrivate::deliverHoverEventRecursive(), QCocoaScreen::deliverUpdateRequests(), QQmlTreeModelToTableModel::depthAtRow(), QQuick3DObjectPrivate::derefSceneManager(), QQuickItemPrivate::derefWindow(), QOpenGLTimeMonitorPrivate::destroy(), QQuickSplitViewPrivate::destroyHandles(), QButtonGroupPrivate::detectCheckedButton(), QGraphicsScenePrivate::dispatchHoverEvent(), QGridLayoutPrivate::distribute(), QQuickParentAnimationData::doAction(), QIconModeViewBase::doBatchedItemLayout(), QFFmpegImageCapture::doCapture(), QSplitterPrivate::doMove(), QFbScreen::doRedraw(), QSplitterPrivate::doResize(), QPdfSearchModelPrivate::doSearch(), QQuickControlsTestUtils::doubleClickButton(), QGraphicsScenePrivate::draw(), QTextLayout::draw(), QTextLayout::drawCursor(), QPainter::drawPolyline(), QPainter::drawPolyline(), QWidgetPrivate::drawWidget(), QStandardItemModel::dropMimeData(), QQmlTreeModelToTableModel::dump(), QPainterPath::elementCount(), QTextEngine::elidedText(), QQuick3DParticleEmitter::emitBurstCount(), QItemSelectionModel::emitSelectionChanged(), QVsp2BlendingDevice::enableInput(), QTextLayout::endLayout(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QSGSoftwareRenderableNodeUpdater::endVisit(), QResourcePrivate::ensureChildren(), QGridLayoutEngine::ensureDynamicConstraint(), QFontEngineMulti::ensureEngineAt(), QWidget::ensurePolished(), QGraphicsItemPrivate::ensureSequentialSiblingIndex(), QGraphicsScenePrivate::ensureSequentialTopLevelSiblingIndexes(), QListModel::ensureSorted(), QGraphicsItemPrivate::ensureSortedChildren(), QQmlDirParser::errors(), QGraphicsSceneBspTreeIndexPrivate::estimateItems(), QQmlBinding::evaluate(), QQmlPropertyBindingJSForBoundFunction::evaluate(), QGeoTiledMapOsm::evaluateCopyrights(), QToolBarLayout::expandedSize(), QItemSelectionModelPrivate::expandSelection(), QDockAreaLayoutInfo::expansive(), QWaylandObject::extension(), QWaylandObject::extension(), QCborContainerPrivate::extractAt(), QQuickMaskExtruder::extrude(), QSvgText::fastBounds(), QZipReader::fileData(), QQuickFileDialogImplPrivate::fileDialogListViewCountChanged(), QZipReader::fileInfoList(), fileInfoListToString(), QGeoFileTileCacheOsm::filenameToTileSpec(), QHttpNetworkConnectionPrivate::fillPipeline(), filterItemsFromTextLocation(), QV4::Compiler::Context::findArgument(), findBySize(), QCborContainerPrivate::findCborMapKey(), QCborContainerPrivate::findCborMapKey(), FileInfoThread::findChangeRange(), findChildrenHelper(), QTextEngine::findItem(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QQuickGridLayoutEngine::findLayoutItem(), QCborContainerPrivate::findOrAddMapKey(), QOpenGLEngineSharedShaders::findProgramInCache(), QUrlQueryPrivate::findRecodedKey(), QDockAreaLayoutInfo::findSeparator(), findTextureWidgetsRecursively(), QQuickStateGroupPrivate::findTransition(), QQuickVisualTestUtils::findVisibleChild(), QSplitterPrivate::findWidget(), QSplitterPrivate::findWidgetJustBeforeOrJustAfter(), QQuickItemViewPrivate::firstItemInView(), QQmlJSCompilePass::firstRegisterIndex(), QTreeViewPrivate::firstVisibleItem(), QDockAreaLayoutInfo::fitItems(), QToolBarAreaLayoutLine::fitLayout(), QToolBarAreaLayoutInfo::fitLayout(), QDeclarativeGeoMap::fitViewportToMapItems(), QQuickPathViewPrivate::fixOffset(), QQuickListViewPrivate::fixup(), QQuickListViewPrivate::fixupHeader(), QListModel::flags(), QMenuBarPrivate::focusFirstAction(), forcePolishHelper(), forceUpdate(), language::formatOverload(), QXcbDropData::formats_sys(), QPdfPageNavigator::forward(), QPdfPageNavigator::forwardAvailable(), QTextTablePrivate::fragmentRemoved(), QTextEngine::freeMemory(), QV4::ExecutionEngine::fromData(), QNetworkHeadersPrivate::fromHttpToRaw(), fromLatin1List(), QQmlJS::Dom::List::fromQList(), QQmlJS::Dom::List::fromQListRef(), QSSGShaderKeyVertexAttribute::fromString(), QCborArray::fromStringList(), QCborArray::fromVariantList(), QSSGLayerRenderData::frustumCulling(), QSSGLayerRenderData::frustumCullingInline(), QDockAreaLayoutInfo::gapIndex(), QToolBarAreaLayoutInfo::gapIndex(), Moc::generate(), Generator::generateCode(), QGradientCache::generateGradientColorTable(), CPP::generateMultiDirectiveBegin(), QPrintPreviewWidgetPrivate::generatePreview(), QGestureEvent::gesture(), QGraphicsScenePrivate::gestureEventHandler(), QGraphicsScenePrivate::gestureTargetsAtHotSpots(), QGradientCache::getBuffer(), QOpenGL2GradientCache::getBuffer(), QQuick3DParticleEmitter::getEmitAmountFromDynamicBursts(), FileInfoThread::getFileInfos(), QGeoFileTileCacheOsm::getFromOfflineStorage(), QQuick3DInstanceList::getInstanceBuffer(), QGridLayoutPrivate::getItemPosition(), QMenuPrivate::getLastVisibleAction(), QDBusMenuRegistrarInterface::GetMenuForWindow(), QMenuBarPrivate::getNextAction(), QWidgetPrivate::getOpaqueChildren(), QFileDialog::getOpenFileNames(), QQuick3DParticleCustomShape::getPosition(), QSplitterPrivate::getRange(), QGeoTileFetcherMapbox::getTileImage(), QGeoTileFetcherOsm::getTileImage(), QOCICols::getValues(), QFontEngineMulti::glyphIndex(), QTextLayout::glyphRuns(), QQuickStochasticEngine::goalSeek(), QQuickGradient::gradientStops(), QEglFSScreen::handleCursorMove(), QXcbDrag::handleEnter(), QOpenXRSpaceExtension::handleEvent(), QQuick3DParticleSpriteParticle::handleMaxAmountChanged(), QQuickPathViewPrivate::handleMousePressEvent(), QQuickDragHandler::handlePointerEventImpl(), QQuickPinchHandler::handlePointerEventImpl(), QWindowsScreenManager::handleScreenChanges(), QWaylandOutputPrivate::handleWindowPixelSizeChanged(), QSortFilterProxyModel::hasChildren(), QQmlTreeModelToTableModel::hasChildren(), MyClassPrivate::hasClientsActualCalculation(), QNdefNfcSmartPosterRecord::hasIcon(), Parser::hasNext(), QJSListForOfIterator::hasNext(), hasNext(), QNdefNfcSmartPosterRecord::hasTitle(), QTableModel::headerData(), QMdiAreaPrivate::highlightNextSubWindow(), QSqlResultPrivate::holderAt(), QGeoPolygonPrivate::holesCount(), QListModeViewBase::horizontalOffset(), QListModeViewBase::horizontalScrollToValue(), QNdefNfcSmartPosterRecord::icon(), QNdefNfcSmartPosterRecord::iconCount(), QGifHandler::imageCount(), QICNSHandler::imageCount(), QIBusAttributeList::imAttributes(), QTextHtmlImporter::import(), importGeometryCollection(), importMultiLineString(), importMultiPolygon(), QQmlPluginImporter::importPlugins(), QTreeViewPrivate::indentationForItem(), QListModel::index(), QTableModel::index(), QTreeModel::index(), QFileSystemModel::index(), QSequentialAnimationGroupPrivate::indexForCurrentTime(), QToolBarLayout::indexOf(), QtPrivate::indexOf(), QGraphicsGridLayoutEngine::indexOf(), QQuickGridLayoutEngine::indexOf(), QDockAreaLayoutInfo::indexOf(), QMetaObjectBuilder::indexOfClassInfo(), indexOfMonitor(), QDockAreaLayoutInfo::indexOfPlaceHolder(), QListModeViewBase::indexToListViewItem(), QIconModeViewBase::indexToListViewItem(), QDockAreaLayoutInfo::info(), QDockAreaLayoutInfo::info(), BezierEase::init(), QWaylandCompositorPrivate::init(), QJSListForInIterator::init(), QV4::Heap::ArrayObject::init(), QQuickAttachedPropertyPropagator::initialize(), QQuickListViewPrivate::initializeCurrentItem(), QDirectFbIntegration::initializeDirectFB(), QHeaderViewPrivate::initializeIndexMapping(), VDMAbstractItemModelDataType::initializeMetaType(), QLoggingRegistry::initializeRules(), QTextDocumentPrivate::insert(), QListModel::insert(), QListModel::insert(), QToolBarLayout::insertAction(), QGraphicsWidget::insertActions(), QWidget::insertActions(), QTextDocumentPrivate::insertBlock(), QTreeWidgetItem::insertChild(), QStandardItem::insertColumn(), QStandardItemPrivate::insertColumns(), QTreeModel::insertColumns(), QTableModel::insertColumns(), QGeoPathPrivate::insertCoordinate(), QDockAreaLayoutInfo::insertGap(), QToolBarAreaLayoutInfo::insertGap(), QTextEngine::insertionPointsForLine(), QGridLayoutEngine::insertItem(), QToolBarAreaLayoutInfo::insertItem(), QQuickViewTestUtils::QaimModel::insertItems(), QComboBox::insertItems(), QCocoaMenuBar::insertMenu(), QWindowsMenuBar::insertMenu(), QGtk3Menu::insertMenuItem(), QWidgetPlatformMenu::insertMenuItem(), QWindowsMenu::insertMenuItem(), insertOrRemoveItems(), QStandardItem::insertRow(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QTableModel::insertRows(), QToolBarAreaLayoutInfo::insertToolBarBreak(), QTreeViewPrivate::insertViewItems(), QSplitterPrivate::insertWidget(), QQuick3DInstanceList::instanceCount(), QMdiAreaPrivate::internalRaise(), QListModeViewBase::intersectingSet(), QOpenGLTimeMonitorPrivate::intervals(), QGraphicsItemPrivate::invalidateDepthRecursively(), QMediaTimeRange::isContinuous(), QSqlIndex::isDescending(), QPainterPath::isEmpty(), QMenu::isEmpty(), QTlsPrivate::TlsKeyBase::isEncryptedPkcs8(), QQmlTreeModelToTableModel::isExpanded(), QSslConfiguration::isNull(), QBrush::isOpaque(), QSGSoftwareInternalRectangleNode::isOpaque(), QHttpMultiPartIODevice::isSequential(), QTextureFileData::isValid(), QTableModel::isValid(), QGuiApplicationPrivate::isWindowBlocked(), QDomNodeListPrivate::item(), QDockAreaLayoutInfo::itemAt(), QGridLayoutPrivate::itemAt(), QDockWidgetLayout::itemAt(), QToolBarLayout::itemAt(), QTreeViewPrivate::itemAtCoordinate(), QQuickListViewPrivate::itemBefore(), QGridLayoutEngine::itemCount(), QListModel::itemData(), QTableModel::itemData(), QTreeViewPrivate::itemForKeyEnd(), QTreeViewPrivate::itemForKeyHome(), QQuickListViewPrivate::itemGeometryChanged(), QTreeViewPrivate::itemHeight(), QIconModeViewBase::itemIndex(), QQmlTreeModelToTableModel::itemIndex(), QTextEngine::itemize(), QDBusMenuItem::items(), QGraphicsSceneBspTree::items(), QGraphicsSceneIndexPrivate::items_helper(), QQmlDelegateModelPrivate::itemsInserted(), QQmlDelegateModelPrivate::itemsInserted(), QQmlDelegateModelPrivate::itemsMoved(), QQmlDelegateModelPrivate::itemsRemoved(), QQmlDelegateModelPrivate::itemsRemoved(), QQuickItemPrivate::itemToParentTransform(), ServerAcceptanceThread::javaNewSocket(), QPdfPageNavigator::jump(), QPdfPageNavigator::jump(), QDialog::keyPressEvent(), QCborMap::keys(), QJsonObject::keys(), QTextHtmlParser::last(), QQmlTreeModelToTableModel::lastChildIndex(), QtPrivate::lastIndexOf(), QQuickListViewPrivate::lastPosition(), QTreeViewPrivate::lastVisibleItem(), QMdiAreaPrivate::lastWindowAboutToBeDestroyed(), QMediaTimeRange::latestTime(), QQuickItemViewPrivate::layout(), QQuickSplitViewPrivate::layout(), QTreeViewPrivate::layout(), QItemSelectionModelPrivate::layoutAboutToBeChanged(), QToolBarLayout::layoutActions(), QAbstractItemModelTesterPrivate::layoutChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutFrame(), QPrintPreviewWidgetPrivate::layoutPages(), QQuickSplitViewPrivate::layoutResizeSplitItems(), QTextDocumentLayoutPrivate::layoutTable(), QQuickGridViewPrivate::layoutVisibleItems(), QQuickListViewPrivate::layoutVisibleItems(), QBspTree::leafCount(), QDomNodeListPrivate::length(), QList< T >::length(), QTextEngine::length(), QtWaylandClient::LibHybrisServerBuffer::libhybris_buffer_add_fd(), QGeoPathPrivate::lineContains(), QTextLayout::lineCount(), Parser::lineNumber(), QTextEngine::lineNumberForTextPosition(), QResourcePrivate::load(), QPpdPrintDevice::loadDuplexModes(), QCocoaPrintDevice::loadDuplexModes(), QShaderDescriptionPrivate::loadFromStream(), QPpdPrintDevice::loadInputSlots(), QCocoaPrintDevice::loadInputSlots(), QPpdPrintDevice::loadOutputBins(), QCocoaPrintDevice::loadOutputBins(), QPpdPrintDevice::loadResolutions(), loadRulesFromFile(), QQmlPreviewHandler::loadUrl(), Parser::lookup(), QAndroidPlatformScreen::lower(), QFbScreen::lower(), macList(), Preprocessor::macroExpand(), Preprocessor::macroExpandIdentifier(), main(), main(), makeArgNames(), QQmlTreeModelToTableModel::mapFromModel(), QQuickItemViewPrivate::mapFromModel(), QIdentityProxyModel::mapSelectionFromSource(), QAbstractProxyModel::mapSelectionToSource(), QIdentityProxyModel::mapSelectionToSource(), QQmlTreeModelToTableModel::mapToModel(), QQmlTreeModelToTableModel::mapToModel(), QTextBlockGroupPrivate::markBlocksDirty(), QNdefFilter::match(), QQuickViewTestUtils::QaimModel::matchAgainst(), QDockAreaLayoutInfo::maximumSize(), QWaylandSurfaceViewMapper::maybePrimaryView(), QAndroidPlatformMenu::menuItemAt(), QIOSMenu::menuItemAt(), QWindowsMenu::menuItemAt(), QIOSMenu::menuItemForTag(), QItemSelection::merge(), QQuickDeliveryAgentPrivate::mergePointerTargets(), QQmlVMEMetaObject::metaCall(), QXcbMime::mimeConvertToFormat(), QListWidget::mimeData(), QTableWidget::mimeData(), QAbstractItemModel::mimeData(), QAbstractProxyModel::mimeData(), QConcatenateTablesProxyModel::mimeData(), QSortFilterProxyModel::mimeData(), QStandardItemModel::mimeData(), QListModel::mimeData(), QTableModel::mimeData(), QDockAreaLayoutInfo::minimumSize(), QToolBarAreaLayoutLine::minimumSize(), QToolBarAreaLayoutInfo::minimumSize(), QMenuBar::minimumSizeHint(), QQmlDMAbstractItemModelData::modelData(), QTreeViewPrivate::modelIndex(), QEglFSKmsScreen::modes(), QXcbDrag::move(), QListModel::move(), QList< T >::move(), QWidgetRepaintManager::moveStaticWidgets(), QToolBarAreaLayoutInfo::moveToolBar(), QObjectPrivate::moveToThread_helper(), QSqlResultPrivate::namedToPositionalBinding(), QTextHtmlParser::newNode(), QSubpathFlatIterator::next(), Parser::next(), QDockAreaLayoutInfo::next(), QSqlCachedResultPrivate::nextIndex(), QQuickStochasticEngine::nextState(), QFontSubset::nGlyphs(), QFileSystemModelPrivate::node(), VDMAbstractItemModelDataType::notify(), QGuiApplicationPrivate::notifyLayoutDirectionChange(), QGuiApplicationPrivate::notifyWindowIconChanged(), QVsp2BlendingDevice::numInputs(), QQmlContextPrivate::numPropertyValues(), QTextFormatCollection::objectFormatIndex(), QtAndroidMenu::onOptionsItemSelected(), QtAndroidMenu::onPrepareOptionsMenu(), QGeoFileTileCacheOsm::onProviderResolutionFinished(), QGeoTileProviderOsm::onResolutionError(), QQuickStatePrivate::operations_count(), Compress::operator()(), QGeoPathPrivate::operator==(), QGeoPolygonPrivate::operator==(), QList< T >::operator==(), QCborValue::operator[](), QGifHandler::option(), QWidgetPrivate::overlappedRegion(), QQmlJSScope::ownPropertyBindingsInQmlIROrder(), QQmlJSScope::ownRuntimeFunctionIndex(), QPdfSearchModelPrivate::pageAndIndexForResult(), QTreeViewPrivate::pageDown(), QTreeViewPrivate::pageUp(), QQuickItemPrivate::paintOrderChildItems(), QDockAreaLayoutInfo::paintSeparators(), QMetaMethodBuilderPrivate::parameterCount(), parseCmdLine(), QQuickStackViewPrivate::parseElements(), QTlsPrivate::X509CertificateGeneric::parseExtension(), Moc::parseFunctionArguments(), parseNumberTriplet(), parseOptions(), parseOptions(), Moc::parsePrivateProperty(), Moc::parseProperty(), parseStopNode(), QTextHtmlParser::parseTag(), QQuick3DParticleAffector::particleCount(), QCompleter::pathFromIndex(), Parser::peek(), QMdiAreaPrivate::place(), QPainterPath::pointAtPercent(), QQuickDeliveryAgentPrivate::pointerTargets(), QSvgHandler::popColor(), QQuickStackViewPrivate::popElements(), QQuickStackViewPrivate::popToItem(), QMenuPrivate::popup(), QTextEngine::positionAfterVisualMovement(), QtWayland::TouchExtensionGlobal::postTouchEvent(), QWaitConditionPrivate::pre(), QGraphicsSceneBspTreeIndex::prepareBoundingRectChange(), QSSGLayerRenderData::prepareForRender(), prepareModelMaterialsImpl(), QDBusConnectionPrivate::prepareReply(), QQuickBasePositioner::prePositioning(), Preprocessor::preprocessed(), QGeoJson::printQvariant(), QDashStroker::processCurrentSubpath(), QPulseAudioSink::processedUSecs(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), QGeoPositionInfoSourceAndroid::processSinglePositionUpdate(), QTreeWidgetItemPrivate::propagateDisabled(), QWidgetPrivate::propagatePaletteChange(), QTextFormat::properties(), QMacPrintEngine::property(), QTextFormat::propertyCount(), QBluetoothServiceInfo::protocolServiceMultiplexer(), QGraphicsSceneBspTreeIndexPrivate::purgeRemovedItems(), QSvgHandler::pushColorCopy(), QQuickStackViewPrivate::pushElements(), q_createNativeChildrenAndSetParent(), QTlsPrivate::Q_GLOBAL_STATIC_WITH_ARGS(), qDBusParametersForMethod(), qDBusPropertyGet(), qDBusPropertyGetAll(), qDBusPropertySet(), QTest::qExec(), qGlobalPostedEventsCount(), qListToPath(), qRegisterResourceData(), QTest::qSignalDumperCallback(), QSqlQuery_snippets(), qt_findClosestValue(), qt_mac_QStringListToNSMutableArray(), QUrlQuery::queryItems(), qUnregisterResourceData(), qwindowcontainer_traverse(), AVFAudioDecoder::read(), QICNSHandler::read(), QMdi::RegularTiler::rearrange(), QMdi::SimpleCascader::rearrange(), QMdi::IconTiler::rearrange(), QMdiAreaPrivate::rearrange(), QSplitterPrivate::recalc(), QNdefFilter::recordCount(), QOpenGLTimeMonitorPrivate::recordSample(), QCss::Declaration::rectValue(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QQuickItemPrivate::recursiveRefFromEffectItem(), QUndoCommand::redo(), QShortcutPrivate::redoGrab(), QQuick3DObjectPrivate::refSceneManager(), QQuickItemPrivate::refWindow(), QDeclarativePolylineMapItemPrivateCPU::regenerateCache(), QGraphicsScenePrivate::registerTopLevelItem(), QObjectPrivate::reinitBindingStorageAfterThreadMove(), QMetaObjectBuilder::relatedMetaObjectCount(), QDBusAdaptorConnector::relay(), QTextFramePrivate::remove_me(), QQmlDelegateModelPrivate::removeCacheItem(), QGraphicsItemPrivate::removeChild(), QTableModel::removeColumns(), QGeoPathPrivate::removeCoordinate(), QWidgetRepaintManager::removeDirtyWidget(), QQuickSplitViewPrivate::removeExcessHandles(), QIconModeViewBase::removeHiddenRow(), QGeoPolygonPrivate::removeHole(), QNdefNfcSmartPosterRecord::removeIcon(), QNdefNfcSmartPosterRecord::removeIcon(), QDeclarativeGeoMapItemView::removeInstantiatedItems(), QMediaTimeRangePrivate::removeInterval(), QGraphicsSceneBspTreeIndexPrivate::removeItem(), QGraphicsSceneBspTree::removeItems(), QQuickGridViewPrivate::removeNonVisibleItems(), QQuickListViewPrivate::removeNonVisibleItems(), QGraphicsScenePrivate::removePopup(), QCoreApplication::removePostedEvents(), QHttpNetworkConnectionPrivate::removeReply(), QTableModel::removeRows(), JsonOutput::removeTargetDirectory(), QNdefNfcSmartPosterRecord::removeTitle(), QNdefNfcSmartPosterRecord::removeTitle(), QToolBarAreaLayoutInfo::removeToolBar(), QToolBarAreaLayoutInfo::removeToolBarBreak(), removeTransparencyFromBrush(), QWaylandOutputPrivate::removeView(), QTreeViewPrivate::removeViewItems(), QQmlTreeModelToTableModel::removeVisibleRows(), QStackedLayoutPrivate::replaceAt(), QGeoPathPrivate::replaceCoordinate(), QQuickFolderBreadcrumbBarPrivate::repopulate(), QEvdevTouchScreenData::reportPoints(), QQuickItemViewPrivate::repositionFirstItem(), QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests(), QSvgFeMerge::requiresSourceAlpha(), QHttpMultiPartIODevice::reset(), QGraphicsScenePrivate::resetDirtyItem(), QGraphicsItemPrivate::resetFocusProxy(), QGraphicsSceneBspTreeIndexPrivate::resetIndex(), QList< T >::resize(), QList< T >::resize(), QList< T >::resizeForOverwrite(), QQmlDMAbstractItemModelData::resolveIndex(), QTextHtmlParser::resolveParent(), QQmlImportNamespace::resolveType(), LibHybrisEglServerBuffer::resourceForClient(), QUnifiedTimer::restart(), QSequentialAnimationGroupPrivate::restart(), QDockAreaLayoutInfo::restoreState(), QFileDialogPrivate::restoreWidgetState(), QFileDialogPrivate::retranslateStrings(), QSequentialAnimationGroupPrivate::rewindForwards(), QQmlXmlListModel::roleNames(), QtPrivate::FixedColumnMatrix< T, NumColumns >::rowCount(), QFileSystemModel::rowCount(), TableModel::rowCount(), QListModel::rowCount(), QTableModel::rowCount(), QQmlTreeModelToTableModel::rowCount(), QQuickViewTestUtils::QaimModel::rowCount(), QCtfServer::run(), QQmlJSFunctionInitializer::run(), QUnifiedTimer::runningAnimationCount(), runProcess(), sanityCheck(), QQuickParentChange::saveCurrentValues(), QSvgPaintEngine::saveGradientStops(), QDockAreaLayoutInfo::saveState(), QHighDpi::scale(), QPixmapIconEngine::scaledPixmap(), QGraphicsItem::sceneEvent(), QWidgetPrivate::scrollChildren(), QListModeViewBase::scrollContentsBy(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QWaylandCompositorPrivate::seatFor(), QHeaderViewPrivate::sectionsRemoved(), QItemSelectionModel::selectedColumns(), QListWidget::selectedItems(), QTreeWidget::selectedItems(), QItemSelectionModel::selectedRows(), QFutureInterfaceBasePrivate::sendCallOut(), QFutureInterfaceBasePrivate::sendCallOuts(), QWidgetPrivate::sendComposeStatus(), QWaylandKeyboardPrivate::sendEnter(), QWidgetPrivate::sendPendingMoveAndResizeEvents(), sendResizeEvents(), QDockAreaLayoutInfo::separatorMove(), separatorMoveHelper(), QDockAreaLayoutInfo::separatorRegion(), QShader::serialized(), QIBusAttributeList::serializeTo(), QBluetoothServiceInfoPrivate::serverChannel(), QBluetoothServiceInfo::serviceClassUuids(), QSvgAnimateTransform::setArgs(), QAndroidPlatformScreen::setAvailableGeometry(), QGradient::setColorAt(), QTableModel::setColumnCount(), QSimplex::setConstraints(), QSequentialAnimationGroupPrivate::setCurrentAnimation(), QPrintPreviewWidgetPrivate::setCurrentPage(), QPainterPathStroker::setDashPattern(), QPen::setDashPattern(), QListModel::setData(), QTreeWidgetItem::setData(), QListWidgetItem::setData(), QSqlIndex::setDescending(), QQuickItemPrivate::setEffectiveEnableRecur(), QQuickItemPrivate::setEffectiveVisibleRecur(), QWidgetPrivate::setEnabled_helper(), QQmlDataBlob::setError(), QFontEngineMulti::setFallbackFamiliesList(), QMenuPrivate::setFirstActionActive(), QTreeWidgetItem::setFlags(), QGridLayoutEngine::setGeometries(), CardLayout::setGeometry(), QGlyphRun::setGlyphIndexes(), QQuickStochasticEngine::setGoal(), QSGSoftwareInternalRectangleNode::setGradientStops(), QSGBasicInternalRectangleNode::setGradientStops(), QTableModel::setHeaderData(), QTableModel::setHorizontalHeaderItem(), QQuickItemPrivate::setImplicitLayoutMirror(), QQuick3DSkin::setInverseBindPoses(), QTableModel::setItem(), QGraphicsWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLocale_helper(), QQuickShaderEffectPrivate::setMesh(), QQmlDMAbstractItemModelData::setModelData(), QXcbScreen::setMonitor(), NS_IIOF_HELPERS::QIIOFHelper::setOption(), QIconModeViewBase::setPositionForIndex(), QGlyphRun::setPositions(), QTextFormat::setProperty(), QDBusPendingCallPrivate::setReplyCallback(), QBenchmarkTestMethodData::setResults(), QTableModel::setRowCount(), QmlJSDebugger::GlobalInspector::setSelectedItems(), QSplitterPrivate::setSizes_helper(), QGradient::setStops(), QBoxLayout::setStretch(), QObjectPrivate::setThreadData_helper(), QGraphicsItem::setTransformations(), QWidgetPrivate::setUpdatesEnabled_helper(), QBoxLayoutPrivate::setupGeom(), QQmlDMAbstractItemModelData::setValue(), QQuickAnimationPropertyUpdater::setValue(), QTableModel::setVerticalHeaderItem(), QWidgetPrivate::setWindowIcon_helper(), shouldArrayRemainArray(), QSvgText::shouldDrawNode(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::show(), QQmlTreeModelToTableModel::showModelChildItems(), QOCICols::size(), QJsonObject::size(), QVertexIndexVector::size(), QWasmWindowStack::size(), QGeoPathPrivate::size(), QCborArray::size(), QCborMap::size(), QHttpMultiPartIODevice::size(), QDockAreaLayoutInfo::sizeHint(), QToolBarAreaLayoutLine::sizeHint(), QToolBarAreaLayoutInfo::sizeHint(), QDockAreaLayoutItem::skip(), QToolBarAreaLayoutLine::skip(), Preprocessor::skipBranch(), Preprocessor::skipUntilEndif(), QConcatenateTablesProxyModelPrivate::slotSourceLayoutAboutToBeChanged(), QConcatenateTablesProxyModelPrivate::slotSourceLayoutChanged(), QQuickListViewPrivate::snapPosAt(), QListModel::sort(), QTableModel::sort(), QStringListModel::sort(), QStandardItemPrivate::sortChildren(), QDirPrivate::sortFileList(), QTreeModel::sortItems(), QIdentityProxyModelPrivate::sourceLayoutChanged(), QQmlLSUtils::sourceLocationToDomItem(), QQuadPath::splitElementAt(), splitIntoFamilies(), QWindowsCaRootFetcher::start(), QXcbDrag::startDrag(), QTlsPrivate::TlsCryptographOpenSSL::startHandshake(), QWidgetRepaintManager::staticContents(), AVFAudioDecoder::stop(), QQmlAnimationTimer::stopTimer(), QSplitterPrivate::storeSizes(), QBoxLayout::stretch(), QFontEngineMulti::stringToCMap(), QSettingsPrivate::stringToVariant(), QWidgetPrivate::subtractOpaqueSiblings(), QMdiAreaPrivate::subWindowList(), QList< T >::swapItemsAt(), QWidgetRepaintManager::sync(), QHstsStore::synchronize(), QTextOption::tabArray(), QTableModel::tableIndex(), QCborValue::tag(), QCborValue::taggedValue(), QListModel::take(), QDockAreaLayoutInfo::takeAt(), QGridLayoutPrivate::takeAt(), QDockWidgetLayout::takeAt(), QToolBarLayout::takeAt(), CardLayout::takeAt(), QTreeWidgetItem::takeChild(), QTreeWidgetItem::takeChildren(), QSGRenderThreadEventQueue::takeEvent(), QTableModel::takeHorizontalHeaderItem(), QTableModel::takeVerticalHeaderItem(), Parser::test(), SymbolStack::test(), QCss::Parser::test(), QQmlTreeModelToTableModel::testConsistency(), Moc::testFunctionAttribute(), QGeoFileTileCacheOsm::tileSpecToFilename(), QXcbDrag::timerEvent(), QNdefNfcSmartPosterRecord::title(), QNdefNfcSmartPosterRecord::titleCount(), QCborValue::toDateTime(), QQmlPropertyCache::toMetaObjectBuilder(), QEglFSScreen::topLevelAt(), QGuiApplication::topLevelWindows(), QPainterPath::toSubpathPolygons(), QTcpServerPrivate::totalPendingConnections(), QCborValue::toUrl(), QCborValue::toUuid(), QQuickParentAnimation::transition(), QQuickAnchorAnimation::transition(), QQuickScriptAction::transition(), QQuickPropertyAction::transition(), QPainterPath::translate(), QFileSystemModelPrivate::translateVisibleLocation(), QGridLayoutEngine::transpose(), QQuickShapeGenericRenderer::triangulateFill(), QUndoCommand::undo(), QTextDocumentPrivate::undoRedo(), QResource::unregisterResource(), QResource::unregisterResource(), QGraphicsScenePrivate::unregisterTopLevelItem(), Moc::until(), QCss::Parser::until(), QTextTablePrivate::update(), QPdfPageNavigator::update(), QSortFilterProxyModelPrivate::update_persistent_indexes(), QMenuPrivate::updateActionRects(), QMdiAreaPrivate::updateActiveWindow(), QGraphicsItemPrivate::updateAncestorFlag(), QGraphicsItemPrivate::updateAncestorFlags(), QAnimationTimer::updateAnimationsTime(), QQmlAnimationTimer::updateAnimationsTime(), QUnifiedTimer::updateAnimationTimers(), QQuickListViewPrivate::updateAverage(), QQuickListViewPrivate::updateCurrentSection(), QWidgetPrivate::updateFont(), QGraphicsWidgetPrivate::updateFont(), QQuickGridViewPrivate::updateFooter(), QQuickListViewPrivate::updateFooter(), QHstsCache::updateFromPolicies(), QMenuBarPrivate::updateGeometries(), QSGBasicInternalRectangleNode::updateGeometry(), QQuickGridViewPrivate::updateHeader(), QQuickListViewPrivate::updateHeader(), QTreeWidgetItemPrivate::updateHiddenStatus(), QSGDefaultInternalRectangleNode::updateMaterialBlending(), QGraphicsItemPrivate::updatePaintedViewBoundingRects(), QGraphicsWidgetPrivate::updatePalette(), QRasterPaintEngine::updatePen(), updatePixelRatioHelper(), QGfxSourceProxy::updatePolish(), QFFmpegImageCapture::updateReadyForCapture(), QTreeViewPrivate::updateScrollBars(), QWindowPrivate::updateSiblingPosition(), QQuickListViewPrivate::updateStickySections(), QFileDialogPrivate::userSelectedFiles(), QBoxLayoutPrivate::validateIndex(), BezierEase::value(), TCBEase::value(), QInputMethodQueryEvent::value(), QSettingsPrivate::variantListToStringList(), variantToString(), QListModeViewBase::verticalOffset(), QListModeViewBase::verticalScrollToValue(), QTreeViewPrivate::viewIndex(), QDialogButtonBoxPrivate::visibleButtons(), QQuickItemViewPrivate::visibleItem(), QQuickListViewPrivate::visibleItemsChanged(), QmlIR::IRBuilder::visit(), QSGSoftwareRenderableNodeUpdater::visit(), SvgDebugVisitor::visitPolygonNode(), SvgDebugVisitor::visitPolylineNode(), QFutureSynchronizer< T >::waitForFinished(), QFbScreen::windowCount(), QSGSoftwareThreadedRenderLoop::windowDestroyed(), QSGThreadedRenderLoop::windowDestroyed(), QFbScreen::windowForId(), windowPlacementOffset(), QTimeZonePrivate::windowsIdToDefaultIanaId(), QPixmapIconEngine::write(), Parser::write(), ICOReader::write(), QQmlPropertyPrivate::write(), QIBaseResultPrivate::writeArray(), QTextOdfWriter::writeBlock(), QQmlJSStreamWriter::writeEndObject(), QPdfEnginePrivate::writeTail(), QSctpSocketPrivate::writeToSocket(), and QShaderDescriptionPrivate::writeToStream().

◆ sliced() [1/2]

template<typename T >
QList< T > QList< T >::sliced ( qsizetype pos) const
inline

Definition at line 659 of file qlist.h.

References QList< T >::begin(), QList< T >::end(), and pos.

+ Here is the call graph for this function:

◆ sliced() [2/2]

template<typename T >
QList< T > QList< T >::sliced ( qsizetype pos,
qsizetype n ) const
inline

Definition at line 661 of file qlist.h.

References QList< T >::begin(), and pos.

+ Here is the call graph for this function:

◆ squeeze()

template<typename T >
void QList< T >::squeeze ( )
inline

Definition at line 774 of file qlist.h.

References capacity, and d.

Referenced by QGraphicsScenePrivate::_q_polishItems(), QWaylandSharedTextureProvider::setExtensionReady(), and QList< T >::shrink_to_fit().

+ Here is the caller graph for this function:

◆ startsWith()

template<typename T >
bool QList< T >::startsWith ( parameter_type t) const
inline

Definition at line 651 of file qlist.h.

References QList< T >::first(), and QList< T >::isEmpty().

+ Here is the call graph for this function:

◆ swap()

template<typename T >
void QList< T >::swap ( QList< T > & other)
inlinenoexcept

Definition at line 337 of file qlist.h.

References d, and other().

Referenced by QPolygon::swap(), QPolygonF::swap(), QQueue< T >::swap(), and QStack< T >::swap().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ swapItemsAt()

template<typename T >
void QList< T >::swapItemsAt ( qsizetype i,
qsizetype j )
inline

Definition at line 667 of file qlist.h.

References d, QList< T >::detach(), i, j, Q_ASSERT_X, qSwap(), and QList< T >::size().

Referenced by QSSGLayerRenderData::frustumCullingInline(), QGraphicsSceneIndexPrivate::items_helper(), prepareModelMaterialsImpl(), and QXcbVirtualDesktop::setPrimaryScreen().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ takeAt()

template<typename T >
T QList< T >::takeAt ( qsizetype i)
inline

Definition at line 609 of file qlist.h.

References i, and QList< T >::remove().

Referenced by QTreeWidgetItem::~QTreeWidgetItem(), QHostInfoLookupManager::abortLookup(), QXcbDrag::handleFinished(), parseCmdLine(), qUnregisterResourceData(), QTreeModel::removeRows(), QListModel::removeRows(), QDockAreaLayoutInfo::restoreState(), QListModel::take(), QGridLayoutPrivate::takeAt(), QToolBarLayout::takeAt(), CardLayout::takeAt(), and QTreeWidgetItem::takeChild().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ takeFirst()

◆ takeLast()

◆ toList()

◆ toVector()

template<typename T >
QList< T > QList< T >::toVector ( ) const
inlinenoexcept

Definition at line 726 of file qlist.h.

Referenced by QQuick3DModel::updateSpatialNode().

+ Here is the caller graph for this function:

◆ value() [1/2]

template<typename T >
T QList< T >::value ( qsizetype i) const
inline

Definition at line 664 of file qlist.h.

References i, and QList< T >::value().

Referenced by QGStreamerAudioDeviceInfo::QGStreamerAudioDeviceInfo(), QOpenSLESDeviceInfo::QOpenSLESDeviceInfo(), QPulseAudioDeviceInfo::QPulseAudioDeviceInfo(), QMessageBoxPrivate::abstractButtonForId(), QQuickParentChange::actions(), QQuickActionGroupPrivate::actions_at(), QGeoCameraTilesPrivate::TileMap::add(), QGeoPolygon::addHole(), QDBusPendingReplyBase::argumentAt(), QListModel::at(), QQuickButtonGroupPrivate::buttons_at(), Moc::checkSuperClasses(), QQuickLabsPlatformFileDialog::currentFile(), QQmlXmlListModel::data(), QTlsPrivate::TlsKeyGeneric::decodeDer(), QBoxLayoutPrivate::effectiveMargins(), QOCICols::execBatch(), exportFeatureCollection(), QGeoJson::exportGeoJson(), exportGeometryCollection(), exportMultiLineString(), exportMultiPoint(), exportMultiPolygon(), QSqlRecord::field(), QSqlRecord::fieldName(), QQuickLabsPlatformFileDialog::file(), QFileDialog::getExistingDirectoryUrl(), QQuickScrollViewPrivate::getFirstChild(), QInputDialog::getItem(), QFileDialog::getOpenFileUrl(), QFileDialog::getSaveFileUrl(), BreakPointHandler::handleRemoveBreakpoint(), BreakPointHandler::handleSetBreakpoint(), QTableModel::horizontalHeaderItem(), importArrayOfArrayOfPositions(), importArrayOfPositions(), importFeatureCollection(), importGeometryCollection(), importMultiLineString(), importMultiPoint(), importMultiPolygon(), QQuickLabsPlatformMenu::insertItem(), QQuickLabsPlatformMenuBar::insertMenu(), QSqlRecord::isGenerated(), QSqlRecord::isNull(), CardLayout::itemAt(), QTextTableCell::lastPosition(), QInputDialogPrivate::listViewText(), QDBusPlatformMenu::menuItemAt(), QGtk3Menu::menuItemAt(), QWidgetPlatformMenu::menuItemAt(), QGraphicsScenePrivate::mousePressEventHandler(), QFileSystemModelPrivate::node(), QTlsPrivate::X509CertificateGeneric::parse(), parseCollection(), QQuickStyledTextPrivate::parseImageAttributes(), QQuickStackViewPrivate::popToItem(), QBluetoothServiceInfoPrivate::protocolDescriptor(), QTlsPrivate::Q_GLOBAL_STATIC_WITH_ARGS(), QBoxLayoutPrivate::replaceAt(), QFormLayoutPrivate::replaceAt(), QGridLayoutPrivate::replaceAt(), scanImports(), QQuickFileDialog::selectedFile(), QListWidgetItem::setData(), QQuickLabsPlatformFileDialog::setFiles(), QQuickPathPolyline::setPath(), QQuickPathMultiline::setPaths(), QTableModel::takeItem(), QSqlRelationalTableModelPrivate::translateFieldNames(), QMenuBarPrivate::updateGeometries(), QSqlRecord::value(), QList< T >::value(), QQuickComboBoxDelegateModel::variantValue(), QTableModel::verticalHeaderItem(), QQmlPropertyPrivate::write(), and NS_IIOF_HELPERS::QIIOFHelper::writeImage().

+ Here is the call graph for this function:

◆ value() [2/2]

template<typename T >
T QList< T >::value ( qsizetype i,
parameter_type defaultValue ) const
inline

Definition at line 824 of file qlist.h.

References at, d, and i.

Friends And Related Symbol Documentation

◆ ::tst_QList

template<typename T >
friend class ::tst_QList
friend

Definition at line 81 of file qlist.h.

◆ QtPrivate::indexOf

template<typename T >
template<typename V , typename U >
qsizetype QtPrivate::indexOf ( const QList< V > & list,
const U & u,
qsizetype from )
friend

◆ QtPrivate::lastIndexOf

template<typename T >
template<typename V , typename U >
qsizetype QtPrivate::lastIndexOf ( const QList< V > & list,
const U & u,
qsizetype from )
friend

The documentation for this class was generated from the following files: