Qt 6.x
The Qt SDK
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< AVPacket * >, QQueue< QFFmpeg::Frame >, QQueue< QFFmpeg::Packet >, QQueue< QVideoFrame >, QQueue< PendingImage >, QQueue< QHostInfoRunnable * >, QQueue< QLocalSocket * >, QQueue< Request >, QQueue< std::pair< QNearFieldTarget::RequestId, QByteArray > >, QQueue< QPendingGeoPositionInfo >, QQueue< QQmlJS::Dom::Path >, QQueue< QQmlJS::Dom::ParsingTask >, QQueue< QQmlJS::Dom::Dependency >, QQueue< QQmlProfilerEvent >, QQueue< QQuickContext2DCommandBuffer * >, QQueue< QScrollerPrivate::ScrollSegment >, QQueue< QSocks5RevivedDatagram >, QQueue< QPair< QPointer< QObject >, QKeyEvent * > >, QQueue< QThreadPoolThread * >, QQueue< IMFSample * >, QStack< Iterator * >, 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< QAbstractFileEngineIterator * >, QStack< QFileSystemIterator * >, QStack< QString >, QStack< QStringList >, QStack< int >, QStack< QQmlJSImportVisitor::FunctionOrExpressionIdentifier >, QStack< QQmlProfilerTypedEvent >, QStack< QQuickContext2D::State >, QStack< QPointerEvent * >, QStack< QQuickHeaderViewBasePrivate::SectionSize >, 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< 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)
 
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)
 
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 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 70 of file qlist.h.

Member Typedef Documentation

◆ const_pointer

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

Definition at line 94 of file qlist.h.

◆ const_reference

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

Definition at line 96 of file qlist.h.

◆ const_reverse_iterator

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

Definition at line 253 of file qlist.h.

◆ ConstIterator

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

Definition at line 251 of file qlist.h.

◆ difference_type

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

Definition at line 98 of file qlist.h.

◆ Iterator

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

Definition at line 250 of file qlist.h.

◆ parameter_type

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

Definition at line 100 of file qlist.h.

◆ pointer

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

Definition at line 93 of file qlist.h.

◆ reference

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

Definition at line 95 of file qlist.h.

◆ reverse_iterator

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

Definition at line 252 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 101 of file qlist.h.

◆ size_type

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

Definition at line 97 of file qlist.h.

◆ Type

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

Definition at line 91 of file qlist.h.

◆ value_type

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

Definition at line 92 of file qlist.h.

Constructor & Destructor Documentation

◆ QList() [1/7]

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

Definition at line 263 of file qlist.h.

◆ QList() [2/7]

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

◆ QList() [3/7]

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

Definition at line 270 of file qlist.h.

References d.

◆ QList() [4/7]

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

Definition at line 276 of file qlist.h.

References d.

◆ QList() [5/7]

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

Definition at line 283 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/7]

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

Definition at line 299 of file qlist.h.

References QTypedArrayData< T >::allocate(), and d.

+ Here is the call graph for this function:

◆ QList() [7/7]

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 321 of file qlist.h.

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

+ Here is the call graph for this function:

Member Function Documentation

◆ append() [1/5]

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

Definition at line 451 of file qlist.h.

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

+ 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 823 of file qlist.h.

References d.

◆ append() [3/5]

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

Definition at line 441 of file qlist.h.

References QList< T >::emplaceBack().

Referenced by BackendSupport::BackendSupport(), QQuickTextNodeEngine::BinaryTreeNode::BinaryTreeNode(), QV4::Function::Function(), QConfFileSettingsPrivate::QConfFileSettingsPrivate(), QConfFileSettingsPrivate::QConfFileSettingsPrivate(), QEGLPlatformContext::QEGLPlatformContext(), QFFmpegMediaFormatInfo::QFFmpegMediaFormatInfo(), QFontEngine::QFontEngine(), QGeoRouteRequest::QGeoRouteRequest(), QIconTheme::QIconTheme(), QList< T >::QList(), QOpenSLESDeviceInfo::QOpenSLESDeviceInfo(), QOscBundle::QOscBundle(), QOscMessage::QOscMessage(), QPlaceManagerEngineNokiaV2::QPlaceManagerEngineNokiaV2(), QPulseAudioDeviceInfo::QPulseAudioDeviceInfo(), QQnxButtonEventNotifier::QQnxButtonEventNotifier(), QSQLiteResult::QSQLiteResult(), QVsp2BlendingDevice::QVsp2BlendingDevice(), QWasmAudioDevice::QWasmAudioDevice(), QtWaylandClient::QWaylandBrcmGLContext::QWaylandBrcmGLContext(), QWindowsAudioDeviceInfo::QWindowsAudioDeviceInfo(), QWindowsFileSystemWatcherEngineThread::QWindowsFileSystemWatcherEngineThread(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWinSettingsPrivate::QWinSettingsPrivate(), QWinSettingsPrivate::QWinSettingsPrivate(), TableModel::TableModel(), QQuickPixmapReader::~QQuickPixmapReader(), QMenuPrivate::_q_actionTriggered(), QFileDialogPrivate::_q_autoCompleteFileName(), QFileSystemModelPrivate::_q_fileSystemChanged(), QItemSelectionModelPrivate::_q_rowsAboutToBeRemoved(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutAboutToBeChanged(), QSortFilterProxyModelPrivate::_q_sourceDataChanged(), QSequentialAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QHostInfoLookupManager::abortLookup(), CPP::WriteInitialization::acceptLayout(), QMetalGraphicsPipelineData::ExtraBufferManager::acquireWorkBuffer(), QGestureEvent::activeGestures(), HciManager::activeLowEnergyConnections(), QGeoAreaMonitorPolling::activeMonitors(), QGridLayoutPrivate::add(), QGridLayoutPrivate::add(), QQmlTypeModule::add(), QV4::Compiler::Codegen::VolatileMemoryLocations::add(), Vsp2HardwareLayerIntegration::add(), QQmlJS::Dom::DomEnvironment::addAllLoadedCallback(), QGraphicsAnchorLayoutPrivate::addAnchorMaybeParallel(), QEglFSKmsVsp2Screen::addBlendListener(), QQuickTextNodeEngine::addBorder(), QPdfEnginePrivate::addBrushPattern(), QMessageDialogOptions::addButton(), QDialogButtonBoxPrivate::addButton(), QGraphicsItemPrivate::addChild(), QQuick3DObjectPrivate::addChild(), QQuickItemPrivate::addChild(), QSvgStructureNode::addChild(), QIOPipePrivate::addChildPipe(), QWaylandCompositorPrivate::addClient(), QQmlJS::Engine::addComment(), QPdfEnginePrivate::addConstantAlphaObject(), QGeoPathPrivate::addCoordinate(), QGeoPathPrivateEager::addCoordinate(), QGeoPolygonPrivateEager::addCoordinate(), QFileDialogPrivate::addDefaultSuffixToUrls(), QQmlDataBlob::addDependency(), QAlphaPaintEnginePrivate::addDirtyRect(), QDockAreaLayout::addDockWidget(), ProxyTranslator::addEngine(), QQmlPreviewHandler::addEngine(), QQuickState::addEntriesToRevertList(), QZipWriterPrivate::addEntry(), QDeclarativeGeoRouteQuery::addExcludedArea(), QWaylandObject::addExtension(), QPixmapIconEngine::addFile(), JsonOutput::addFile(), QQuickTextNodeEngine::addFrameDecorations(), QFutureSynchronizer< T >::addFuture(), QMimeAllGlobPatterns::addGlob(), QQmlProfilerServiceImpl::addGlobalProfiler(), QFontSubset::addGlyph(), QQuickTextNode::addImage(), QImagePixmapCleanupHooks::addImageHook(), QQmlTypeCompiler::addImport(), Parser::addIncludeDirs(), QtBluezPeripheralService::addIncludedService(), QQuick3DParticleInstanceTable::addInstance(), QMediaTimeRangePrivate::addInterval(), QQuickViewTestUtils::QaimModel::addItem(), CardLayout::addItem(), QQuickLabsPlatformMenuItemGroup::addItem(), QQuickViewTestUtils::QaimModel::addItems(), addLexToken(), QGeoCodeReply::addLocation(), QMimeXMLProvider::addMagicMatcher(), QDeclarativeGeoMap::addMapItem_real(), QDeclarativeGeoMap::addMapItemGroup_real(), QDeclarativeGeoMap::addMapItemView_real(), addOpaqueDepthPrePassBindings(), 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(), QQuickTextNode::addTextDocument(), QGeoTiledMapScenePrivate::addTile(), QBluetoothSocketPrivateWinRT::addToPendingData(), addToPropertyNameListIfNotBlackListed(), QEvdevTouchScreenData::addTouchPoint(), QQuickMultiPointTouchArea::addTouchPoint(), QQuickMultiPointTouchArea::addTouchPoint(), QWaylandSurfacePrivate::addUninitializedSurface(), QUrlModel::addUrls(), QQmlJSMetaEnum::addValue(), QT_BEGIN_NAMESPACE::VertexBufferDataExt::addVertexAttributeData(), QWaylandOutputPrivate::addView(), QFileSystemModelPrivate::addVisibleFiles(), QQuickGridViewPrivate::addVisibleItems(), QQuickListViewPrivate::addVisibleItems(), QOpenGLCompositor::addWindow(), QBluetoothLocalDevice::allDevices(), QQuickDesignerSupportProperties::allPropertyNames(), allSubObjects(), QList< T >::append(), QSqlRecord::append(), QSqlIndex::append(), QIndexMapper::append(), QCborContainerPrivate::append(), QCborContainerPrivate::append(), QCborContainerPrivate::append(), QWindowSystemInterfacePrivate::WindowSystemEventList::append(), QCborContainerPrivate::appendAsciiString(), QMdiAreaPrivate::appendChild(), QPlace::appendContactDetail(), QQuick3DParticleEmitter::appendEmitBurst(), QGraphicsItemPrivate::appendGraphicsTransform(), QHttpHeaderParser::appendHeaderField(), QQmlContextPrivate::appendInstance(), QQmlPropertyCache::appendMethod(), QQuick3DParticleAffector::appendParticle(), QQmlPropertyCache::appendProperty(), QQmlContextPrivate::appendPropertyValue(), QNdefFilter::appendRecord(), QQmlXmlListModel::appendRole(), appendSeparator(), QQmlPropertyCache::appendSignal(), QSvgNode::appendStyleProperty(), QQmlJS::Dom::appendUpdatableElementInQList(), appendZIntersects(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QQmlJS::Dom::ModuleIndex::autoExports(), QWindowsPrintDevice::availablePrintDeviceIds(), QCupsPrinterSupport::availablePrintDeviceIds(), QCocoaPrinterSupport::availablePrintDeviceIds(), QPrinterInfo::availablePrinters(), availableRevisions(), QSqlResult::bindValue(), QOCIResultPrivate::bindValue(), QQmlJSImportVisitor::breakInheritanceCycles(), buildMetaObject(), QQmlPropertyCacheCreator< ObjectContainer >::buildMetaObjectRecursively(), QWaylandInputMethodEventBuilder::buildPreedit(), QTreeViewPrivate::calcLogicalIndices(), QGeoRoutingManagerEngineNokia::calculateRoute(), AndroidCameraPrivate::callParametersStringListMethod(), QQuickPixmapReader::cancel(), QGestureEvent::canceledGestures(), QDeclarativeSearchResultModel::categories_append(), QDeclarativePlace::category_append(), QDeclarativePlace::category_clear(), QTextMarkdownImporter::cbText(), QLowEnergyService::characteristics(), QPlaceManagerEngineNokiaV2::childCategories(), QQmlDelegateChooser::choices_append(), QEglConfigChooser::chooseConfig(), QTlsPrivate::ciphersByName(), QQuickWindowPrivate::cleanup(), QQuick3DSceneManager::cleanup(), QPainterPath::clear(), QPdfPageNavigator::clear(), QQmlListCompositor::clearFlags(), WorkspaceHandlers::clientInitialized(), QCupsPrintEnginePrivate::closePrintDevice(), QmlLsp::codeActionHandler(), codesignBundle(), QmlTypesClassDescription::collect(), collectExtraVersions(), QmlJSDebugger::collectItemsAt(), QV4DataCollector::collectScope(), QTableModel::columnItems(), QAbstractItemModelPrivate::columnsAboutToBeInserted(), QAbstractItemModelPrivate::columnsAboutToBeRemoved(), QOpenGLShaderProgramPrivate::compileCacheable(), QWaylandCompositorPrivate::compositor_create_surface(), QBluetoothLocalDevice::connectedDevices(), Graph< Vertex, EdgeData >::connections(), QFutureInterfaceBasePrivate::connectOutputInterface(), convertPath(), QRhiVulkan::create(), createDeviceInfoFromBluez5Device(), QQnxIntegration::createDisplay(), QT_BEGIN_NAMESPACE::VertexBufferDataExt::createEntries(), QGraphicsAnchorLayoutPrivate::createItemEdges(), QGraphicsScene::createItemGroup(), QTextLayout::createLine(), QDomNodeListPrivate::createList(), QTextFormatCollection::createObjectIndex(), QGuiApplicationPrivate::createPlatformIntegration(), QKmsDevice::createScreens(), createSequence(), QQuickContext2DTexture::createTiles(), D3DPresentEngine::createVideoSamples(), QTlsPrivate::cryptoSettingsForCiphers(), QQuickPackagePrivate::data_append(), QtWayland::DataSource::data_source_offer(), QQmlProfilerServiceImpl::dataReady(), QAbstractItemModel::decodeData(), QTlsPrivate::defaultCiphers(), deployQtFrameworks(), deployQtFrameworks(), deployTranslations(), QIBusAttributeList::deserializeFrom(), QBluetoothLocalDevicePrivate::deviceConnected(), QmlLsp::QmlLintSuggestions::diagnose(), QKmsDevice::discoverPlanes(), QLowEnergyControllerPrivateBluezDBus::discoverServiceDetails(), QApplicationPrivate::dispatchEnterLeave(), QGraphicsScenePrivate::dispatchHoverEvent(), QIconModeViewBase::doBatchedItemLayout(), QBluetoothSocket::doDeviceDiscovery(), QSSGSceneDesc::PropertyList< Class, T, List >::doSet(), QWidgetLineControl::draw(), QTextDocumentLayoutPrivate::drawBlock(), QQC2_NAMESPACE::QMacStyle::drawComplexControl(), QMacStyle::drawComplexControl(), QTextDocumentLayoutPrivate::drawFrame(), QAlphaPaintEngine::drawPolygon(), QPdfEnginePrivate::drawTextItem(), QTreeView::drawTree(), QXcbDrag::drop(), QAbstractTableModel::dropMimeData(), QAbstractListModel::dropMimeData(), QStandardItemModel::dropMimeData(), QQuickTextPrivate::elideFormats(), QTlsPrivate::TlsCryptographOpenSSL::emitErrorFromCallback(), QItemSelectionModel::emitSelectionChanged(), QQmlEngineDebugServiceImpl::engineAboutToBeAdded(), QQmlEngineControlServiceImpl::engineAboutToBeAdded(), QQmlNativeDebugServiceImpl::engineAboutToBeAdded(), QQmlConfigurableDebugService< Base >::engineAboutToBeAdded(), QQmlEngineControlServiceImpl::engineAboutToBeRemoved(), QQmlProfilerServiceImpl::engineAboutToBeRemoved(), QQueue< T >::enqueue(), QQuickDeliveryAgentPrivate::ensureDeviceConnected(), QTableModel::ensureSorted(), QDir::entryInfoList(), QDir::entryList(), QWindowsOleDataObject::EnumFormatEtc(), QQmlTypeLoaderQmldirContent::errors(), QDB2Result::exec(), QMYSQLResult::exec(), QOCICols::execBatch(), QQmlJS::Dom::DomUniverse::execQueue(), exitOrdinal(), QQmlTreeModelToTableModel::expandRow(), QQmlJS::Dom::ModuleIndex::exportsWithNameAndMinorVersion(), DarwinBluetooth::extract_attribute_value(), DarwinBluetooth::extract_services_uuids(), QDeclarativeGeoRouteQuery::featureTypes(), QTlsPrivate::fetchSslCertificateData(), QGeoFileTileCacheMapbox::filenameToTileSpec(), QGeoFileTileCacheNokia::filenameToTileSpec(), QGeoFileTileCacheOsm::filenameToTileSpec(), QGeoFileTileCache::filenameToTileSpecDefault(), QV4::Moth::BytecodeGenerator::finalize(), findAdapterForAddress(), findCompositeSingletons(), QFontDatabasePrivate::findFont(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QQuickVisualTestUtils::findItems(), findMinGWRuntimePaths(), findTextureWidgetsRecursively(), QTextDocumentPrivate::finishEdit(), QDeclarativeGeoMap::fitViewportToMapItems(), QSSGMesh::Mesh::fromAssetData(), QWindowSystemInterfacePrivate::fromNativeTouchPoints(), QShader::fromSerialized(), QPageRanges::fromString(), QUrl::fromStringList(), QQmlJSBasicBlocks::generate_DefineArray(), QQmlJSBasicBlocks::generate_DefineObjectLiteral(), QDebugDrawHelper::generateCapsuleGeometry(), generateGlyphTables(), AssimpUtils::generateMeshData(), QT_BEGIN_NAMESPACE::generateMeshLevelsOfDetail(), generateName(), QDebugDrawHelper::generateSphereGeometry(), QGraphicsScenePrivate::gestureEventHandler(), getCodecsList(), getFamiliesAndSignatures(), AndroidCameraPrivate::getFocusAreas(), QQuickPixmapReader::getImage(), getImageFormatList(), getLinks_helper(), QGstreamerFormatInfo::getMuxerList(), QWidgetTextControl::getPaintContext(), QAbstractFileIconProviderPrivate::getPlatformThemeIcon(), getQtFrameworks(), QLocationUtils::getSatInfoFromNmea(), getSharedParentNode(), QSSGLayerRenderData::getSortedTransparentRenderableObjects(), AndroidCameraPrivate::getSupportedPictureSizes(), AndroidCameraPrivate::getSupportedPreviewFormats(), AndroidCameraPrivate::getSupportedPreviewSizes(), AndroidCameraPrivate::getSupportedVideoSizes(), AndroidCameraPrivate::getZoomRatios(), glyphRunWithInfo(), QCocoaScreen::grabWindow(), QSortFilterProxyModelPrivate::handle_filter_changed(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::handleActivityResult(), QXcbDrag::handleEnter(), QAndroidInputContext::handleLocationChanged(), QMenuBarPrivate::handleReparent(), QWindowSystemInterface::handleScreenAdded(), AndroidContentFileEngineIterator::hasNext(), importArrayOfPositions(), importFeatureCollection(), QGeoJson::importGeoJson(), importGeometryCollection(), QQmlJSImporter::importModule(), importMultiLineString(), importMultiPoint(), importMultiPolygon(), QQmlImportDatabase::importPathList(), QTlsPrivate::X509CertificateSchannel::importPkcs12(), QQmlJSImporter::importQmldirs(), QWizardPrivate::init(), QQmlTypePrivate::init(), init_platform(), init_plugins(), QDirPrivate::initFileLists(), SamplePool::initialize(), PlaceManagerEngineEsri::initializeCategories(), QPlaceManagerEngineOsm::initializeCategories(), VDMAbstractItemModelDataType::initializeMetaType(), QQmlDelegateModelPartsMetaObject::initialValue(), QBasicPlatformVulkanInstance::initInstance(), initScreensData(), QWidgetTextControlPrivate::inputMethodEvent(), QQmlListCompositor::insert(), QBspTree::insert(), QOpenGLMultiGroupSharedResource::insert(), QGraphicsWidget::insertAction(), QWidget::insertAction(), QTreeWidgetItem::insertChildren(), QTreeModel::insertColumns(), QDockAreaLayoutInfo::insertGap(), 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::intersectWithBVH(), QSSGRenderRay::intersectWithBVHTriangles(), QAbstractItemModelPrivate::itemsAboutToBeMoved(), QQmlLSUtils::itemsFromTextLocation(), ServerAcceptanceThread::javaNewSocket(), QPdfPageNavigator::jump(), QPdfPageNavigator::jump(), QCocoaTheme::keyBindings(), QStyleFactory::keys(), QAbstractItemModelTesterPrivate::layoutAboutToBeChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutTable(), QTextFormat::lengthVectorProperty(), QBluetoothServer::listen(), QQmlListCompositor::listItemsChanged(), QQmlListCompositor::listItemsInserted(), QQmlListCompositor::listItemsMoved(), QQmlListCompositor::listItemsRemoved(), QResourcePrivate::load(), QV4::Document::load(), QWaylandCompositorPrivate::loadClientBufferIntegration(), QPpdPrintDevice::loadColorModes(), QCocoaPrintDevice::loadColorModes(), QWindowsPrintDevice::loadColorModes(), QQmlTypeLoader::Blob::loadDependentImports(), 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(), QGeoFileTileCache::loadTiles(), QQuickItemPrivate::localizedTouchEvent(), QAndroidInputContext::longPress(), QHostInfoAgent::lookup(), QHostInfoLookupManager::lookupFinished(), Preprocessor::macroExpandIdentifier(), main(), makePlugins(), QWaylandWlShell::mappedPopups(), QIdentityProxyModel::mapSelectionFromSource(), QIdentityProxyModel::mapSelectionToSource(), QIdentityProxyModel::match(), QPainterPathPrivate::maybeMoveTo(), QItemSelection::merge(), mergeIndexes(), QQuickTextNodeEngine::mergeProcessedNodes(), QFactoryLoader::metaData(), QQuickJSContext2DPrototype::method_setLineDash(), QQmlJSScope::methods(), QQmlJSScope::methods(), QXcbMime::mimeAtomsForFormat(), QXcbMime::mimeConvertToFormat(), QConcatenateTablesProxyModel::mimeData(), QUrlModel::mimeData(), QMimeDatabase::mimeTypesForFileName(), QPlatformScreen::modes(), QEglFSKmsScreen::modes(), QQmlListCompositor::move(), QQmlTableModel::moveRow(), QOpenGLCompositor::moveToTop(), QSqlResultPrivate::namedToPositionalBinding(), QTextHtmlParser::newNode(), QPdfEnginePrivate::newPage(), VDMAbstractItemModelDataType::notify(), QApplication::notify(), QApplicationPrivate::openPopup(), QQuickStatePrivate::operations_append(), QList< T >::operator+=(), QList< T >::operator+=(), QList< T >::operator+=(), QList< T >::operator+=(), QDBusMessage::operator<<(), QDBusSnippets::operator>>(), operator>>(), QQmlJSScope::ownPropertyBindingsInQmlIROrder(), QPlainTextEdit::paintEvent(), QQuickStyledTextPrivate::parse(), QEdidParser::parse(), QTextHtmlParser::parse(), QMimeTypeParserBase::parse(), parseAnimateTransformNode(), QQmlJSImportVisitor::parseAnnotations(), parseArgs(), parseBrushValue(), parseCategories(), parseContactDetails(), QSvgHandler::parseCSStoXMLAttrs(), Moc::parseDeclareMetatype(), QT_BEGIN_NAMESPACE::parseDocument(), QQuickStackViewPrivate::parseElements(), QDateTimeParser::parseFormat(), QCss::Parser::parseFunction(), QQuickStyledTextPrivate::parseImageAttributes(), Parser::parseMetadata(), Moc::parseMocInclude(), parseNumberTriplet(), Moc::parsePluginData(), parseReadByTypeIncludeDiscovery(), QGeoRouteParserOsrmV5Private::parseReply(), QGeoRouteParserOsrmV4Private::parseReply(), LocationSingleton::path(), QHttpNetworkConnectionChannel::pipelineInto(), QDeclarativePlace::place(), QMdiAreaPrivate::place(), QQmlPluginImporter::plugins(), QSGTextMaskMaterial::populate(), populateFromCbor(), QPrintPreviewWidgetPrivate::populateScene(), QTextDocumentLayoutPrivate::positionFloat(), QWaitConditionPrivate::post(), QV4::Script::precompile(), QWaylandCompositorPrivate::preInit(), QWidgetPrivate::prepareToRender(), QQmlFindUsagesSupport::process(), QmlGoToDefinitionSupport::process(), QmlGoToTypeDefinitionSupport::process(), QPulseAudioSink::processedUSecs(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), QGeoPositionInfoSourceAndroid::processSinglePositionUpdate(), QQmlJSScope::propertyBindings(), QQmlPropertyCacheCreator< ObjectContainer >::propertyCacheForObject(), propertyNameListForWritableProperties(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items_to_add(), QStack< T >::push(), QList< T >::push_back(), QList< T >::push_back(), q_createConfigAttributesFromFormat(), Q_GLOBAL_STATIC_WITH_ARGS(), qDBusParametersForMethod(), qDBusParametersForMethod(), QTest::qExec(), qFindInlineComponents(), qlocationutils_readGsa(), QQmlPrivate::qmlregister(), QQmlMetaType::qmlSingletonTypes(), qQmlProfilerDataToByteArrays(), QQuick3DProfilerDataToByteArrays(), qQuickProfilerDataToByteArrays(), qRegisterResourceData(), qt_mac_scale_region(), qt_qFindChildren_helper(), qt_qFindChildren_with_name(), QT_BEGIN_NAMESPACE::qt_servicesUuids(), qtValue(), QDeclarativeGeoMapItemBase::quickChildren(), QHeaderViewPrivate::read(), 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(), readDependenciesFromElf(), QLowEnergyControllerPrivateBluezDBus::readDescriptor(), QSSGMesh::MeshInternal::readMeshData(), QMdiAreaPrivate::rearrange(), QQmlProfilerAdapter::receiveData(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QShortcutPrivate::redoGrab(), QWaylandSurfacePrivate::refView(), QInternal::registerCallback(), QGeoAreaMonitorPollingPrivate::registerClient(), QSettings::registerFormat(), WorkspaceHandlers::registerHandlers(), QWindowsMimeRegistry::registerMime(), QResource::registerResource(), QResource::registerResource(), QGraphicsScenePrivate::registerTopLevelItem(), QmlTypeAndRevisionsRegistration< T, Resolved, void, false, true, false, false >::registerTypeAndRevisions(), QQmlDelegateModelPrivate::releaseIncubator(), QSortFilterProxyModel::removeColumns(), QSortFilterProxyModel::removeRows(), QSGOpenVGInternalRectangleNode::render(), QSGRhiDistanceFieldGlyphCache::requestGlyphs(), QSslSocketPrivate::resetDefaultEllipticCurves(), QEglFSKmsGbmWindow::resetSurface(), QHeaderViewPrivate::resizeSections(), QQmlImports::resolvedScripts(), QTextHtmlParser::resolveParent(), QQmlImportInstance::resolveType(), QToolBarAreaLayout::restoreState(), QDockAreaLayoutInfo::restoreState(), QFileDialogPrivate::restoreWidgetState(), QMacPasteboard::retrieveData(), QXcbClipboardMime::retrieveData_sys(), SamplePool::returnSample(), QSSGCustomMaterialSystem::rhiPrepareRenderable(), QQmlXmlListModel::roleObjects(), QAbstractItemModelPrivate::rowsAboutToBeInserted(), QAbstractItemModelPrivate::rowsAboutToBeRemoved(), 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(), AndroidPositioning::satelliteInfoFromJavaGnssStatus(), AndroidPositioning::satelliteInfoFromJavaLocation(), QGeoSatelliteInfoSourceGypsy::satellitesChanged(), QSvgPaintEngine::saveGradientStops(), QSplitter::saveState(), QCss::Scanner::scan(), QZipReaderPrivate::scanFiles(), scanImports(), QBsdFbIntegration::screens(), QIntegrityFbIntegration::screens(), QLinuxFbIntegration::screens(), QVncIntegration::screens(), QTreeViewPrivate::select(), QAbstractItemViewPrivate::selectAll(), QListViewPrivate::selectAll(), QItemSelectionModel::selectedColumns(), QTableView::selectedIndexes(), QTreeView::selectedIndexes(), QListWidget::selectedItems(), QTableWidget::selectedItems(), QTreeWidget::selectedItems(), QItemSelectionModel::selectedRows(), QFileDialog::selectedUrls(), QQmlTreeModelToTableModel::selectionForRowRange(), QWaylandXdgToplevel::sendFullscreen(), QWaylandXdgToplevel::sendMaximized(), QV4DebugClientPrivate::sendMessage(), QV4ProfilerAdapter::sendMessages(), QWaylandXdgToplevel::sendResizing(), QQmlDebugTranslationServicePrivate::sendStateList(), QQmlDebugTranslationServicePrivate::sendTranslatableTextOccurrences(), QQmlDebugTranslationServicePrivate::sendTranslationIssues(), TestHTTPServer::serveDirectory(), QBluetoothServiceInfo::serviceClassUuids(), ListModel::set(), QApplicationPrivate::setActiveWindow(), QQuickAttachedPropertyPropagatorPrivate::setAttachedParent(), QTreeModel::setColumnCount(), QOffscreenIntegration::setConfiguration(), QQmlTableModel::setData(), QTreeWidgetItem::setData(), QListWidgetItem::setData(), QOpenGLShaderProgram::setDefaultInnerTessellationLevels(), QOpenGLShaderProgram::setDefaultOuterTessellationLevels(), QQmlDataBlob::setError(), QQmlListCompositor::setFlags(), QSGDistanceFieldGlyphCache::setGlyphsPosition(), QSGDistanceFieldGlyphCache::setGlyphsTexture(), QSGOpenVGInternalRectangleNode::setGradientStops(), QSGSoftwareInternalRectangleNode::setGradientStops(), QHttpHeaderParser::setHeaderField(), QFileDialogComboBox::setHistory(), QNdefNfcSmartPosterRecord::setIcons(), QFormLayoutPrivate::setItem(), QQuick3DRenderStatsMeshesModel::setMeshData(), QMacPasteboard::setMimeData(), ViewportTransformHelper::setOnDeliveryAgent(), QObjectPrivate::setParent_helper(), QQuick3DRenderStatsPassesModel::setPassData(), QQuickPathPolyline::setPath(), QQuickPathMultiline::setPaths(), QMessagePattern::setPattern(), QUrlQueryPrivate::setQuery(), QPlaceMatchRequest::setResults(), QSSGMaterialShaderGenerator::setRhiMaterialProperties(), QTableView::setSelection(), QAndroidInputContext::setSelection(), QPlatformInputContext::setSelectionOnFocusObject(), QQuick3DModel::setSource(), QCoreGraphicsPaintEnginePrivate::setStrokePen(), QTextBlockFormat::setTabPositions(), QQuick3DRenderStatsTexturesModel::setTextureData(), QNdefNfcSmartPosterRecord::setTitles(), QXcbWindow::setWmWindowType(), QWaylandWlShellPrivate::shell_get_shell_surface(), QWaylandWlShell::shellSurfacesForClient(), QtAndroidMenu::showContextMenu(), MainWindow::showList(), QQmlTreeModelToTableModel::showModelChildItems(), QFileDialogComboBox::showPopup(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QGraphicsAnchorLayoutPrivate::simplifyVertices(), QHttpMultiPartIODevice::size(), QOpenGLFramebufferObject::sizes(), QSplitter::sizes(), sm_setProperty(), QListModel::sort(), QTableModel::sort(), QStringListModel::sort(), QFileSystemModel::sort(), QFileSystemModelPrivate::sortChildren(), QStandardItemPrivate::sortChildren(), QDirPrivate::sortFileList(), QSortFilterProxyModelPrivate::source_items_about_to_be_removed(), QSortFilterProxyModelPrivate::source_items_inserted(), QByteArray::split(), QDockAreaLayoutInfo::split(), QAnyStringViewUtils::split(), QGeoCameraTilesPrivate::splitPolygonAtAxisValue(), splitSpaceSemicolon(), QV4::ExecutionEngine::stackTrace(), QXcbDrag::startDrag(), QSvgHandler::startElement(), startQtAndroidPlugin(), QQuickDesignerSupport::statesForItem(), QPdfPage::streamImage(), QSettingsPrivate::stringListToVariantList(), QQmlJS::Dom::QmlComponent::subComponentsNames(), QWaylandCompositorPrivate::subcompositor_get_subsurface(), QMdiAreaPrivate::subWindowList(), QImageReaderWriterHelpers::supportedMimeTypes(), QRhiGles2::supportedSampleCounts(), QRawFont::supportedWritingSystems(), QWizardPrivate::switchToPage(), QTlsPrivate::systemCaCertificates(), QTextOption::tabArray(), QTextBlockFormat::tabPositions(), QStandardItem::takeRow(), QtWaylandClient::QWaylandTextInputMethod::text_input_method_v1_input_method_event_attribute(), QGeoCameraTilesPrivate::tileIntersections(), FunctionDef::toJson(), QXkbCommon::toKeysym(), QWindowSystemInterfacePrivate::toNativeTouchPoints(), QFontSubset::toTruetype(), QtWayland::TouchExtensionGlobal::touch_extension_bind_resource(), QtWaylandClient::QWaylandTouchExtension::touch_extension_touch(), QCborArray::toVariantList(), QMediaPlayerPrivate::trackMetaData(), QQmlListCompositor::transition(), QTimeZonePrivate::transitions(), QWindowsTabletSupport::translateTabletProximityEvent(), QQmlJSUtils::traverseFollowingMetaObjectHierarchy(), QQmlJSUtils::traverseFollowingQmlIrObjectStructure(), QLocale::uiLanguages(), uniqueRevisions(), QSGDistanceFieldGlyphCache::update(), QSortFilterProxyModelPrivate::updateChildrenMapping(), QMenuBarPrivate::updateGeometries(), QQuickRectangle::updatePaintNode(), QQuickTextEdit::updatePaintNode(), QQmlJS::Dom::updatePathFromOwnerMultiMap(), QGeoRoutingManagerEngineNokia::updateRoute(), QGeoMapPolylineGeometry::updateSourcePoints(), QGeoMapPolygonGeometry::updateSourcePoints(), QGeoTiledMapRootNode::updateTiles(), QQuickMultiPointTouchArea::updateTouchData(), AVFMediaPlayer::updateTracks(), QDeclarativeContactDetails::updateValue(), QMimeData::urls(), QUrlModel::urls(), QQmlPropertyPrivate::urlSequence(), QWinRegistryKey::value(), QTlsPrivate::X509CertificateOpenSSL::verify(), QQnxVideoDevices::videoDevices(), QOffscreenScreen::virtualSiblings(), QDialogButtonBoxPrivate::visibleButtons(), QQmlJS::Dom::QQmlDomAstCreator::visit(), GLSL::Semantic::visit(), QmlIR::IRBuilder::visit(), QPlatformScreen::windows(), QDeclarativeGeoMapItemUtils::wrapPath(), QDeclarativeGeoMapItemUtils::wrapPath(), QtIcoHandler::write(), QmlTypeRegistrar::write(), QTextOdfWriter::writeAll(), QLowEnergyControllerPrivateBluezDBus::writeCharacteristic(), QLowEnergyControllerPrivateBluezDBus::writeDescriptor(), writeEnumConverter(), writeEnums(), writeFlagConverter(), writeFlags(), QQmlVMEMetaObject::writeProperty(), QQmlVMEMetaObject::writeVarProperty(), QFontDatabase::writingSystems(), QtWaylandClient::QWaylandTextInputv1::zwp_text_input_v1_modifiers_map(), QtWaylandClient::QWaylandTextInputv2::zwp_text_input_v2_modifiers_map(), and QtWaylandClient::QWaylandTextInputv4::zwp_text_input_v4_done().

+ 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 829 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 443 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 506 of file qlist.h.

References 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 499 of file qlist.h.

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

Referenced by QList< T >::assign(), and Compress::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 509 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 429 of file qlist.h.

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

Referenced by QEvdevTouchScreenHandler::QEvdevTouchScreenHandler(), QSvgAttributes::QSvgAttributes(), QTextLineItemIterator::QTextLineItemIterator(), QTornOffMenu::QTornOffMenu(), QTuioHandler::QTuioHandler(), QtWaylandClient::QWaylandDataDeviceManager::QWaylandDataDeviceManager(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QtGraphicsAnchorLayout::SequentialAnchorData::SequentialAnchorData(), QFontEngineMulti::~QFontEngineMulti(), QGraphicsItem::~QGraphicsItem(), QGuiApplicationPrivate::~QGuiApplicationPrivate(), QObjectPrivate::~QObjectPrivate(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QQuickContents::~QQuickContents(), QThreadData::~QThreadData(), QTreeWidgetItem::~QTreeWidgetItem(), QWaylandSurfacePrivate::~QWaylandSurfacePrivate(), QWidgetRepaintManager::~QWidgetRepaintManager(), QWindowsFileSystemWatcherEngineThread::~QWindowsFileSystemWatcherEngineThread(), QWindowsMenu::~QWindowsMenu(), QWindowsMenuBar::~QWindowsMenuBar(), QWindowsOleEnumFmtEtc::~QWindowsOleEnumFmtEtc(), QMdiAreaPrivate::_q_closeTab(), QMdiAreaPrivate::_q_currentTabChanged(), QHttpNetworkConnectionChannel::_q_error(), QFileSystemModelPrivate::_q_fileSystemChanged(), QPrintPreviewWidgetPrivate::_q_fit(), QMenuBarPrivate::_q_internalShortcutActivated(), QGraphicsScenePrivate::_q_polishItems(), QHttpNetworkConnectionChannel::_q_preSharedKeyAuthenticationRequired(), QObjectPrivate::_q_reregisterTimers(), QHeaderViewPrivate::_q_sectionsRemoved(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutChanged(), QSortFilterProxyModelPrivate::_q_sourceHeaderDataChanged(), QIdentityProxyModelPrivate::_q_sourceLayoutChanged(), QHttpNetworkConnectionChannel::_q_sslErrors(), QAbstractSocketPrivate::_q_startConnecting(), QWizardPrivate::_q_updateButtonStates(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QFontComboBoxPrivate::_q_updateModel(), QGraphicsSceneBspTreeIndexPrivate::_q_updateSortCache(), QHostInfoLookupManager::abortLookup(), TreeWalker::acceptActionGroup(), TreeWalker::acceptConnectionHints(), TreeWalker::acceptConnections(), TreeWalker::acceptCustomWidgets(), TreeWalker::acceptIncludes(), TreeWalker::acceptSpacer(), QQuickSplitViewPrivate::accumulatedSize(), QMenuPrivate::actionAt(), QMenuBarPrivate::actionAt(), QMenuBarPrivate::actionRect(), QWidgetPrivate::activateChildLayoutsRecursively(), QMdiAreaPrivate::activateHighlightedWindow(), QQmlTypeModule::add(), QGraphicsWidget::addActions(), QWidget::addActions(), QWindowsFontDatabase::addApplicationFont(), QDialogButtonBoxPrivate::addButtonsToLayout(), QSplitterPrivate::addContribution(), QPixmapIconEngine::addFile(), QQuickTextNodeEngine::addGlyphsInRange(), QQmlTypeCompiler::addImport(), QGraphicsSceneBspTreeIndexPrivate::addItem(), QPainterPath::addText(), QQuickTextNodeEngine::addTextBlock(), QGraphicsItemGroup::addToGroup(), QQuickTextNodeEngine::addToSceneGraph(), QWaylandOutputPrivate::addView(), QFbScreen::addWindow(), QTextCursorPrivate::adjustCursor(), QDialog::adjustPosition(), QTreeViewPrivate::adjustViewOptionsForIndex(), QQuickStochasticEngine::advance(), QQuickSpriteEngine::advance(), QQuickTimeLinePrivate::advance(), QSequentialAnimationGroupPrivate::advanceForwards(), QCommandLineParserPrivate::aliases(), QWindowsMimeRegistry::allFormatsForMime(), QImage::allGray(), QWindowsMimeRegistry::allMimesForFormats(), QQmlJS::FixedPoolArray< T >::allocate(), QUrlQuery::allQueryItemValues(), allSubObjects(), QSequentialAnimationGroupPrivate::animationActualTotalDuration(), QSGThreadedRenderLoop::animationStarted(), QIconModeViewBase::appendHiddenRow(), QImageReaderWriterHelpers::appendImagePluginMimeTypes(), QQmlPropertyCache::appendMethod(), QToolBarAreaLayout::apply(), QQuickState::apply(), applyCursor(), QSyntaxHighlighterPrivate::applyFormatChanges(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QAndroidCameraSession::applyResolution(), applyWindowCursor(), QFormLayoutPrivate::arrangeWidgets(), QTextInlineObject::ascent(), QTextLine::ascent(), QTextHtmlParser::at(), QQmlListAccessor::at(), QTextEngine::attributes(), bindFont(), QTextLayout::boundingRect(), buildMetaObject(), QDialogButtonBox::buttonRole(), QCborContainerPrivate::byteArrayAt(), QCborContainerPrivate::byteData(), QMenuBarPrivate::calcActionRects(), QBoxLayoutPrivate::calcHfw(), QTreeViewPrivate::calcLogicalIndices(), QTextTableData::calcRowPosition(), QFormLayoutPrivate::calcSizeHints(), QGridLayoutRowData::calculateGeometries(), QGraphicsAnchorLayoutPrivate::calculateNonTrunk(), calculatePosixDate(), calculatePosixTransitions(), QtGraphicsAnchorLayout::SequentialAnchorData::calculateSizeHints(), QTextEngine::calculateTabWidth(), QGraphicsAnchorLayoutPrivate::calculateVertexPositions(), QJSValue::call(), QJSValue::callAsConstructor(), QuickTestUtil::callerFile(), QuickTestUtil::callerLine(), QJSValue::callWithInstance(), QGeoMappingManagerEngine::cameraCapabilities(), QSortFilterProxyModelPrivate::can_create_mapping(), QRegularExpressionMatch::capturedEnd(), QRegularExpressionMatch::capturedStart(), QDeclarativeSearchResultModel::category_at(), QTextTableData::cellRect(), QGridLayoutPrivate::cellRect(), QTextTableData::cellWidth(), QKeyMapper::changeKeyboard(), QAbstractItemModel::changePersistentIndexList(), QT_BEGIN_NAMESPACE::channel_or_psm(), QLowEnergyControllerPrivate::characteristicForHandle(), checkGrayscale(), Moc::checkProperties(), QQmlJSImportVisitor::checkRequiredProperties(), Moc::checkSuperClasses(), QQuickItemViewPrivate::checkVisible(), QUndoCommand::child(), QQuickItem::childAt(), QWidgetPrivate::childAtRecursiveHelper(), QStandardItemPrivate::childIndex(), QGraphicsItemPrivate::childrenBoundingRectHelper(), QQmlDelegateChooser::choices_at(), QEglConfigChooser::chooseConfig(), QQuickWindowPrivate::cleanupNodes(), QResourcePrivate::clear(), QGraphicsSceneIndex::clear(), QListModel::clear(), QTableModel::clear(), QTreeModel::clear(), QToolBar::clear(), QConfFileSettingsPrivate::clear(), QAnimationGroupPrivate::clear(), QTableModel::clearContents(), QListModel::clearItemData(), QTreeModel::clearItemData(), QDeclarativeGeoMap::clearMapItems(), QAbstractItemViewPrivate::clearOrRemove(), QQuickBasePositioner::clearPositionedItems(), QTextDocumentPrivate::clearUndoRedoStacks(), QGraphicsSceneBspTreeIndexPrivate::climbTree(), QZipWriter::close(), QPainterPathPrivate::close(), QCupsPrintEnginePrivate::closePrintDevice(), closestMatch(), QTreeViewPrivate::collapse(), QSplitterPrivate::collapsible(), QmlJSDebugger::collectItemsAt(), QV4DataCollector::collectScope(), QImage::color(), QXcbColormap::colorAt(), QGridLayoutPrivate::colSpacing(), QGridLayoutPrivate::colStretch(), QTextTableCell::column(), QConcatenateTablesProxyModelPrivate::columnCountAfterChange(), QTreeViewPrivate::columnRanges(), QStandardItemModelPrivate::columnsRemoved(), compareContainer(), QCborContainerPrivate::compareElement(), QQuickContents::complete(), QQuickStatePrivate::complete(), computeBBox(), QGraphicsItemPrivate::TransformData::computedFullTransform(), QJsonValueConstRef::concreteString(), QMetaObject::connectSlotsByName(), QGraphicsAnchorLayoutPrivate::constraintsFromPaths(), QCborContainerPrivate::containerAt(), contextFactory(), convert_Mono_to_X32(), convert_RGB_to_Indexed8(), QWindowsMimeRegistry::converterFromMime(), QWindowsMimeRegistry::converterToMime(), QMacMimeFileUri::convertFromMime(), QMacMimeUrl::convertFromMime(), convertIndexedTo(), convertIndexedToARGB32PM(), convertPath(), QWindowsMimeURI::convertToMime(), QGeoPathPrivate::coordinateAt(), QDockWidgetLayout::count(), QOpenGLTimeMonitorPrivate::create(), QWindowPrivate::create(), QSortFilterProxyModelPrivate::create_mapping_recursive(), QGraphicsScene::createItemGroup(), QTextLayout::createLine(), QQuickPath::createPath(), QtObject::createQmlObject(), QWidgetPrivate::createRecursively(), QKmsDevice::createScreenForConnector(), QLocale::createSeparatedList(), createSequence(), QSslContext::createSsl(), QFontSubset::createToUnicodeMap(), 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(), QCss::StyleSelector::declarationsForNode(), QAbstractItemModel::decodeData(), QKeySequencePrivate::decodeString(), QCocoaPrintDevice::defaultResolution(), QQmlData::deferData(), QQmlDelegateChooser::delegate(), QObjectPrivate::deleteChildren(), QQuickDeliveryAgentPrivate::deliverHoverEventRecursive(), QQuickDeliveryAgentPrivate::deliverUpdatedPoints(), QCocoaScreen::deliverUpdateRequests(), QQmlTreeModelToTableModel::depthAtRow(), QQuick3DObjectPrivate::derefSceneManager(), QQuickItemPrivate::derefWindow(), QTextInlineObject::descent(), QTextLine::descent(), QWindowPrivate::destroy(), QOpenGLTimeMonitorPrivate::destroy(), QWidget::destroy(), QButtonGroupPrivate::detectCheckedButton(), QMessageBoxPrivate::detectEscapeButton(), QGraphicsItem::deviceTransform(), QApplicationPrivate::dispatchEnterLeave(), QGridLayoutPrivate::distribute(), distributeMultiBox(), QQuickParentAnimationData::doAction(), QRegularExpressionPrivate::doMatch(), QSplitterPrivate::doMove(), QSplitterPrivate::doResize(), QGraphicsScenePrivate::draw(), QTextLayout::draw(), QTextLayout::drawCursor(), QTextDocumentLayoutPrivate::drawFlow(), QTextDocumentLayoutPrivate::drawFrame(), QX11PaintEngine::drawPath(), QTreeView::drawRow(), QTextDocumentLayoutPrivate::drawTableCell(), QTextDocumentLayoutPrivate::drawTableCellBorder(), QTreeView::drawTree(), QAbstractTableModel::dropMimeData(), QAbstractListModel::dropMimeData(), QStandardItemModel::dropMimeData(), QQmlTreeModelToTableModel::dump(), dumpwarning(), QBoxLayoutPrivate::effectiveMargins(), QPainterPath::elementAt(), QCborContainerPrivate::elementFromValue(), QTextEngine::elidedText(), QQuick3DParticleEmitter::emitBurst(), QHttpNetworkConnectionChannel::emitFinishedWithError(), QItemSelectionModel::emitSelectionChanged(), QTextDocumentPrivate::endEditBlock(), QTextLayout::endLayout(), QResourcePrivate::ensureChildren(), QHttpNetworkConnectionChannel::ensureConnection(), QGridLayoutEngine::ensureDynamicConstraint(), QFontEngineMulti::ensureEngineAt(), QDialogButtonBoxPrivate::ensureFirstAcceptIsDefault(), QSecureTransportBackend::ensureInitialized(), QWidget::ensurePolished(), QListModel::ensureSorted(), QTableModel::ensureSorted(), QTreeModel::ensureSorted(), QGraphicsItemPrivate::ensureSortedChildren(), QDBusMessage::errorMessage(), QQmlDirParser::errors(), QCss::Parser::errorSymbol(), QGraphicsSceneBspTreeIndexPrivate::estimateItems(), QGraphicsSceneIndex::estimateTopLevelItems(), QGeoTiledMapOsm::evaluateCopyrights(), QWidget::event(), QMYSQLResult::exec(), QSQLiteResult::exec(), QOCICols::execBatch(), QTreeViewPrivate::expand(), QToolBarLayout::expandedSize(), QGridLayoutPrivate::expandingDirections(), QTreeViewPrivate::expandOrCollapseItemAtPos(), QItemSelectionModelPrivate::expandSelection(), QDockAreaLayoutInfo::expansive(), exportArrayOfPositions(), exportFeatureCollection(), QGeoJson::exportGeoJson(), exportGeometryCollection(), exportMultiLineString(), exportMultiPolygon(), QQmlJS::Dom::ModuleIndex::exportNames(), QQmlJS::Dom::ModuleIndex::exportsWithNameAndMinorVersion(), QWaylandObject::extension(), QWaylandObject::extension(), QSvgText::fastBounds(), fetchIndexedToARGB32PM(), fetchIndexedToRGBA32F(), fetchIndexedToRGBA64PM(), fetchNextNode(), QOCICols::fieldFromDefine(), QZipReader::fileData(), QConfFileSettingsPrivate::fileName(), QWinSettingsPrivate::fileName(), QGeoFileTileCacheMapbox::filenameToTileSpec(), QGeoFileTileCacheNokia::filenameToTileSpec(), QGeoFileTileCacheOsm::filenameToTileSpec(), QGeoFileTileCache::filenameToTileSpecDefault(), QImage::fill(), QOpenGL2PaintEngineExPrivate::fill(), QZipPrivate::fillFileInfo(), QX11PaintEnginePrivate::fillPath(), QSortFilterProxyModelPrivate::filter_changed(), QIBusPlatformInputContext::filterEventFinished(), QV4::Compiler::Context::findArgument(), findBySize(), QCborContainerPrivate::findCborMapKey(), QHttpNetworkReplyPrivate::findChallenge(), FileInfoThread::findChangeRange(), findChildFrame(), QTextEngine::findItem(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QGraphicsGridLayoutEngine::findLayoutItem(), QQuickGridLayoutEngine::findLayoutItem(), findNextVisibleEntry(), QUrlQueryPrivate::findRecodedKey(), QDockAreaLayoutInfo::findSeparator(), findSlot(), findTextureWidgetsRecursively(), QToolBarAreaLayout::findToolBar(), QQuickStateGroupPrivate::findTransition(), QQuickVisualTestUtils::findVisibleChild(), QSplitterPrivate::findWidget(), QSplitterPrivate::findWidgetJustBeforeOrJustAfter(), QTextDocumentLayoutPrivate::findY(), QDockAreaLayoutInfo::fitItems(), fix_color_table(), QAbstractButtonPrivate::fixFocusPolicy(), QListModel::flags(), QTextDocumentLayoutPrivate::floatMargins(), QMenuBarPrivate::focusFirstAction(), for(), forcePolishHelper(), forceUpdate(), QTextEngine::formatIndex(), QXcbDropData::formats_sys(), QTextTablePrivate::fragmentRemoved(), QV4::ExecutionEngine::fromData(), QSSGLayerRenderData::frustumCulling(), QSSGLayerRenderData::frustumCullingInline(), QDockAreaLayoutInfo::gapIndex(), QToolBarAreaLayoutInfo::gapIndex(), Generator::generateCode(), QPdf::generateDashes(), generateGlyphTables(), QmlIR::JSCodeGen::generateJSCodeForFunctionsAndBindings(), CPP::generateMultiDirectiveBegin(), QGestureEvent::gesture(), QGraphicsScenePrivate::gestureEventHandler(), QGraphicsScenePrivate::gestureTargetsAtHotSpots(), QPRand::get(), QDeclarativeGeocodeModel::get(), QDeclarativeGeoRouteModel::get(), QPRand::get(), QWaylandMimeHelper::getByteArray(), getGlyphData(), QVariantAnimationPrivate::getInterpolator(), QGridLayoutPrivate::getItemPosition(), QMenuPrivate::getLastVisibleAction(), QDBusMenuRegistrarInterface::GetMenuForWindow(), QGstreamerFormatInfo::getMuxerList(), QMenuBarPrivate::getNextAction(), QWidgetPrivate::getOpaqueChildren(), QQuick3DParticleCustomShape::getPosition(), QFontSubset::getReverseMap(), QQmlTableModel::getRow(), QLocationUtils::getSatInfoFromNmea(), QToolBarAreaLayout::getStyleOptionInfo(), QOpenGLEngineShaderManager::getUniformLocation(), QOCICols::getValues(), getVariables(), QFontEngineMulti::glyphIndex(), QTextLayout::glyphRuns(), QTextLine::glyphRuns(), QQuickStochasticEngine::goalSeek(), QCocoaScreen::grabWindow(), QQuickGradient::gradientStops(), QDeclarativeGeoMapItemUtils::greaterCirclePath(), QtAndroidPrivate::handleActivityResult(), handleCompileErrors(), QXcbDrag::handleDrop(), QXcbDrag::handleEnter(), QQuickPathViewPrivate::handleMousePressEvent(), QtAndroidPrivate::handleNewIntent(), QtAndroidPrivate::handlePause(), QQuickSplitViewPrivate::handleRelease(), QtAndroidPrivate::handleResume(), QWindowsScreenManager::handleScreenChanges(), QXcbDrag::handleSelectionRequest(), QWaylandOutputPrivate::handleWindowPixelSizeChanged(), QRegularExpressionMatch::hasCaptured(), QTableModel::headerData(), QNetworkReplyWasmImplPrivate::headersReceived(), QTextInlineObject::height(), QTextLine::height(), QWidgetPrivate::hideChildren(), QTextDocumentLayoutPrivate::hitTest(), QSqlResultPrivate::holderAt(), QGeoPolygonPrivate::holePath(), QTextLine::horizontalAdvance(), QListModeViewBase::horizontalOffset(), QListModeViewBase::horizontalScrollToValue(), QMainWindowLayout::hover(), huntAndUnregister(), QImageReaderWriterHelpers::imageFormatsForMimeType(), QIBusAttributeList::imAttributes(), importCompletions(), importFeatureCollection(), importGeometryCollection(), importMultiLineString(), importMultiPolygon(), importPolygon(), importPosition(), QTreeViewPrivate::indentationForItem(), QListModel::index(), QTableModel::index(), QTreeModel::index(), QFileSystemModel::index(), QListModel::index(), QToolBarLayout::indexOf(), ElfData::indexOf(), QSqlRecord::indexOf(), QFactoryLoader::indexOf(), QGraphicsGridLayoutEngine::indexOf(), QQuickGridLayoutEngine::indexOf(), QToolBarAreaLayout::indexOf(), QDockAreaLayoutInfo::indexOf(), indexOfHwnd(), indexOfId(), indexOfMonitor(), indexOfMonitor(), QDockAreaLayoutInfo::indexOfPlaceHolder(), indexOfWindowsId(), QListModeViewBase::indexToListViewItem(), QIconModeViewBase::indexToListViewItem(), QDockAreaLayoutInfo::info(), BezierEase::init(), QStaticTextPrivate::init(), QWaylandCompositorPrivate::init(), QQmlTypePrivate::init(), QV4::Heap::ArrayObject::init(), init_plugins(), QImageReaderPrivate::initHandler(), QTriangulator< T >::initialize(), QDirectFbIntegration::initializeDirectFB(), QGraphicsWidget::insertActions(), QWidget::insertActions(), QTreeWidgetItem::insertChildren(), QStandardItemPrivate::insertColumns(), QTreeModel::insertColumns(), QTextTable::insertColumns(), QDockAreaLayoutInfo::insertGap(), QToolBarAreaLayoutInfo::insertGap(), QWindowsMenu::insertIntoMenuBar(), QComboBox::insertItems(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QSplitterPrivate::insertWidget(), QListModeViewBase::intersectingSet(), QOpenGLTimeMonitorPrivate::intervals(), QGraphicsItemPrivate::invalidateDepthRecursively(), QSGDistanceFieldGlyphNode::invalidateGlyphs(), is_monochrome(), QGraphicsItem::isBlockedByModalPanel(), QPainterPathPrivate::isClosed(), QMenu::isEmpty(), QQmlTreeModelToTableModel::isExpanded(), QImage::isGrayscale(), QTreeViewPrivate::isItemHiddenOrDisabled(), QBrush::isOpaque(), QOpenGLTimeMonitorPrivate::isResultAvailable(), QHttpMultiPartIODevice::isSequential(), QGuiApplicationPrivate::isWindowBlocked(), QConfFileSettingsPrivate::isWritable(), QTableModel::item(), QDomNodeListPrivate::item(), QDockAreaLayoutInfo::itemAt(), QToolBarAreaLayout::itemAt(), QGridLayoutEngine::itemAt(), QGridLayoutPrivate::itemAt(), QDockWidgetLayout::itemAt(), QToolBarLayout::itemAt(), QGridLayoutEngine::itemAt(), QmlJSDebugger::itemAt(), QQuickListViewPrivate::itemBefore(), QListModel::itemData(), QTableModel::itemData(), QTreeModel::itemData(), QTreeViewPrivate::itemDecorationRect(), QDockWidgetLayout::itemForRole(), QTreeViewPrivate::itemHeight(), QIconModeViewBase::itemIndex(), QQmlTreeModelToTableModel::itemIndex(), QDockAreaLayoutInfo::itemRect(), QToolBarAreaLayoutInfo::itemRect(), QDockAreaLayoutInfo::itemRect(), QGraphicsSceneBspTree::items(), QGraphicsSceneIndexPrivate::items_helper(), QQuickMenuPrivate::itemSiblingOrderChanged(), QQmlDelegateModelPrivate::itemsInserted(), QQmlDelegateModelPrivate::itemsRemoved(), QQuickItemPrivate::itemToParentTransform(), QQuickSplitViewPrivate::itemVisibilityChanged(), jsStack(), QTextEngine::justify(), QFactoryLoader::keyMap(), QDialog::keyPressEvent(), QKeySequenceEdit::keyPressEvent(), QQuickListViewPrivate::lastPosition(), QMdiAreaPrivate::lastWindowAboutToBeDestroyed(), QToolBarLayout::layoutActions(), QTextDocumentLayoutPrivate::layoutBlock(), QTextDocumentLayoutPrivate::layoutCell(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutFrame(), QQuickTableViewPrivate::layoutHorizontalEdge(), QPrintPreviewWidgetPrivate::layoutPages(), QQuickSplitViewPrivate::layoutPositionItems(), QQuickSplitViewPrivate::layoutResizeSplitItems(), QTextDocumentLayoutPrivate::layoutTable(), QTabBarPrivate::layoutTabs(), QQuickTableViewPrivate::layoutVerticalEdge(), QQuickGridViewPrivate::layoutVisibleItems(), QQuickListViewPrivate::layoutVisibleItems(), QTextLine::leading(), QTextLine::leadingIncluded(), Parser::lexem(), Moc::lexemUntil(), QResourcePrivate::load(), QGeoServiceProviderPrivate::loadPluginMetadata(), QGeoPositionInfoSourcePrivate::loadPluginMetadata(), QHeaderViewPrivate::logicalIndex(), QHostInfoAgent::lookup(), Parser::lookup(), macList(), Preprocessor::macroExpandIdentifier(), main(), makeArgNames(), QQuickItemViewPrivate::mapFromModel(), mapProjective(), QAbstractProxyModel::mapSelectionFromSource(), QAbstractProxyModel::mapSelectionToSource(), QQmlTreeModelToTableModel::mapToModel(), QQmlTreeModelToTableModel::mapToModel(), QTextBlockGroupPrivate::markBlocksDirty(), markFrames(), QSGDistanceFieldGlyphCache::markGlyphsToRender(), QNdefFilter::match(), QDockAreaLayoutInfo::maximumSize(), QWaylandSurfaceViewMapper::maybePrimaryView(), QQmlPropertyCache::maybeUnresolvedProperty(), QCocoaMenu::menuItemAt(), QIOSMenu::menuItemAt(), QWindowsMenu::menuItemAt(), QIOSMenu::menuItemForTag(), QItemSelection::merge(), QTextFormat::merge(), mergeGradleProperties(), mergeIndexes(), QQuickDeliveryAgentPrivate::mergePointerTargets(), QQuickTextNodeEngine::mergeProcessedNodes(), QQmlDMAbstractItemModelData::metaCall(), QQmlPropertyCache::method(), QStandardItemModel::mimeData(), QListModel::mimeData(), QTableModel::mimeData(), QDockAreaLayoutInfo::minimumSize(), QToolBarAreaLayoutInfo::minimumSize(), CardLayout::minimumSize(), QTreeViewPrivate::modelIndex(), QGraphicsItem::mouseMoveEvent(), QXcbDrag::move(), QAbstractButtonPrivate::moveFocus(), QQmlTableModel::moveRow(), QWidgetRepaintManager::moveStaticWidgets(), QQnxIntegration::moveToScreen(), QObjectPrivate::moveToThread_helper(), QQuickViewTestUtils::QaimModel::name(), QNativeSocketEnginePrivate::nativeMulticastInterface(), QNativeSocketEnginePrivate::nativeSetMulticastInterface(), QDockWidgetLayout::nativeWindowDeco(), QTextLine::naturalTextRect(), QTextLine::naturalTextWidth(), QSubpathFlatIterator::next(), Parser::next(), SymbolStack::next(), next(), QDockAreaLayoutInfo::next(), QWindowsOleEnumFmtEtc::Next(), QRegularExpressionMatchPrivate::nextMatch(), QQuickStochasticEngine::nextState(), QMdiAreaPrivate::nextVisibleSubWindow(), QWindowSystemInterfacePrivate::WindowSystemEventList::nonUserInputEventsQueued(), VDMAbstractItemModelDataType::notify(), QApplication::notify(), QGuiApplicationPrivate::notifyLayoutDirectionChange(), QApplicationPrivate::notifyLayoutDirectionChange(), QGuiApplicationPrivate::notifyWindowIconChanged(), QApplicationPrivate::notifyWindowIconChanged(), QQuickViewTestUtils::QaimModel::number(), QQmlDelegateModelPrivate::object(), QmlIR::Document::objectAt(), QTextFormatCollection::objectFormatIndex(), QQuickStatePrivate::operations_at(), QQuickStatePrivate::operations_replace(), Compress::operator()(), QBrush::operator<<(), QPainterPath::operator==(), QGifHandler::option(), QICNSHandler::option(), QWidgetPrivate::overlappedRegion(), QQuickItemPrivate::paintOrderChildItems(), QDockAreaLayoutInfo::paintSeparators(), QWidgetPrivate::paintSiblingsRecursive(), panOffset(), QWidgetPrivate::parentGraphicsView(), QCommandLineParserPrivate::parse(), parseCmdLine(), parseCollection(), parseColorValue(), QNetworkCookie::parseCookies(), parseCoreNode(), parseCSStoXMLAttrs(), QSvgHandler::parseCSStoXMLAttrs(), QQuickStackViewPrivate::parseElements(), QTlsPrivate::X509CertificateGeneric::parseExtension(), QCss::Parser::parseFunction(), QPlatformOpenGLContext::parseOpenGLVersion(), parseOptions(), parseOptions(), QCommandLineParserPrivate::parseOptionValue(), parseStopNode(), QQuick3DParticleAffector::particle(), Parser::peek(), QWindowSystemInterfacePrivate::WindowSystemEventList::peekAtFirstOfType(), QXcbColormap::pixel(), QImage::pixel(), QMainWindowLayout::plug(), QPainterPath::pointAtPercent(), QQuickDeliveryAgentPrivate::pointerTargets(), QSGTextMaskMaterial::populate(), QSGDistanceFieldGlyphCache::populate(), QSGOpenVGFontGlyphCache::populate(), QMenuPrivate::popup(), QTextLine::position(), QtWayland::TouchExtensionGlobal::postTouchEvent(), QWaitConditionPrivate::pre(), QGraphicsSceneBspTreeIndex::prepareBoundingRectChange(), QDBusConnectionPrivate::prepareHook(), QDBusConnectionPrivate::prepareReply(), QWidgetPrivate::prepareToRender(), QQuickBasePositioner::prePositioning(), preprocessMetadata(), QDockAreaLayoutInfo::prev(), QTextHtmlStyleSelector::previousSiblingNode(), QPlace::primaryEmail(), QPlace::primaryFax(), QPlace::primaryPhone(), QPlace::primaryWebsite(), QGeoJson::printQvariant(), QDashStroker::processCurrentSubpath(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), processNode(), QWidgetPrivate::propagatePaletteChange(), QTextFormat::properties(), QQmlPropertyCache::property(), QBluetoothServiceInfoPrivate::protocolDescriptor(), QBluetoothServiceInfo::protocolServiceMultiplexer(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items_to_add(), QSortFilterProxyModelPrivate::proxy_item_range(), QGraphicsSceneBspTreeIndexPrivate::purgeRemovedItems(), q_createNativeChildrenAndSetParent(), q_reduceConfigAttributes(), qBinarySearch(), qDBusPropertyGet(), qDBusPropertyGetAll(), qDBusPropertySet(), QTest::qExec(), qGeomCalc(), qGradientStopsToD2DStops(), qlocationutils_readGsa(), QTest::qMedian(), qMedian(), QQmlComponent_setQmlParent(), qquickitem_before_paintNode(), qRegisterResourceData(), QTest::qSignalDumperCallback(), QDB2DriverPrivate::qSplitTableQualifier(), QSqlQuery_snippets(), qt_findClosestValue(), qt_fontHasNarrowOutlines(), qt_qdnsmailexchangerecord_sort(), qt_qdnsservicerecord_sort(), QAbstractButtonPrivate::queryCheckedButton(), qUnregisterResourceData(), qwindowcontainer_traverse(), QRasterPaintEnginePrivate::rasterizeLine_dashed(), QHeaderViewPrivate::read(), QTreeWidgetItem::read(), QICNSHandler::read(), read_xpm_body(), ElfReader::readCoreName(), QHttpMultiPartIODevice::readData(), QOCICols::readLOBs(), QOCICols::readPiecewise(), ElfReader::readSection(), QMdi::RegularTiler::rearrange(), QMdi::SimpleCascader::rearrange(), QMdi::IconTiler::rearrange(), QSplitterPrivate::recalc(), QFormLayoutPrivate::recalcHFW(), QPinchGestureRecognizer::recognize(), QSwipeGestureRecognizer::recognize(), QTapGestureRecognizer::recognize(), QTapAndHoldGestureRecognizer::recognize(), QFlickGestureRecognizer::recognize(), QNdefFilter::recordAt(), QOpenGLTimeMonitorPrivate::recordSample(), QTextLine::rect(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QQuickItemPrivate::recursiveRefFromEffectItem(), QUndoCommand::redo(), QGraphicsAnchorLayoutPrivate::refreshAllSizeHints(), QQuick3DObjectPrivate::refSceneManager(), QQuickItemPrivate::refWindow(), QSGDistanceFieldGlyphCache::release(), QSGOpenVGFontGlyphCache::release(), QConfFileSettingsPrivate::remove(), QWindowSystemInterfacePrivate::WindowSystemEventList::remove(), QListModel::remove(), QTextFramePrivate::remove_me(), QGraphicsAnchorLayoutPrivate::removeCenterAnchors(), QSortFilterProxyModel::removeColumns(), QTableModel::removeColumns(), QWidgetRepaintManager::removeDirtyWidget(), QWizardPrivate::removeFieldAt(), QGraphicsItemGroup::removeFromGroup(), QIconModeViewBase::removeHiddenRow(), QMediaTimeRangePrivate::removeInterval(), QGraphicsSceneBspTreeIndexPrivate::removeItem(), QGraphicsSceneBspTree::removeItems(), QQuickListViewPrivate::removeNonVisibleItems(), QAbstractItemModelPrivate::removePersistentIndexData(), QQuickBasePositioner::removePositionedItem(), QHttpNetworkConnectionPrivate::removeReply(), QSortFilterProxyModel::removeRows(), QTableModel::removeRows(), JsonOutput::removeTargetDirectory(), QToolBarAreaLayoutInfo::removeToolBarBreak(), QWaylandOutputPrivate::removeView(), QFileSystemModelPrivate::removeVisibleFile(), QGraphicsView::render(), QGraphicsScene::render(), QAbstractItemViewPrivate::renderToPixmap(), QQuickContainerPrivate::reorderItems(), QStackedLayoutPrivate::replaceAt(), QQuickFolderBreadcrumbBarPrivate::repopulate(), QQnxWindow::requestActivateWindow(), QGeoRouteParserOsrmV5Private::requestUrl(), QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests(), QHttpNetworkConnectionChannel::requeueHttp2Requests(), QGraphicsScenePrivate::resetDirtyItem(), QGraphicsItemPrivate::resetFocusProxy(), QGraphicsSceneBspTreeIndexPrivate::resetIndex(), QTextHtmlParser::resolveNode(), QQmlImportNamespace::resolveType(), LibHybrisEglServerBuffer::resourceForClient(), QUnifiedTimer::restart(), QQuickSpriteEngine::restart(), QGraphicsAnchorLayoutPrivate::restoreSimplifiedAnchor(), QGraphicsAnchorLayoutPrivate::restoreSimplifiedConstraints(), QGraphicsAnchorLayoutPrivate::restoreSimplifiedGraph(), QToolBarAreaLayout::restoreState(), QMainWindowLayoutState::restoreState(), QDockAreaLayoutInfo::restoreState(), QGraphicsAnchorLayoutPrivate::restoreVertices(), QFileDialogPrivate::restoreWidgetState(), QFileDialogPrivate::retranslateStrings(), QMimeDataPrivate::retrieveTypedData(), QMainWindowLayout::revert(), QSequentialAnimationGroupPrivate::rewindForwards(), QQmlXmlListModel::roleNames(), QTextTableCell::row(), QGridLayoutPrivate::rowSpacing(), QStandardItemModelPrivate::rowsRemoved(), QGridLayoutPrivate::rowStretch(), QWindowsFileSystemWatcherEngineThread::run(), QUnifiedTimer::runningAnimationCount(), QOpenGLTimeMonitorPrivate::samples(), sanityCheck(), QQuickParentChange::saveCurrentValues(), QSvgPaintEngine::saveGradientStops(), QDockAreaLayoutInfo::saveState(), QToolBarAreaLayout::saveState(), QPixmapIconEngine::scaledPixmap(), QQmlDeferredAndCustomParserBindingScanner::scanObject(), QGraphicsItem::sceneEvent(), QQmlType::scopedEnumValue(), QQmlType::scopedEnumValue(), QQmlType::scopedEnumValue(), QQmlType::scopedEnumValue(), QEglFSX11Integration::screenSize(), QWidgetPrivate::scrollChildren(), QListModeViewBase::scrollContentsBy(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QWaylandCompositorPrivate::seatFor(), QString::section(), QTreeViewPrivate::select(), QItemSelectionModel::selectedColumns(), QTableView::selectedIndexes(), QTreeView::selectedIndexes(), QListWidget::selectedItems(), QItemSelectionModel::selectedRows(), QQmlTreeModelToTableModel::selectionForRowRange(), QFutureInterfaceBasePrivate::sendCallOut(), QWidgetPrivate::sendComposeStatus(), QWidgetPrivate::sendPendingMoveAndResizeEvents(), sendResizeEvents(), QDockAreaLayoutInfo::separatorMove(), separatorMoveHelper(), QDockAreaLayoutInfo::separatorRect(), QDockAreaLayoutInfo::separatorRect(), QDockAreaLayoutInfo::separatorRegion(), QIBusAttributeList::serializeTo(), QBluetoothServer::serverAddress(), QBluetoothServiceInfoPrivate::serverChannel(), QBluetoothServiceInfo::serviceClassUuids(), QConfFileSettingsPrivate::set(), QApplicationPrivate::setActiveWindow(), QAndroidPlatformScreen::setAvailableGeometry(), QWaylandSeatPrivate::setCapabilities(), 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(), AndroidCameraPrivate::setFocusAreas(), QGridLayoutEngine::setGeometries(), CardLayout::setGeometry(), QSGOpenVGGlyphNode::setGlyphs(), QSGDistanceFieldGlyphNode::setGlyphs(), QSGDistanceFieldGlyphCache::setGlyphsPosition(), QSGDistanceFieldGlyphCache::setGlyphsTexture(), QQuickStochasticEngine::setGoal(), QSGOpenVGInternalRectangleNode::setGradientStops(), QSGSoftwareInternalRectangleNode::setGradientStops(), QSGBasicInternalRectangleNode::setGradientStops(), QDockAreaLayout::setGrid(), QTableModel::setHeaderData(), QTableModel::setHorizontalHeaderItem(), QQuickItemPrivate::setImplicitLayoutMirror(), QQuick3DSkin::setInverseBindPoses(), QTableModel::setItem(), QGraphicsScene::setItemIndexMethod(), QGraphicsWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLocale_helper(), QStandardItemPrivate::setModel(), QMessagePattern::setPattern(), QTextFormat::setProperty(), QMacPrintEngine::setProperty(), QPdfPrintEngine::setProperty(), QWin32PrintEngine::setProperty(), QDBusPendingCallPrivate::setReplyCallback(), QSplitterPrivate::setSizes_helper(), QGradient::setStops(), QCoreGraphicsPaintEnginePrivate::setStrokePen(), QWidgetPrivate::setStyle_helper(), QObjectPrivate::setThreadData_helper(), QGraphicsItem::setTransformations(), QWidgetPrivate::setUpdatesEnabled_helper(), QBoxLayoutPrivate::setupGeom(), QFormLayoutPrivate::setupHfwLayoutData(), QQmlDMAbstractItemModelData::setValue(), QTableModel::setVerticalHeaderItem(), QXcbWindow::setWindowIcon(), QWidgetPrivate::setWindowIcon_helper(), shiftConstraints(), QWidgetPrivate::showChildren(), QCocoaMenu::showPopup(), QQmlPropertyCache::signal(), QQmlData::signalEmitted(), QQmlPropertyCache::signalParameterStringForJS(), QMetaMethod::signature(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QGraphicsAnchorLayoutPrivate::simplifyVertices(), QHttpMultiPartIODevice::size(), QDockAreaLayoutInfo::sizeHint(), QToolBarAreaLayoutLine::sizeHint(), QToolBarAreaLayoutInfo::sizeHint(), CardLayout::sizeHint(), QTreeView::sizeHintForColumn(), QDockAreaLayoutItem::skip(), QToolBarAreaLayoutLine::skip(), Preprocessor::skipBranch(), Preprocessor::skipUntilEndif(), sm_performSaveYourself(), QGraphicsAnchorLayoutPrivate::solveMinMax(), QGraphicsAnchorLayoutPrivate::solvePreferred(), QListModel::sort(), QTableModel::sort(), QStringListModel::sort(), QStandardItemPrivate::sortChildren(), QDirPrivate::sortFileList(), QTreeModel::sortItems(), QDockAreaLayoutInfo::split(), splitIntoFamilies(), splitPolygon(), QODBCDriverPrivate::splitTableQualifier(), QMimerSQLDriverPrivate::splitTableQualifier(), QQuickItem::stackAfter(), QGraphicsItem::stackBefore(), QQuickItem::stackBefore(), Stringify::stackContains(), QQuickStochasticEngine::start(), QXcbDrag::startDrag(), QBluetoothServiceDiscoveryAgentPrivate::startServiceDiscovery(), QWidgetRepaintManager::staticContents(), QGridLayoutRowData::stealBox(), QWindowsFileSystemWatcherEngineThread::stop(), QSGRhiDistanceFieldGlyphCache::storeGlyphs(), QSplitterPrivate::storeSizes(), QCborContainerPrivate::stringAt(), QCborContainerPrivate::stringEqualsElement(), QFontEngineMulti::stringToCMap(), QRasterPaintEngine::stroke(), 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(), QWindowSystemInterfacePrivate::WindowSystemEventList::takeFirstNonUserInputOrReturnNull(), QTableModel::takeHorizontalHeaderItem(), QTableModel::takeVerticalHeaderItem(), tcbToBezier(), Parser::test(), QCss::Parser::test(), QQmlTreeModelToTableModel::testConsistency(), Moc::testFunctionAttribute(), QTextLine::textLength(), QTextLine::textStart(), QGeoCameraTilesPrivate::tilesFromPolygon(), QXcbDrag::timerEvent(), QCborValue::toDateTime(), QPainterPath::toFillPolygon(), QPainterPath::toFillPolygons(), Parser::token(), QToolBarAreaLayout::toolBarBreak(), QGuiApplication::topLevelWindows(), QAnyStringViewUtils::toStringView(), QGridLayoutRowData::totalBox(), QFontSubset::toTruetype(), QtAndroidInput::touchCancel(), QtAndroidInput::touchEnd(), QQuickParentAnimation::transition(), QQuickPropertyAction::transition(), QQuickSpringAnimation::transition(), QGridLayoutEngine::transpose(), QLocale::uiLanguages(), 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(), QGraphicsAnchorLayoutPrivate::updateAnchorSizes(), QAnimationTimer::updateAnimationsTime(), QQmlAnimationTimer::updateAnimationsTime(), QUnifiedTimer::updateAnimationTimers(), updateBBox(), QtGraphicsAnchorLayout::SequentialAnchorData::updateChildrenSizes(), QQuickListViewPrivate::updateCurrentSection(), QQuickWindowPrivate::updateDirtyNode(), QAbstractItemView::updateEditorGeometries(), QWidgetPrivate::updateFont(), QGraphicsWidgetPrivate::updateFont(), QMenuBarPrivate::updateGeometries(), QSGBasicInternalRectangleNode::updateGeometry(), QSGDefaultGlyphNode::updateGeometry(), QSGDistanceFieldGlyphNode::updateGeometry(), QQuickSplitViewPrivate::updateHandleVisibilities(), QQuickSplitViewPrivate::updateHoveredHandle(), QQuickNinePatchImagePrivate::updateInsets(), QV4::Function::updateInternalClass(), QQuickDialogButtonBoxPrivate::updateLayout(), QGraphicsItemPrivate::updatePaintedViewBoundingRects(), QGraphicsWidgetPrivate::updatePalette(), updatePixelRatioHelper(), QDeclarativeCircleMapItemPrivateCPU::updatePolish(), QQuickListViewPrivate::updateStickySections(), ModelNodeMetaObject::updateValues(), QDeclarativeSearchResultModel::updateWith(), QMimeData::urls(), v4StackTrace(), QInputMethodQueryEvent::value(), QCborContainerPrivate::valueAt(), QCommandLineParser::values(), variantToString(), QListModeViewBase::verticalOffset(), QListModeViewBase::verticalScrollToValue(), QTreeViewPrivate::viewIndex(), QDialogButtonBoxPrivate::visibleButtons(), QQuickItemViewPrivate::visibleItem(), GLSL::Semantic::visit(), QmlIR::IRBuilder::visit(), QHeaderViewPrivate::visualIndex(), QWindowsFileSystemWatcherEngineThread::wakeup(), QDockWidgetLayout::widgetForRole(), QTextInlineObject::width(), QTextLine::width(), QSGSoftwareThreadedRenderLoop::windowDestroyed(), QSGThreadedRenderLoop::windowDestroyed(), QTiffHandler::write(), QPixmapIconEngine::write(), QQmlPropertyPrivate::write(), QV4::Compiler::JSUnitGenerator::writeClass(), QQmlJSStreamWriter::writeEndObject(), QTextOdfWriter::writeFormats(), QV4::Compiler::JSUnitGenerator::writeFunction(), QWinSettingsPrivate::writeHandle(), QTextOdfWriter::writeTableCellFormat(), 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 686 of file qlist.h.

References QList< T >::last().

Referenced by QGeoTiledMappingManagerEngineOsm::QGeoTiledMappingManagerEngineOsm(), QSSGRenderReflectionMap::addReflectionMapEntry(), QSSGRenderShadowMap::addShadowMapEntry(), QSvgText::addText(), QMdiAreaPrivate::nextVisibleSubWindow(), QRBTree< T >::order(), 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 687 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 608 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(), QFileSystemModelPrivate::_q_fileSystemChanged(), QWizardPrivate::_q_handleFieldObjectDestroyed(), QItemSelectionModelPrivate::_q_layoutChanged(), QSortFilterProxyModelPrivate::_q_sourceHeaderDataChanged(), QGraphicsSceneBspTreeIndexPrivate::_q_updateSortCache(), QDBusAdaptorConnector::addAdaptor(), QWasmIntegration::addContainerElement(), QCommandLineParser::addOptions(), QSSGStageGeneratorBase::addShaderConstantBufferItemMap(), QTextEngine::adjustUnderlines(), QQuickTimeLinePrivate::advance(), QWasmScreen::allWindows(), QMainWindowLayout::animationFinished(), QQmlJSLinter::applyFixes(), QQuickItemViewPrivate::applyModelChanges(), QQuickItemViewPrivate::applyRemovalChange(), QVarLengthArray< T, Prealloc >::assign(), QTimeZonePrivate::availableTimeZoneIds(), bindFont(), QmlLsp::QQmlCodeModel::buildPathsForFileUrl(), QSSGStageGeneratorBase::buildShaderSourcePass1(), QConcatenateTablesProxyModelPrivate::calculatedColumnCount(), QTextEngine::calculateTabWidth(), QLowEnergyControllerPrivate::characteristicForHandle(), QLowEnergyService::characteristics(), QQmlContextPrivate::cleanInstances(), QOpenGLContextGroupPrivate::cleanup(), QOpenGLTextureCacheWrapper::cleanupTexturesForCacheKey(), QGraphicsSceneBspTreeIndexPrivate::climbTree(), QListViewPrivate::closestIndex(), QmlTypesClassDescription::collect(), QTreeViewPrivate::columnRanges(), combineRecords(), QList< T >::constFirst(), convertIterableToVariantList(), createInterfaces(), QKmsDevice::createScreens(), QList< T >::crend(), QTlsPrivate::cryptoSettingsForCiphers(), QHeaderView::dataChanged(), QLowEnergyCharacteristic::descriptors(), detectLatestAndroidPlatform(), QBluetoothLocalDevicePrivate::deviceDisconnected(), QListViewPrivate::draggablePaintPairs(), QSvgTinyDocument::draw(), QSvgG::draw(), QSvgSwitch::draw(), QTextDocumentLayoutPrivate::drawFlow(), effectiveTextMargin(), QGraphicsItemPrivate::ensureSequentialSiblingIndex(), QGraphicsScenePrivate::ensureSequentialTopLevelSiblingIndexes(), QListModel::ensureSorted(), QTableModel::ensureSorted(), QTreeModel::ensureSorted(), QGraphicsItemPrivate::ensureSortedChildren(), QGraphicsScenePrivate::ensureSortedTopLevelItems(), QUrlQueryPrivate::findKey(), QList< T >::first(), QList< T >::first(), QList< T >::first(), QTextTablePrivate::fragmentAdded(), QTextDocumentLayoutPrivate::frameIteratorForYPosition(), generateGlyphTables(), CPP::generateMultiDirectiveBegin(), QGraphicsScenePrivate::gestureEventHandler(), QSSGLayerRenderData::getRenderableItem2Ds(), QLocationUtils::getSatInUseFromNmea(), QSSGLayerRenderData::getSortedOpaqueRenderableObjects(), QSSGLayerRenderData::getSortedScreenTextureRenderableObjects(), QSSGLayerRenderData::getSortedTransparentRenderableObjects(), AndroidCameraPrivate::getSupportedPictureSizes(), AndroidCameraPrivate::getSupportedPreviewSizes(), AndroidCameraPrivate::getSupportedVideoSizes(), QWaylandXdgToplevelPrivate::handleAckConfigure(), huntAndUnregister(), if(), QtPrivate::indexOf(), QMacPrintEnginePrivate::initialize(), QWidgetTextControlPrivate::inputMethodEvent(), QListModel::insert(), QCborContainerPrivate::insertAt(), QAndroidPlatformMenuBar::insertMenu(), QAndroidPlatformMenu::insertMenuItem(), QGraphicsItemAnimationPrivate::insertUniquePair(), interfaceListing(), QTimeZonePrivate::isTimeZoneIdAvailable(), QQmlLSUtils::itemsFromTextLocation(), QtPrivate::lastIndexOf(), QTextDocumentLayoutPrivate::layoutFlow(), QWasmWindowStack::lower(), QMimeMagicRule::matches(), mergeStringLiterals(), QFileSystemModel::mimeData(), QTreeModel::mimeData(), QSortFilterProxyModelPrivate::needsReorder(), Compress::operator()(), operator<<(), QList< T >::operator=(), QList< T >::operator==(), QQuickItemPrivate::paintOrderChildItems(), Moc::parse(), QCommandLineParserPrivate::parse(), QGeoPositionInfoSourcePrivate::pluginsSorted(), QQuickDeliveryAgentPrivate::pointerTargets(), QDBusAdaptorConnector::polish(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items(), QWasmWindowStack::pushWindow(), qListToSet(), QTest::qMedian(), qMedian(), QQuickViewTestUtils::qquickmodelviewstestutil_move(), QtPrivate::QStringList_join(), qt_find_best_framerate_match(), qt_qdnsmailexchangerecord_sort(), qt_qdnsservicerecord_sort(), QWasmWindowStack::raise(), QWasmWindowStack::rbegin(), QDBusConnection::registerObject(), Vsp2HardwareLayerIntegration::remove(), QWasmIntegration::removeContainerElement(), QAndroidEventDispatcherStopper::removeEventDispatcher(), QtWaylandClient::QWaylandDisplay::removeListener(), QAndroidPlatformMenuBar::removeMenu(), QAndroidPlatformMenu::removeMenuItem(), QWindowsFileSystemWatcherEngine::removePaths(), QQmlObjectCreator::removePendingBinding(), QQmlTableModel::removeRow(), QSortFilterProxyModel::removeRows(), QQmlTreeModelToTableModel::removeVisibleRows(), QWasmWindowStack::removeWindow(), QList< T >::rend(), QList< T >::rend(), QBsdKeyboardHandler::resetKeymap(), QWasmIntegration::resizeScreen(), QQmlImports::resolvedCompositeSingletons(), 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(), QTreeViewPrivate::select(), QListViewPrivate::selection(), selectionIsEmpty(), QHttp2ProtocolHandler::sendRequest(), QQmlDebugTranslationServicePrivate::sendTranslatableTextOccurrences(), QQmlDebugTranslationServicePrivate::sendTranslationIssues(), QOffscreenIntegration::setConfiguration(), QWasmIntegration::setContainerElements(), QTableModel::setItem(), QPrintDialogPrivate::setTabs(), QList< T >::sliced(), QList< T >::sliced(), QQuick3DParticleInstanceTable::sort(), QTableModel::sort(), QStringListModel::sort(), QSortFilterProxyModelPrivate::sort_source_rows(), sortByHeight(), QStandardItemPrivate::sortChildren(), sortContainer(), sortInstances(), QGraphicsSceneBspTreeIndexPrivate::sortItems(), QTreeModel::sortItems(), sortParticles(), sortStringList(), splitPolygon(), QQuickOverlayPrivate::stackingOrderDrawers(), QQmlJS::Dom::QmlComponent::subComponentsNames(), QTextDocumentWriter::supportedDocumentFormats(), QImageReaderWriterHelpers::supportedMimeTypes(), QAndroidPlatformMenu::syncMenuItem(), QTextBlockFormat::tabPositions(), QQuickTransitionManager::transition(), uenumToIdList(), uniqueRevisions(), QSortFilterProxyModelPrivate::updateChildrenMapping(), QQuickDialogButtonBoxPrivate::updateLayout(), QQuickTextEdit::updatePaintNode(), QQmlJS::Dom::updatePathFromOwnerQList(), QTableModel::updateRowIndexes(), QQmlPropertyPrivate::urlSequence(), QWasmWindowStack::windowPositionPreferenceChanged(), QTimeZonePrivate::windowsIdToIanaIds(), and QTextOdfWriter::writeBlockFormat().

+ Here is the call graph for this function:

◆ begin() [2/2]

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

Definition at line 611 of file qlist.h.

References d.

◆ capacity()

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

Definition at line 405 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 417 of file qlist.h.

References QTypedArrayData< T >::allocate(), 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(), QGuiApplicationPrivate::~QGuiApplicationPrivate(), QOpenGLEngineSharedShaders::~QOpenGLEngineSharedShaders(), QQuick3DParticleEmitter::~QQuick3DParticleEmitter(), QQuickPixmapReader::~QQuickPixmapReader(), QTreeWidgetItem::~QTreeWidgetItem(), QWasmIntegration::~QWasmIntegration(), QWaylandSurfacePrivate::~QWaylandSurfacePrivate(), QWindowsOleEnumFmtEtc::~QWindowsOleEnumFmtEtc(), Scheduler::~Scheduler(), QTreeViewPrivate::_q_columnsAboutToBeRemoved(), QItemSelectionModelPrivate::_q_layoutAboutToBeChanged(), QItemSelectionModelPrivate::_q_layoutChanged(), QTreeViewPrivate::_q_modelAboutToBeReset(), QTreeViewPrivate::_q_modelDestroyed(), QGraphicsScenePrivate::_q_polishItems(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutChanged(), QSortFilterProxyModelPrivate::_q_sourceLayoutAboutToBeChanged(), QIdentityProxyModelPrivate::_q_sourceLayoutChanged(), QSortFilterProxyModelPrivate::_q_sourceLayoutChanged(), QAbstractSocketPrivate::_q_startConnecting(), QAbstractSocketPrivate::_q_testConnection(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QDBusMenuAdaptor::AboutToShowGroup(), CPP::WriteInitialization::acceptLayout(), QEasingCurve::addTCBSegment(), QMainWindowLayout::animationFinished(), QQuickState::apply(), QQuickTransitionManagerPrivate::applyBindings(), QSyntaxHighlighterPrivate::applyFormatChanges(), QSSGStageGeneratorBase::begin(), bfs(), QQuickTransitionManager::cancel(), QV4::ExecutionEngine::catchException(), QDeclarativeSearchResultModel::categories_clear(), QTextMarkdownImporter::cbEnterBlock(), QOpenGLContextGroupPrivate::cleanup(), QSqlCachedResultPrivate::cleanup(), QQuickWindowPrivate::cleanupNodes(), QQuick3DSceneManager::cleanupNodes(), QSSGRenderer::cleanupResources(), QResourcePrivate::clear(), QUrlQuery::clear(), QMimeAllGlobPatterns::clear(), QWindowSystemInterfacePrivate::WindowSystemEventList::clear(), QPainterPathPrivate::clear(), QTextFormatCollection::clear(), QHttpHeaderParser::clear(), QHostInfoLookupManager::clear(), QSqlRecord::clear(), QTestEventList::clear(), QGraphicsSceneBspTree::clear(), QHeaderViewPrivate::clear(), QListModel::clear(), QTreeModel::clear(), QtPrivate::FixedColumnMatrix< T, NumColumns >::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(), QAnimationGroupPrivate::clear(), QQuick3DParticleTrailEmitter::clearBursts(), QDirPrivate::clearCache(), QDeclarativeSearchResultModel::clearData(), QTextEngine::clearDecorations(), QQuick3DParticleEmitter::clearEmitBursts(), QFutureSynchronizer< T >::clearFutures(), QHttpHeaderParser::clearHeaders(), QTableModel::clearItemData(), QTreeModel::clearItemData(), QTextEngine::clearLineData(), QQmlTreeModelToTableModel::clearModelData(), QQuick3DParticleAffector::clearParticles(), QGeoPathPrivate::clearPath(), QQuickBasePositioner::clearPositionedItems(), QPdfSearchModelPrivate::clearResults(), QQmlXmlListModel::clearRole(), QQuickContext2DTexture::clearTiles(), QQuickMultiPointTouchArea::clearTouchLists(), QQuickTextInputPrivate::clearUndo(), QTextDocumentPrivate::clearUndoRedoStacks(), QDeclarativeGeoRouteQuery::clearWaypoints(), QDBusConnectionPrivate::closeConnection(), QIBusPlatformInputContext::commit(), QIBusPlatformInputContext::commitText(), QQmlTypeCompiler::compile(), QV4::Compiler::Codegen::compileModule(), QQuickStatePrivate::complete(), computeBBox(), QWaylandCompositorPrivate::connectToExternalSockets(), QQuickContainerPrivate::contentData_clear(), QQuickMenuPrivate::contentData_clear(), QDtlsPrivateOpenSSL::continueHandshake(), convertIterableToVariantList(), QDomNodeListPrivate::createList(), QQuickPath::createPath(), QSslSocketPrivate::createPlainSocket(), QQuickContext2DTexture::createTiles(), QQuickPackagePrivate::data_clear(), QQuickPropertyChangesPrivate::decode(), QObjectPrivate::deleteChildren(), QQuickTextNode::deleteContent(), QGridLayoutEngine::deleteItems(), QtWaylandClient::VulkanServerBufferIntegration::deleteOrphanedTextures(), LinuxDmabufClientBufferIntegration::deleteOrphanedTextures(), WaylandEglClientBufferIntegrationPrivate::deleteOrphanedTextures(), WaylandEglStreamClientBufferIntegrationPrivate::deleteOrphanedTextures(), QOpenGLContextGroupPrivate::deletePendingResources(), deployTranslations(), QOpenGLTimeMonitorPrivate::destroy(), QBspTree::destroy(), QQuickSplitViewPrivate::destroyHandles(), QKmsDevice::discoverPlanes(), QDBusConnectionPrivate::doDispatch(), QGraphicsScenePrivate::drawItemHelper(), QDB2ResultPrivate::emptyValueCache(), QMimeXMLProvider::ensureLoaded(), exportMultiPolygon(), QHttpNetworkConnectionPrivate::fillHttp2Queue(), QItemSelectionModelPrivate::finalize(), QQmlObjectCreator::finalize(), QV4DebugClientPrivate::flushSendBuffer(), QNetworkReplyHttpImplPrivate::followRedirect(), QTextEngine::freeMemory(), QSSGLayerRenderData::frustumCulling(), QGraphicsScenePrivate::gestureEventHandler(), FileInfoThread::getFileInfos(), QLocationUtils::getSatInfoFromNmea(), QLocationUtils::getSatInUseFromNmea(), QXcbDrag::handleEnter(), QWaylandOutputPrivate::handleWindowPixelSizeChanged(), QtAndroidMenu::hideContextMenu(), huntAndUnregister(), QSslSocketPrivate::init(), QFileDialogPrivate::init(), QCss::Parser::init(), QPainterState::init(), QTlsPrivate::TlsCryptographOpenSSL::init(), QPRand::init(), QCborStreamReaderPrivate::initDecoder(), QSSGRenderer::intersectRayWithSubsetRenderable(), QNearFieldTargetPrivateImpl::invalidate(), QQmlPropertyCache::invalidate(), QTextDocumentLayoutPrivate::layoutBlock(), QAbstractItemModelTesterPrivate::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(), QQuickMultiPointTouchArea::mouseMoveEvent(), QFileDialogPrivate::navigate(), SocketWorker::notifyAboutNewData(), QWinRTLowEnergyServiceHandler::obtainCharList(), QDeclarativeSearchResultModel::onContentUpdated(), QtAndroidMenu::onContextItemSelected(), QQuickStatePrivate::operations_clear(), Compress::operator()(), operator>>(), QDBusSnippets::operator>>(), operator>>(), VkSpecParser::parse(), QTextHtmlParser::parse(), QMimeTypeParserBase::parse(), LocationSingleton::path(), QCompleter::pathFromIndex(), QDeclarativePlace::place(), QPrintPreviewWidgetPrivate::populateScene(), QQuickItemViewPrivate::positionViewAtIndex(), QSSGLayerRenderData::prepareForRender(), processCommandQueue(), QEvdevTouchScreenData::processInputEvent(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items_to_add(), QGraphicsItemCache::purge(), QGraphicsSceneBspTreeIndexPrivate::purgeRemovedItems(), qDBusParametersForMethod(), qDrawShadePanel(), QQC2::qDrawShadePanel(), qlocationutils_readGsa(), QDeclarativeSearchResultModel::queryFinished(), QTreeWidgetItem::read(), QPixmapIconEngine::read(), QShortcutPrivate::redoGrab(), QSyntaxHighlighterPrivate::reformatBlocks(), QDeclarativePolylineMapItemPrivateCPU::regenerateCache(), ShadowMapPass::release(), ReflectionMapPass::release(), ZPrePassPass::release(), DepthMapPass::release(), ScreenMapPass::release(), MainPass::release(), UserPass::release(), QSSGRenderReflectionMap::releaseCachedResources(), QSSGRenderShadowMap::releaseCachedResources(), QQuickItemViewPrivate::releaseVisibleItems(), QTextFramePrivate::remove_me(), ViewportTransformHelper::removeAll(), QGraphicsView::render(), QGraphicsScene::render(), 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(), QGraphicsSceneBspTreeIndexPrivate::resetIndex(), QBsdKeyboardHandler::resetKeymap(), QQuickItemViewTransitioner::resetTargetLists(), QMainWindowLayout::restore(), QGraphicsAnchorLayoutPrivate::restoreVertices(), QDtlsPrivateOpenSSL::resumeHandshake(), QSSGParticleRenderer::rhiPrepareRenderable(), QQmlXmlListModel::roleObjects(), QQuickWindowPrivate::runAndClearJobs(), QFFmpegImageCapture::setCaptureSession(), QGstreamerImageCapture::setCaptureSession(), QLowEnergyServiceData::setCharacteristics(), QSslConfiguration::setCiphers(), QImage::setColorCount(), QDBusConnectionPrivate::setConnection(), QSimplex::setConstraints(), QLoggingSettingsParser::setContent(), QLoggingSettingsParser::setContent(), QLowEnergyCharacteristicData::setDescriptors(), QBoxLayoutPrivate::setDirty(), QQmlDirParser::setError(), QWaylandSharedTextureProvider::setExtensionReady(), QFutureSynchronizer< T >::setFuture(), QNdefNfcSmartPosterRecord::setIcons(), AVFMediaPlayer::setMedia(), QXcbScreen::setMonitor(), QSqlRecord::setNull(), QWizard::setPage(), QMessagePattern::setPattern(), QUrlQueryPrivate::setQuery(), QGlyphRun::setRawData(), QDBusPendingCallPrivate::setReplyCallback(), QGradient::setStops(), QNdefNfcSmartPosterRecord::setTitles(), QBoxLayoutPrivate::setupGeom(), QFormLayoutPrivate::setupHfwLayoutData(), QFormLayoutPrivate::setupVerticalLayoutData(), QUrlModel::setUrls(), QXcbWindow::setWmWindowType(), QGtk3FileDialogHelper::show(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::show(), MainWindow::showList(), QComboBox::showPopup(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QFileSystemModelPrivate::sortChildren(), 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(), QQuick3DWindowAttachment::synchronize(), QTreeWidgetItem::takeChildren(), QPainterPath::toFillPolygons(), QPainterPath::toSubpathPolygons(), QtAndroidInput::touchBegin(), QtWaylandClient::QWaylandTouchExtension::touchCanceled(), QQuickShapeGenericRenderer::triangulateStroke(), QDockAreaLayoutInfo::unnest(), QPdfLinkModelPrivate::update(), updateBBox(), QMenuBarPrivate::updateGeometries(), QSGSoftwareRenderableNodeUpdater::updateNodes(), QQuickImageParticle::updatePaintNode(), QQmlJS::Dom::updatePathFromOwnerMultiMap(), QQuick3DCustomMaterial::updateSpatialNode(), AVFMediaPlayer::updateTracks(), QDeclarativeGeoMapItemUtils::wrapPath(), QDeclarativeGeoMapItemUtils::wrapPath(), 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 615 of file qlist.h.

References d.

Referenced by QParallelAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QQmlImports::addFileImport(), QWindowsFileSystemWatcherEngine::addPaths(), QQuickListViewPrivate::addVisibleItems(), QList< T >::append(), QSvgStyle::apply(), QQuickItemViewPrivate::applyModelChanges(), QQuickMultiPointHandler::averageAngleDelta(), boundingRectOfFloatsInSelection(), QQmlJSImportVisitor::checkRequiredProperties(), QAbstractItemViewPrivate::clearOrRemove(), QParallelAnimationGroupPrivate::connectUncontrolledAnimations(), doFilter(), QTextDocumentLayoutPrivate::drawFrame(), QFileSystemModel::dropMimeData(), QV4::Moth::dumpBytecode(), QList< T >::emplace(), QQuickListViewPrivate::endPositionAt(), QThreadPoolPrivate::enqueueTask(), QSortFilterProxyModelPrivate::filter_changed(), QTextTablePrivate::findCellIndex(), QUrlQueryPrivate::findKey(), findObject(), QNetworkHeadersPrivate::findRawHeader(), QHttpHeaderParser::firstHeaderField(), QProcessEnvironmentPrivate::fromList(), QJsonArray::fromStringList(), QGraphicsScenePrivate::gestureEventHandler(), QQmlVMEMetaObject::getQObjectGuardForProperty(), QQmlImportInstance::getVersionedScripts(), QHttpNetworkRequestPrivate::header(), QHttpHeaderParser::headerFieldValues(), QTextDocumentLayoutPrivate::hitTest(), QQmlJS::AST::BoundNames::indexOf(), QList< T >::insert(), QList< T >::insert(), QItemSelectionModel::isColumnSelected(), QItemSelectionModel::isRowSelected(), QmlIR::Document::isSingleton(), QQmlDelegateModelPrivate::itemsRemoved(), QIdentityProxyModel::mapSelectionFromSource(), QIdentityProxyModel::mapSelectionToSource(), QIdentityProxyModel::match(), QDBusInterfacePrivate::metacall(), QDBusConnection::objectRegisteredAt(), QQuickListViewPrivate::originPosition(), QListView::paintEvent(), parseProvider(), parseTracepoint(), QQuickListViewPrivate::positionAt(), QSGRenderer::preprocess(), QSvgStructureNode::previousSiblingNode(), qDBusPropertyGet(), qDBusPropertyGetAll(), qDBusPropertySet(), QPluginLoader::qRegisterStaticPluginFunction(), QUrlQuery::query(), QUrlQuery::queryItems(), QNetworkHeadersPrivate::rawHeadersKeys(), QQuickItemViewPrivate::removeItem(), QNetworkReplyHttpImplPrivate::replyDownloadMetaData(), QQuickItemViewPrivate::repositionFirstItem(), QOpenGLMultiGroupSharedResource::resources(), QSvgStyle::revert(), QNetworkReplyHttpImplPrivate::sendCacheContents(), QNetworkHeadersPrivate::setAllRawHeaders(), QApplication::setFont(), QQmlImportInstance::setQmldirContent(), QTextBlockFormat::setTabPositions(), QQuickListViewPrivate::snapPosAt(), QTextOption::tabArray(), QQuickListViewPrivate::updateCurrentSection(), QQnxScreen::updateHierarchy(), QQuickTextEdit::updatePaintNode(), QQuickItemViewPrivate::updateVisibleIndex(), and QQuickListViewPrivate::visibleItemsChanged().

◆ constData()

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

Definition at line 416 of file qlist.h.

References d.

Referenced by QEGLPlatformContext::QEGLPlatformContext(), QtWaylandClient::QWaylandBrcmGLContext::QWaylandBrcmGLContext(), QtWaylandClient::QWaylandGLContext::QWaylandGLContext(), QQmlJS::FixedPoolArray< T >::allocate(), QXcbNativeBackingStore::beginPaint(), QAlphaPaintEnginePrivate::canSeeTroughBackground(), QEglConfigChooser::chooseConfig(), convert_Indexed8_to_X32(), QQuick3DPhysicsMesh::convexMesh(), QRhiVulkan::create(), QPainter::drawConvexPolygon(), QPainter::drawConvexPolygon(), QPainter::drawLines(), QPainter::drawLines(), QPainter::drawLines(), QPainter::drawLines(), QPainter::drawPolyline(), QPainter::drawPolyline(), QPainter::drawRects(), QPainter::drawRects(), QRasterPaintEngine::fillPolygon(), QXcbNativeBackingStore::flush(), QTest::formatString(), AssimpUtils::generateMeshData(), QT_BEGIN_NAMESPACE::generateMeshLevelsOfDetail(), QGlyphRun::glyphIndexes(), QDBusConnectionPrivate::handleMessage(), QStaticTextPrivate::init(), QBasicPlatformVulkanInstance::initInstance(), QXcbKeyboard::keymapFromCore(), QHostInfoAgent::lookup(), QSGTextMaskMaterial::populate(), QGlyphRun::positions(), QSSGDebugDrawSystem::prepareGeometry(), QSGOpenVGHelpers::qDrawSubImage(), QSGOpenVGHelpers::qDrawTiled(), qglx_findConfig(), QSGOpenVGInternalRectangleNode::render(), QSGOpenVGRectangleNode::render(), QSSGReflectionMapEntry::renderMips(), renderToKTXFileInternal(), QEglFSKmsGbmWindow::resetSurface(), QWizardField::resolve(), QWindowsFileSystemWatcherEngineThread::run(), QGlyphRun::setGlyphIndexes(), QSGBasicInternalRectangleNode::setGradientStops(), QXcbWindow::setNetWmStateOnUnmappedWindow(), QGlyphRun::setPositions(), QSSGSceneDesc::setProperty(), QDBusPendingCallPrivate::setReplyCallback(), QSSGMaterialShaderGenerator::setRhiMaterialProperties(), QXcbWindow::setWmWindowType(), QXcbDrag::startDrag(), QWindowsDirect2DPaintEnginePrivate::to_d2d_brush(), QQuickShapeGenericRenderer::triangulateFill(), QWindowsDirect2DPaintEnginePrivate::updatePen(), ModelNodeMetaObject::updateValues(), and QSGOpenVGNodeVisitor::visit().

◆ constEnd()

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

Definition at line 616 of file qlist.h.

References d.

Referenced by QParallelAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QQmlImports::addFileImport(), QWindowsFileSystemWatcherEngine::addPaths(), QQuickListViewPrivate::addVisibleItems(), QList< T >::append(), QSvgStyle::apply(), QQuickMultiPointHandler::averageAngleDelta(), boundingRectOfFloatsInSelection(), QQmlJSImportVisitor::checkRequiredProperties(), QAbstractItemViewPrivate::clearOrRemove(), QmlTypesClassDescription::collect(), QParallelAnimationGroupPrivate::connectUncontrolledAnimations(), doFilter(), QTextDocumentLayoutPrivate::drawFrame(), QFileSystemModel::dropMimeData(), QV4::Moth::dumpBytecode(), QQuickListViewPrivate::endPositionAt(), QThreadPoolPrivate::enqueueTask(), QNetworkReplyHttpImplPrivate::fetchCacheMetaData(), QSortFilterProxyModelPrivate::filter_changed(), QTextTablePrivate::findCellIndex(), findObject(), QNetworkHeadersPrivate::findRawHeader(), QHttpHeaderParser::firstHeaderField(), QProcessEnvironmentPrivate::fromList(), QJsonArray::fromStringList(), QGraphicsScenePrivate::gestureEventHandler(), QQmlVMEMetaObject::getQObjectGuardForProperty(), QQmlImportInstance::getVersionedScripts(), QUrlQuery::hasQueryItem(), QNetworkRequest::hasRawHeader(), QNetworkProxy::hasRawHeader(), QHttpNetworkRequestPrivate::header(), QHttpHeaderParser::headerFieldValues(), QTextDocumentLayoutPrivate::hitTest(), QQmlJS::AST::BoundNames::indexOf(), QItemSelectionModel::isColumnSelected(), QItemSelectionModel::isRowSelected(), QmlIR::Document::isSingleton(), QQuickListViewPrivate::lastPosition(), QNetworkReplyHttpImplPrivate::loadFromCacheIfAllowed(), QIdentityProxyModel::mapSelectionFromSource(), QIdentityProxyModel::mapSelectionToSource(), QIdentityProxyModel::match(), QDBusInterfacePrivate::metacall(), QDBusConnection::objectRegisteredAt(), QListView::paintEvent(), parseProvider(), parseTracepoint(), QQuickListViewPrivate::positionAt(), QSGRenderer::preprocess(), QSvgStructureNode::previousSiblingNode(), qDBusPropertyGet(), qDBusPropertyGetAll(), qDBusPropertySet(), QPluginLoader::qRegisterStaticPluginFunction(), QUrlQuery::query(), QUrlQuery::queryItems(), QUrlQuery::queryItemValue(), QNetworkRequest::rawHeader(), QNetworkProxy::rawHeader(), QNetworkHeadersPrivate::rawHeadersKeys(), QNetworkReplyHttpImplPrivate::replyDownloadMetaData(), QOpenGLMultiGroupSharedResource::resources(), QSvgStyle::revert(), QNetworkReplyHttpImplPrivate::sendCacheContents(), QNetworkHeadersPrivate::setAllRawHeaders(), QApplication::setFont(), QQmlImportInstance::setQmldirContent(), QTextBlockFormat::setTabPositions(), QPrintDialogPrivate::setTabs(), QQuickListViewPrivate::snapPosAt(), sortStringList(), QTextOption::tabArray(), QQnxScreen::updateHierarchy(), QQuickTextEdit::updatePaintNode(), and QQuickItemViewPrivate::updateVisibleIndex().

◆ constFirst()

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

Definition at line 630 of file qlist.h.

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

Referenced by Generator::Generator(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QWinSettingsPrivate::~QWinSettingsPrivate(), QItemSelectionModelPrivate::_q_layoutAboutToBeChanged(), QQuickGridViewPrivate::addVisibleItems(), QQuickGridViewPrivate::adjustFirstItem(), QQuickListViewPrivate::adjustFirstItem(), QGlobalNetworkProxy::applicationProxy(), QQuickListViewPrivate::applyInsertionChange(), QNativeSocketEnginePrivate::checkProxy(), QTlsPrivate::TlsCryptographOpenSSL::checkSslErrors(), QGraphicsScenePrivate::clearKeyboardGrabber(), QWindowsFileDialogHelper::createNativeDialog(), QWindowsXpNativeFileDialog::doExec(), Moc::generate(), CPP::generateMultiDirectiveBegin(), QQmlTypePrivate::init(), QQmlTypePrivate::initEnums(), QQuickListViewPrivate::initializeCurrentItem(), QQuickListViewPrivate::itemGeometryChanged(), QQuickGridViewPrivate::layoutVisibleItems(), QQuickListViewPrivate::layoutVisibleItems(), QQmlType::metaObject(), QXcbMime::mimeConvertToFormat(), QGraphicsScenePrivate::mousePressEventHandler(), QFileDialogPrivate::navigate(), QQuickItemPrivate::nextPrevItemInTabFocusChain(), Moc::parseClassHead(), QWaitConditionPrivate::post(), QOpenGLContextGroupPrivate::removeContext(), QQuickGridViewPrivate::removeNonVisibleItems(), QQuickItemViewPrivate::repositionFirstItem(), QQuickGridViewPrivate::resetFirstItemPosition(), QQuickListViewPrivate::resetFirstItemPosition(), QGraphicsScenePrivate::sendTouchBeginEvent(), QBenchmarkTestMethodData::setResults(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QXcbDrag::startDrag(), startQtAndroidPlugin(), QQuickItemViewPrivate::storeFirstVisibleItemPosition(), QMainWindowLayout::takeAt(), QPainterPath::toFillPolygons(), QGraphicsScenePrivate::touchEventHandler(), QQuickWindowPrivate::updateDirtyNode(), QQuickListViewPrivate::updateSizeChangesBeforeVisiblePos(), GLSL::Semantic::visit(), 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 633 of file qlist.h.

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

Referenced by QSGRootNode::~QSGRootNode(), QApplication::activePopupWidget(), QQuickGridViewPrivate::addVisibleItems(), QOpenGLCompositor::addWindow(), QMainWindowLayout::animationFinished(), QQuickListViewPrivate::applyInsertionChange(), QQuickItemViewPrivate::applyRemovalChange(), QOpenGLCompositor::changeWindowIndex(), QApplicationPrivate::closePopup(), QQuickPath::createPath(), QGraphicsScenePrivate::dispatchHoverEvent(), QTextDocumentLayoutPrivate::drawFlow(), QGraphicsScenePrivate::enterModal(), QQmlApplicationEnginePrivate::finishLoad(), QGraphicsScenePrivate::grabKeyboard(), QGraphicsScenePrivate::grabMouse(), BezierEase::init(), QQmlTypePrivate::init(), QToolBarAreaLayoutInfo::insertToolBarBreak(), QQuickListViewPrivate::itemBefore(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutTable(), Preprocessor::macroExpandIdentifier(), QConcatenateTablesProxyModelPrivate::mapDropCoordinatesToSource(), QGraphicsScenePrivate::mousePressEventHandler(), QOpenGLCompositor::moveToTop(), Moc::parseFunctionArguments(), QTextHtmlParser::parseTag(), QQmlMetaType::proxyData(), QQuickGridViewPrivate::removeNonVisibleItems(), QQuickListViewPrivate::removeNonVisibleItems(), QQnxWindow::requestActivateWindow(), QEglFSDeviceIntegration::screenDestroy(), QGraphicsScenePrivate::sendMouseEvent(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), sm_setProperty(), QGraphicsScenePrivate::storeMouseButtonsForMouseGrabber(), QWizardPrivate::switchToPage(), Preprocessor::tokenize(), QGraphicsScenePrivate::ungrabKeyboard(), QGraphicsScenePrivate::ungrabMouse(), QTextTableData::updateTableSize(), QPdfEnginePrivate::writeTail(), and writingSystemForFont().

+ 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 387 of file qlist.h.

References QList< T >::size().

Referenced by QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QOCIBatchCleanupHandler::~QOCIBatchCleanupHandler(), QWindowsOleEnumFmtEtc::~QWindowsOleEnumFmtEtc(), __attribute__(), QAbstractSocketPrivate::_q_connectToNextAddress(), QAbstractSocketPrivate::_q_startConnecting(), QMetalGraphicsPipelineData::ExtraBufferManager::acquireWorkBuffer(), QWindowsFontDatabase::addApplicationFont(), QWindowsFileSystemWatcherEngine::addPaths(), allSubObjects(), QQuickItemViewPrivate::applyModelChanges(), QAndroidCameraSession::applyResolution(), Scheduler::areSamplesScheduled(), avfAudioSettings(), QDeclarativeSearchResultModel::categories_count(), QDeclarativeSearchResultModel::category_at(), QDeclarativePlace::category_count(), QDeclarativeGeoMap::clearMapItems(), QQuickBasePositioner::clearPositionedItems(), QDB2ResultPrivate::clearValueCache(), QDeclarativeGeocodeModel::count(), QDeclarativeGeoRouteModel::count(), QMacMimeFileUri::count(), createSequence(), QDeclarativeGeocodeModel::data(), QDeclarativeGeoRouteModel::data(), QDeclarativeSearchResultModel::data(), QCocoaPrintDevice::defaultResolution(), QNetworkReplyWasmImplPrivate::doSendRequest(), QBoxLayoutPrivate::effectiveMargins(), end(), QSGOpenVGNodeVisitor::endVisit(), QGeoTiledMappingManagerEngineNokia::evaluateCopyrightsText(), QOCICols::execBatch(), QOCICols::fieldFromDefine(), QQuickItemViewPrivate::findMoveKeyIndex(), QDebugDrawHelper::generateCapsuleGeometry(), QDebugDrawHelper::generateSphereGeometry(), QDeclarativeGeocodeModel::geocodeError(), QDeclarativeGeocodeModel::geocodeFinished(), QDeclarativeGeocodeModel::get(), QDeclarativeGeoRouteModel::get(), QDockAreaLayoutInfo::hasGapItem(), MainWindow::highlightListItems(), importImp(), QMacPrintEnginePrivate::initialize(), QHostInfoAgent::lookup(), QWasmWindowStack::lower(), QCocoaMenu::menuItemAt(), CardLayout::minimumSize(), QWindowsOleEnumFmtEtc::Next(), parseCollection(), QSGOpenVGFontGlyphCache::populate(), QSSGDebugDrawSystem::prepareGeometry(), QWasmWindowStack::pushWindow(), qGradientStopsToD2DStops(), QDB2DriverPrivate::qSplitTableQualifier(), qt_mac_scale_region(), QWasmWindowStack::raise(), QSGOpenVGFontGlyphCache::release(), QWaylandCompositorPrivate::removeOutput(), QWasmWindowStack::removeWindow(), QSGOpenVGGlyphNode::render(), QSSGQmlUtilities::replaceReferencesToResource(), QObjectPrivate::ConnectionData::resizeSignalVector(), QDeclarativeGeocodeModel::rowCount(), QDeclarativeGeoRouteModel::rowCount(), QDeclarativeSearchResultModel::rowCount(), QWindowsFileSystemWatcherEngineThread::run(), QIOSFileDialog::selectedFilesChanged(), CardLayout::setGeometry(), QSGDistanceFieldGlyphNode::setGlyphs(), QSGOpenVGInternalRectangleNode::setGradientStops(), QSSGSceneDesc::setProperty(), CardLayout::sizeHint(), QWindowsOleEnumFmtEtc::Skip(), QODBCDriverPrivate::splitTableQualifier(), QMimerSQLDriverPrivate::splitTableQualifier(), QTlsPrivate::systemCaCertificates(), AVFMediaPlayer::trackCount(), QCocoaMenuBar::updateMenuBarImmediately(), QDeclarativeCircleMapItemPrivateCPU::updatePolish(), 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 568 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 621 of file qlist.h.

References QList< T >::end().

Referenced by QFileDialogPrivate::_q_deleteCurrent(), QUrlModel::addUrls(), clickableItemAtPosition(), QApplicationPrivate::dispatchEnterLeave(), QGraphicsScenePrivate::dispatchHoverEvent(), QWizardPage::isComplete(), Moc::prependNamespaces(), 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 622 of file qlist.h.

References QList< T >::begin().

Referenced by QFileDialogPrivate::_q_deleteCurrent(), QUrlModel::addUrls(), clickableItemAtPosition(), QtWidgetsActionPrivate::destroy(), QApplicationPrivate::dispatchEnterLeave(), QGraphicsScenePrivate::dispatchHoverEvent(), QWizardPage::isComplete(), Moc::prependNamespaces(), 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 414 of file qlist.h.

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

Referenced by LibHybrisEglServerBuffer::LibHybrisEglServerBuffer(), QtWaylandClient::LibHybrisServerBuffer::LibHybrisServerBuffer(), QEGLPlatformContext::QEGLPlatformContext(), QGLXContext::QGLXContext(), QOCIBatchCleanupHandler::~QOCIBatchCleanupHandler(), QHeaderViewPrivate::_q_sectionsRemoved(), QGraphicsViewPrivate::allocStyleOptionsArray(), QWaylandQuickCompositorQuickExtensionContainer::append_extension(), QPdfBookmarkModelPrivate::appendChildNode(), QQuick3DParticleEmitter::appendEmitBurst(), QQmlPropertyCache::appendMethod(), QQmlPropertyCache::appendProperty(), QQmlPropertyCache::appendSignal(), QList< T >::at(), QWaylandQuickCompositorQuickExtensionContainer::atFunction(), QEglConfigChooser::chooseConfig(), QQuick3DParticleEmitter::clearEmitBursts(), QWaylandQuickCompositorQuickExtensionContainer::clearFunction(), QX11PaintEnginePrivate::clipPolygon_dev(), QCupsPrintEnginePrivate::closePrintDevice(), QmlLsp::codeActionHandler(), convert_Indexed8_to_X32(), convert_Mono_to_X32(), QList< T >::count(), QWaylandQuickCompositorQuickExtensionContainer::countFunction(), QOpenGLTimeMonitorPrivate::create(), QRhiVulkan::create(), QVertexIndexVector::data(), QV4::Heap::DECLARE_HEAP_OBJECT(), QOpenGLShaderProgram::defaultInnerTessellationLevels(), QOpenGLShaderProgram::defaultOuterTessellationLevels(), QOpenGLTimeMonitorPrivate::destroy(), QX11PaintEngine::drawPixmap(), QQuick3DParticleEmitter::emitBurst(), QQuick3DParticleEmitter::emitBurstCount(), QSecureTransportBackend::ensureInitialized(), QQmlBinding::evaluate(), QQmlPropertyBindingJSForBoundFunction::evaluate(), QOCICols::execBatch(), QXcbNativeBackingStore::flush(), QGraphicsViewPrivate::freeStyleOptionsArray(), QX11PlatformPixmap::fromImage(), AssimpUtils::generateMeshData(), QT_BEGIN_NAMESPACE::generateMeshLevelsOfDetail(), BezierEase::getBezierSegment(), QOpenVGContext::getConfigs(), QV4::getGadgetProperty(), QGlyphRun::glyphIndexes(), QRawFont::glyphIndexesForString(), BrcmBuffer::handle(), QBasicPlatformVulkanInstance::init(), 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[](), QIcc::parseTRC(), QSGTextMaskMaterial::populate(), QGlyphRun::positions(), QSGOpenVGHelpers::qDrawSubImage(), QSGOpenVGHelpers::qDrawTiled(), qHash(), QQmlPropertyPrivate::readValueProperty(), QQuick3DParticleEmitter::removeLastEmitBurst(), QQmlObjectCreator::removePendingBinding(), QTreeViewPrivate::removeViewItems(), renderToKTXFileInternal(), QQuick3DParticleEmitter::replaceEmitBurst(), LibHybrisEglServerBuffer::resourceForClient(), QWaylandKeyboardPrivate::sendEnter(), QOpenGLShaderProgram::setDefaultInnerTessellationLevels(), QOpenGLShaderProgram::setDefaultOuterTessellationLevels(), QDynamicRigidBody::setInertiaMatrix(), QCoreGraphicsPaintEnginePrivate::setStrokePen(), QXcbWindow::setWindowIcon(), QGridLayoutEngine::sizeHint(), sortParticles(), QQnxCamera::supportedUnits(), swap_bit_order(), QPainterPath::translate(), QQuickShapeGenericRenderer::triangulateFill(), QQuickShapeGenericRenderer::triangulateStroke(), QSSGQmlUtilities::valueToQml(), QQmlPropertyPrivate::write(), and x11SetClipRegion().

+ Here is the call graph for this function:

◆ data() [2/2]

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

Definition at line 415 of file qlist.h.

References d.

◆ detach()

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

Definition at line 409 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 513 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 866 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 680 of file qlist.h.

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

+ Here is the call graph for this function:

◆ emplaceBack()

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

Definition at line 875 of file qlist.h.

References args, and d.

Referenced by QList< T >::append(), QList< T >::append(), QList< T >::emplace_back(), QQmlComponent::errors(), 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 845 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()

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

Definition at line 682 of file qlist.h.

References d.

Referenced by CPP::WriteInitialization::acceptUI(), QtPrivate::ResultStoreBase::addResults(), QtPrivate::ResultStoreBase::addResults(), Automaton::closure(), QWindowsFileDialogHelper::createNativeDialog(), effectiveTextMargin(), QWasmWindowStack::empty(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), errorFromDiagRecords(), QDockAreaLayout::getGrid(), QBenchmarkValgrindUtils::getNewestFileName(), QSSGLayerRenderData::getSortedOpaqueRenderableObjects(), QSSGLayerRenderData::getSortedScreenTextureRenderableObjects(), QSSGLayerRenderData::getSortedTransparentRenderableObjects(), QWaylandXdgToplevelPrivate::handleAckConfigure(), QQuick3DParticleTrailEmitter::hasBursts(), FolderIterator::hasNext(), QTabBarPrivate::layoutTabs(), QFFmpegImageCapture::newVideoFrame(), QtAndroidMenu::onContextMenuClosed(), QRBTree< T >::order(), QWidgetPrivate::parentGraphicsView(), QWaylandCompositorPrivate::preInit(), QBluetoothServiceInfoPrivate::protocolDescriptor(), qGeomCalc(), AVFAudioDecoder::read(), QV4ProfilerAdapter::sendMessages(), QFormLayoutPrivate::setupVerticalLayoutData(), QWindowSystemInterfacePrivate::WindowSystemEventList::takeFirstOrReturnNull(), QWasmWindowStack::topWindow(), QSslSocketPrivate::verifyErrorsHaveBeenIgnored(), QQmlJS::Dom::QQmlDomAstCreator::visit(), QQmlJS::Dom::QQmlDomAstCreator::visit(), QQmlJS::Dom::QQmlDomAstCreator::visit(), and QQmlJS::Dom::QQmlDomAstCreator::visit().

+ Here is the caller graph for this function:

◆ end() [1/2]

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

Definition at line 609 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(), QFileSystemModelPrivate::_q_fileSystemChanged(), QWizardPrivate::_q_handleFieldObjectDestroyed(), QItemSelectionModelPrivate::_q_layoutChanged(), QSortFilterProxyModelPrivate::_q_sourceHeaderDataChanged(), QGraphicsSceneBspTreeIndexPrivate::_q_updateSortCache(), QDBusAdaptorConnector::addAdaptor(), QWasmIntegration::addContainerElement(), QCommandLineParser::addOptions(), QSSGStageGeneratorBase::addShaderConstantBufferItemMap(), QTextEngine::adjustUnderlines(), QQuickTimeLinePrivate::advance(), QWasmScreen::allWindows(), QQmlJSLinter::applyFixes(), QQuickItemViewPrivate::applyModelChanges(), QQuickItemViewPrivate::applyRemovalChange(), QVarLengthArray< T, Prealloc >::assign(), QTimeZonePrivate::availableTimeZoneIds(), bindFont(), QmlLsp::QQmlCodeModel::buildPathsForFileUrl(), QSSGStageGeneratorBase::buildShaderSourcePass1(), QConcatenateTablesProxyModelPrivate::calculatedColumnCount(), QTextEngine::calculateTabWidth(), QLowEnergyControllerPrivate::characteristicForHandle(), QLowEnergyService::characteristics(), QQmlContextPrivate::cleanInstances(), QOpenGLContextGroupPrivate::cleanup(), QOpenGLTextureCacheWrapper::cleanupTexturesForCacheKey(), QGraphicsSceneBspTreeIndexPrivate::climbTree(), QListViewPrivate::closestIndex(), QmlTypesClassDescription::collect(), QTreeViewPrivate::columnRanges(), combineRecords(), QList< T >::constLast(), convertIterableToVariantList(), QList< T >::crbegin(), createInterfaces(), QKmsDevice::createScreens(), QTlsPrivate::cryptoSettingsForCiphers(), QHeaderView::dataChanged(), QLowEnergyCharacteristic::descriptors(), detectLatestAndroidPlatform(), QBluetoothLocalDevicePrivate::deviceDisconnected(), QListViewPrivate::draggablePaintPairs(), QSvgTinyDocument::draw(), QSvgG::draw(), QSvgSwitch::draw(), QTextDocumentLayoutPrivate::drawFlow(), effectiveTextMargin(), QGraphicsItemPrivate::ensureSequentialSiblingIndex(), QGraphicsScenePrivate::ensureSequentialTopLevelSiblingIndexes(), QListModel::ensureSorted(), QTableModel::ensureSorted(), QTreeModel::ensureSorted(), QGraphicsItemPrivate::ensureSortedChildren(), QGraphicsScenePrivate::ensureSortedTopLevelItems(), QTextTablePrivate::fragmentAdded(), QTextDocumentLayoutPrivate::frameIteratorForYPosition(), generateGlyphTables(), CPP::generateMultiDirectiveBegin(), QGraphicsScenePrivate::gestureEventHandler(), QSSGLayerRenderData::getRenderableItem2Ds(), QLocationUtils::getSatInUseFromNmea(), QSSGLayerRenderData::getSortedOpaqueRenderableObjects(), QSSGLayerRenderData::getSortedScreenTextureRenderableObjects(), QSSGLayerRenderData::getSortedTransparentRenderableObjects(), AndroidCameraPrivate::getSupportedPictureSizes(), AndroidCameraPrivate::getSupportedPreviewSizes(), AndroidCameraPrivate::getSupportedVideoSizes(), QWaylandXdgToplevelPrivate::handleAckConfigure(), huntAndUnregister(), if(), QtPrivate::indexOf(), QMacPrintEnginePrivate::initialize(), QWidgetTextControlPrivate::inputMethodEvent(), QListModel::insert(), QList< T >::insert(), QAndroidPlatformMenuBar::insertMenu(), QAndroidPlatformMenu::insertMenuItem(), QGraphicsItemAnimationPrivate::insertUniquePair(), interfaceListing(), QTimeZonePrivate::isTimeZoneIdAvailable(), QQmlLSUtils::itemsFromTextLocation(), QList< T >::last(), QList< T >::last(), QList< T >::last(), QMediaTimeRange::latestTime(), QTextDocumentLayoutPrivate::layoutFlow(), QWasmWindowStack::lower(), QMimeMagicRule::matches(), mergeStringLiterals(), QFileSystemModel::mimeData(), QTreeModel::mimeData(), QSortFilterProxyModelPrivate::needsReorder(), Compress::operator()(), operator<<(), QList< T >::operator=(), QQuickItemPrivate::paintOrderChildItems(), Moc::parse(), QCommandLineParserPrivate::parse(), QGeoPositionInfoSourcePrivate::pluginsSorted(), QQuickDeliveryAgentPrivate::pointerTargets(), QDBusAdaptorConnector::polish(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items(), qListToSet(), QTest::qMedian(), qMedian(), QtPrivate::QStringList_join(), qt_find_best_framerate_match(), qt_qdnsmailexchangerecord_sort(), qt_qdnsservicerecord_sort(), 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(), QQmlObjectCreator::removePendingBinding(), QSortFilterProxyModel::removeRows(), QWasmWindowStack::removeWindow(), QWasmWindowStack::rend(), QWasmIntegration::resizeScreen(), QQmlImports::resolvedCompositeSingletons(), 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(), QTreeViewPrivate::select(), QListViewPrivate::selection(), selectionIsEmpty(), QHttp2ProtocolHandler::sendRequest(), QQmlDebugTranslationServicePrivate::sendTranslatableTextOccurrences(), QQmlDebugTranslationServicePrivate::sendTranslationIssues(), QWasmIntegration::setContainerElements(), QTableModel::setItem(), QList< T >::sliced(), QQuick3DParticleInstanceTable::sort(), QTableModel::sort(), QStringListModel::sort(), QSortFilterProxyModelPrivate::sort_source_rows(), sortByHeight(), QStandardItemPrivate::sortChildren(), sortContainer(), sortInstances(), QGraphicsSceneBspTreeIndexPrivate::sortItems(), QTreeModel::sortItems(), sortParticles(), sortStringList(), splitPolygon(), QQuickOverlayPrivate::stackingOrderDrawers(), QQmlJS::Dom::QmlComponent::subComponentsNames(), QTextDocumentWriter::supportedDocumentFormats(), QImageReaderWriterHelpers::supportedMimeTypes(), QAndroidPlatformMenu::syncMenuItem(), QTextBlockFormat::tabPositions(), QQuickTransitionManager::transition(), uenumToIdList(), uniqueRevisions(), QSortFilterProxyModelPrivate::updateChildrenMapping(), QQuickDialogButtonBoxPrivate::updateLayout(), QQuickTextEdit::updatePaintNode(), QQmlJS::Dom::updatePathFromOwnerQList(), QTableModel::updateRowIndexes(), QQmlPropertyPrivate::urlSequence(), QWasmWindowStack::windowPositionPreferenceChanged(), QTimeZonePrivate::windowsIdToIanaIds(), and QTextOdfWriter::writeBlockFormat().

+ Here is the call graph for this function:

◆ end() [2/2]

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

Definition at line 612 of file qlist.h.

References d.

◆ endsWith()

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

Definition at line 635 of file qlist.h.

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

+ Here is the call graph for this function:

◆ erase() [1/2]

template<typename T >
QList< T >::iterator QList< T >::erase ( const_iterator  begin,
const_iterator  end 
)

Definition at line 882 of file qlist.h.

References begin(), i, Q_ASSERT, Q_ASSERT_X, and remove().

Referenced by QWizardPrivate::_q_handleFieldObjectDestroyed(), QQuickItemViewPrivate::applyModelChanges(), QQuickItemViewPrivate::applyRemovalChange(), QTimeZonePrivate::availableTimeZoneIds(), QQmlContextPrivate::cleanInstances(), QmlTypesClassDescription::collect(), QBluetoothLocalDevicePrivate::deviceDisconnected(), huntAndUnregister(), QQmlDelegateModelPrivate::itemsRemoved(), mergeStringLiterals(), QTreeModel::mimeData(), qt_find_best_framerate_match(), Vsp2HardwareLayerIntegration::remove(), QWasmIntegration::removeContainerElement(), QAndroidEventDispatcherStopper::removeEventDispatcher(), QtWaylandClient::QWaylandDisplay::removeListener(), QAndroidPlatformMenuBar::removeMenu(), QAndroidPlatformMenu::removeMenuItem(), QQmlObjectCreator::removePendingBinding(), QQmlTableModel::removeRow(), QQmlTreeModelToTableModel::removeVisibleRows(), QWasmWindowStack::removeWindow(), QHttp2ProtocolHandler::sendRequest(), QWasmIntegration::setContainerElements(), sortContainer(), sortStringList(), QImageReaderWriterHelpers::supportedMimeTypes(), QSSGLayerRenderData::takeNode(), QQuickTransitionManager::transition(), uenumToIdList(), uniqueRevisions(), and QSortFilterProxyModelPrivate::updateChildrenMapping().

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

◆ erase() [2/2]

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

Definition at line 625 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 896 of file qlist.h.

References capacity, copy(), QtPrivate::QGenericArrayOps< T >::copyAppend(), d, and qMin().

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

+ 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 628 of file qlist.h.

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

Referenced by QGeoRectangle::QGeoRectangle(), QKeySequence::QKeySequence(), QtGraphicsAnchorLayout::SequentialAnchorData::SequentialAnchorData(), QGraphicsItem::~QGraphicsItem(), QCompleterPrivate::_q_completionSelected(), QHttpNetworkConnectionChannel::_q_encrypted(), QFileDialog::accept(), add(), QPlainTestLogger::addBenchmarkResults(), QQuickViewTestUtils::QaimModel::addItems(), QQuickItemViewPrivate::applyModelChanges(), QQmlJSImportVisitor::breakInheritanceCycles(), QQuickPathView::childMouseEventFilter(), QQuickSplitView::childMouseEventFilter(), QEglConfigChooser::chooseConfig(), QDeclarativeGeoMap::clearMapItems(), QGraphicsScenePrivate::clearMouseGrabber(), QGeoCameraTilesPrivate::clipFootprintToMap(), QCupsPrintEnginePrivate::closePrintDevice(), QQuickGridViewPrivate::colPosAt(), QQuickShapeCurveMaterial::compare(), QQuickShapeLinearGradientMaterial::compare(), QQuickShapeRadialGradientMaterial::compare(), QQuickShapeConicalGradientMaterial::compare(), QGuiApplicationPrivate::createPlatformIntegration(), QQuickLabsPlatformFolderDialog::currentFolder(), QTlsPrivate::TlsKeyGeneric::decodePem(), QXcbDrag::defaultAction(), QMessageBoxPrivate::detectEscapeButton(), detectLatestAndroidPlatform(), doActivate(), QQuickParticleEmitter::emitWindow(), QQuickTrailEmitter::emitWindow(), QuickTestResult::endDataRun(), QListModel::ensureSorted(), QTreeModel::ensureSorted(), QQuickDeliveryAgent::event(), QQuickOverlay::eventFilter(), QQmlObjectCreator::finalize(), QIndexMapper::first(), QQuickItemViewPrivate::firstItemInView(), QPageRanges::firstPage(), QList< T >::front(), QList< T >::front(), QGradientCache::generateGradientColorTable(), QEglFSScreen::grabWindow(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::handleActivityResult(), hasSelection(), QQueue< T >::head(), QQueue< T >::head(), if(), importCompletions(), QMacPrintEnginePrivate::initialize(), QQuickViewTestUtils::QaimModel::insertItems(), QGraphicsItem::isBlockedByModalPanel(), QPainterPath::isEmpty(), QGraphicsView::itemAt(), QGraphicsScene::itemAt(), QKeySequenceEdit::keyPressEvent(), QDialogButtonBoxPrivate::layoutButtons(), QGeoPathPrivate::length(), main(), mapToGlobalTransform(), QNdefFilter::match(), QQuickTextNodeEngine::mergeProcessedNodes(), QConcatenateTablesProxyModel::mimeData(), QGuiApplication::modalWindow(), QQuickFileDialog::onShow(), QQuickGridViewPrivate::originPosition(), QGeoRouteParserOsrmV5Private::parseReply(), QQnxIntegration::primaryDisplay(), QXcbConnection::primaryScreen(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items(), qt_find_best_resolution_match(), QPanGestureRecognizer::recognize(), QQuickWidgetRenderControl::renderWindow(), QQuickGridViewPrivate::rowPosAt(), QThreadPoolThread::run(), QQuickPdfSelection::selectAll(), QQuickFolderDialog::selectedFolder(), QSimplex::setConstraints(), setModelProperties(), QXcbWindow::setNetWmStateOnUnmappedWindow(), QXcbWindow::setWmWindowType(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::show(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QQuickGridViewPrivate::snapPosAt(), QGraphicsAnchorLayoutPrivate::solvePreferred(), QTreeModel::sortItems(), QList< T >::startsWith(), QSvgNode::styleProperty(), QList< T >::takeFirst(), QGeoCameraTilesPrivate::tilesFromPolygon(), QPainterPath::toFillPolygon(), QPainterPath::toFillPolygons(), QGeoJson::toString(), QtWaylandClient::QWaylandTouchExtension::touch_extension_touch(), QThreadPoolPrivate::tryToStartMoreThreads(), QDeclarativePolygonMapItemPrivateCPU::updateCache(), QQuickNinePatchImagePrivate::updateInsets(), QQuickNinePatchImagePrivate::updatePaddings(), QQuickFileDialogImplPrivate::updateSelectedFile(), QGeoMapPolygonGeometry::updateSourcePoints(), QQuickMultiPointTouchArea::updateTouchData(), QGraphicsScene::wheelEvent(), QTimeZonePrivate::windowsIdToDefaultIanaId(), QNfcTagType4NdefFsm::writeMessages(), QNearFieldTargetPrivateImpl::writeNdefMessages(), and QtWaylandClient::QWaylandQtKeyExtension::zqt_key_v1_key().

+ Here is the call graph for this function:

◆ first() [2/3]

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

Definition at line 629 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 638 of file qlist.h.

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

+ 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 715 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 722 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 718 of file qlist.h.

References vector.

◆ front() [1/2]

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

Definition at line 684 of file qlist.h.

References QList< T >::first().

Referenced by argv0BaseName(), Automaton::closure(), combineRecords(), findAdapterForAddress(), QQmlProfilerClientPrivate::forwardDebugMessages(), QLocationUtils::getSatInUseFromNmea(), QWindowsScreenManager::handleScreenChanges(), QQmlPreviewHandler::loadUrl(), QtAndroidMenu::onOptionsItemSelected(), QtAndroidMenu::onPrepareOptionsMenu(), QWindowsNativeFileDialogBase::onSelectionChange(), 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 685 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 474 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 479 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 484 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 471 of file qlist.h.

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

Referenced by FolderIterator::FolderIterator(), QObjectCleanupHandler::add(), QQmlTypeModule::add(), QQmlDelegateModelPrivate::addCacheItem(), QMediaTimeRangePrivate::addInterval(), QQmlXmlListModel::appendRole(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QV4DebugClient::backtrace(), QV4DebugClient::changeBreakpoint(), QV4DebugClient::clearBreakpoint(), QTreeWidgetItem::clone(), QStandardItemModelPrivate::columnsInserted(), QV4DebugClient::continueDebugging(), QQuickSplitViewPrivate::createHandleItem(), QThreadPoolPrivate::enqueueTask(), QListModel::ensureSorted(), QTableModel::ensureSorted(), QTreeModel::ensureSorted(), QQmlJSScope::enumerations(), QV4DebugClient::evaluate(), QOpenGLEngineSharedShaders::findProgramInCache(), QTextTablePrivate::fragmentAdded(), QV4DebugClient::frame(), QWidgetTextControlPrivate::inputMethodEvent(), 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(), QTreeWidgetItem::insertChildren(), QStandardItemPrivate::insertColumns(), QTableModel::insertColumns(), QTextTable::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(), QGraphicsItemAnimationPrivate::insertUniquePair(), QTreeViewPrivate::insertViewItems(), QSplitterPrivate::insertWidget(), QGeoServiceProviderPrivate::loadPluginMetadata(), QV4DebugClient::lookup(), QQuickDeliveryAgentPrivate::mergePointerTargets(), QQmlJSScope::methods(), QGraphicsItem::mouseReleaseEvent(), QQuickDeliveryAgentPrivate::pointerTargets(), QWaitConditionPrivate::pre(), QQmlJSScope::properties(), QWasmWindowStack::pushWindow(), QPluginLoader::qRegisterStaticPluginFunction(), QHeaderViewPrivate::read(), 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(), AndroidMediaPlayer::tracksInfo(), and QGeoMapPolygonGeometry::updateSourcePoints().

+ 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 854 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 489 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 410 of file qlist.h.

References d.

◆ isEmpty()

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

Definition at line 390 of file qlist.h.

References d.

Referenced by QFFmpegMediaFormatInfo::QFFmpegMediaFormatInfo(), QGeoRectangle::QGeoRectangle(), QTreeWidgetItemIterator::QTreeWidgetItemIterator(), QWinSettingsPrivate::QWinSettingsPrivate(), StateSaver::StateSaver(), QAbstractFileEngineHandler::~QAbstractFileEngineHandler(), QDeclarativeGeoMap::~QDeclarativeGeoMap(), QGraphicsItem::~QGraphicsItem(), QObjectPrivate::~QObjectPrivate(), QOffscreenIntegration::~QOffscreenIntegration(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QQmlDataBlob::~QQmlDataBlob(), QSGRootNode::~QSGRootNode(), QToolBarLayout::~QToolBarLayout(), QTreeWidgetItem::~QTreeWidgetItem(), QXcbConnection::~QXcbConnection(), QAbstractSocketPrivate::_q_abortConnectionAttempt(), QCompleterPrivate::_q_completionSelected(), QAbstractSocketPrivate::_q_connectToNextAddress(), QGraphicsScenePrivate::_q_emitUpdated(), QItemSelectionModelPrivate::_q_layoutChanged(), QGraphicsScenePrivate::_q_polishItems(), QItemSelectionModelPrivate::_q_rowsAboutToBeRemoved(), QHeaderViewPrivate::_q_sectionsRemoved(), QBluetoothServiceDiscoveryAgentPrivate::_q_serviceDiscoveryFinished(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutAboutToBeChanged(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutChanged(), QSortFilterProxyModelPrivate::_q_sourceDataChanged(), QSortFilterProxyModelPrivate::_q_sourceLayoutAboutToBeChanged(), QSortFilterProxyModelPrivate::_q_sourceLayoutChanged(), QQuickLoaderPrivate::_q_sourceLoaded(), QAbstractSocketPrivate::_q_startConnecting(), QHttpNetworkConnectionPrivate::_q_startNextRequest(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QFontComboBoxPrivate::_q_updateModel(), QFileDialog::accept(), CPP::WriteInitialization::acceptWidget(), accumulatedSize(), QEventDispatcherUNIXPrivate::activateSocketNotifiers(), QMdiAreaPrivate::activateWindow(), QApplication::activePopupWidget(), QWindowsFontDatabase::addApplicationFont(), QPlainTestLogger::addBenchmarkResults(), QPixmapIconEngine::addFile(), QQmlImports::addLibraryImport(), QQuickOverlayPrivate::addPopup(), QQuickTextNode::addTextDocument(), QFbScreen::addWindow(), QTextEngine::adjustUnderlines(), QDirIteratorPrivate::advance(), QQuickCustomAffector::affectSystem(), QHttpNetworkConnectionChannel::allDone(), QPointerEvent::allPointsGrabbed(), QQuickDeliveryAgentPrivate::allPointsGrabbed(), QQmlSA::PassManagerPrivate::analyze(), QAnimationGroupPrivate::animationRemoved(), QQuickDeliveryAgentPrivate::anyPointGrabbed(), QSvgStyle::apply(), QQuickAnimatorPrivate::apply(), QQmlJSLinter::applyFixes(), QSyntaxHighlighterPrivate::applyFormatChanges(), QQuickListViewPrivate::applyInsertionChange(), QQuickItemViewPrivate::applyModelChanges(), argv0BaseName(), QQmlJS::Dom::ModuleIndex::autoExports(), QTextLayout::boundingRect(), QCss::StyleSheet::buildIndexes(), QmlLsp::QQmlCodeModel::buildPathsForFileUrl(), QConcatenateTablesProxyModelPrivate::calculatedColumnCount(), QGraphicsAnchorLayoutPrivate::calculateGraphs(), QQmlIncubatorPrivate::calculateStatus(), QTextEngine::calculateTabWidth(), QDeclarativeGeocodeModel::cancel(), QDeclarativeGeoRouteModel::cancel(), QTextMarkdownImporter::cbEnterBlock(), QTextMarkdownImporter::cbEnterSpan(), QTextMarkdownImporter::cbLeaveBlock(), QTextMarkdownImporter::cbLeaveSpan(), QTextMarkdownImporter::cbText(), QSvgHandler::characters(), QTlsPrivate::TlsCryptographOpenSSL::checkSslErrors(), Moc::checkSuperClasses(), checkTeamcity(), QWidgetPrivate::childAt_helper(), QGraphicsItemPrivate::childrenBoundingRectHelper(), QQmlTreeModelToTableModel::childrenVisible(), QObjectCleanupHandler::clear(), QThreadPoolPrivate::clear(), QMenu::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(), WorkspaceHandlers::clientInitialized(), QGraphicsSceneBspTreeIndexPrivate::climbTree(), QTreeWidgetItem::clone(), QCborStreamWriterPrivate::closeContainer(), codesignBundle(), QQuickGridViewPrivate::colPosAt(), QHttpHeaderParser::combinedHeaderValue(), QQmlTypeCompiler::compile(), computeBBox(), QGraphicsItemPrivate::TransformData::computedFullTransform(), QLowEnergyControllerPrivateBluez::connectToDevice(), QList< T >::constFirst(), QList< T >::constLast(), QWindowsMimeURI::convertToMime(), QOpenGLTimeMonitorPrivate::create(), QGraphicsScene::createItemGroup(), QQmlType::createProxy(), QNetworkAccessManager::createRequest(), QKmsDevice::createScreens(), QSslContext::createSsl(), QFileDialogPrivate::createWidgets(), QSvgHandler::currentColor(), QQuickLabsPlatformFolderDialog::currentFolder(), QPainterPath::currentPosition(), QDeclarativeSupportedCategoriesModel::data(), QHeaderView::dataChanged(), QQmlScriptBlob::dataReceived(), QGraphicsSceneBspTree::debug(), QTlsPrivate::TlsKeyGeneric::decodeDer(), QKeySequencePrivate::decodeString(), QXcbDrag::defaultAction(), QmlIR::IRBuilder::defineQMLObject(), QBoxLayoutPrivate::deleteAll(), QGridLayoutPrivate::deleteAll(), LinuxDmabufClientBufferIntegration::deleteOrphanedTextures(), QQuickDeliveryAgentPrivate::deliverUpdatedPoints(), deployQtFrameworks(), deployQtFrameworks(), QHttpNetworkConnectionPrivate::dequeueRequest(), QGeoAreaMonitorPollingPrivate::deregisterClient(), QSGAreaAllocator::deserialize(), QOpenGLTimeMonitorPrivate::destroy(), QMacMimeRegistry::destroyMimeTypes(), detectLatestAndroidPlatform(), QVncServer::discardClient(), QLowEnergyControllerPrivateBluezDBus::discoverServiceDetails(), QApplicationPrivate::dispatchEnterLeave(), QGraphicsScenePrivate::dispatchHoverEvent(), QBluetoothSocket::doDeviceDiscovery(), QDBusConnectionPrivate::doDispatch(), QWindowsNativeFileDialogBase::doExec(), QWindowsXpNativeFileDialog::doExec(), QQmlTypeData::done(), QPdfSearchModelPrivate::doSearch(), QGraphicsScenePrivate::draw(), QTextLayout::draw(), QTextLayout::drawCursor(), QTextDocumentLayoutPrivate::drawFlow(), QGraphicsScenePrivate::drawItemHelper(), QGraphicsScenePrivate::drawItems(), QX11PaintEngine::drawPixmap(), 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::endVisitHelper(), QRhiVulkan::enqueueResourceUpdates(), QResourcePrivate::ensureChildren(), QDialogButtonBoxPrivate::ensureFirstAcceptIsDefault(), QResourcePrivate::ensureInitialized(), QTextDocumentLayoutPrivate::ensureLayouted(), QGraphicsItemPrivate::ensureSortedChildren(), QGraphicsScenePrivate::enterModal(), QDBusMessage::errorMessage(), QGraphicsSceneBspTreeIndexPrivate::estimateItems(), QObject::event(), QCompleter::eventFilter(), QQuickOverlay::eventFilter(), QQuickDeliveryAgentPrivate::eventInDelivery(), QCoreApplication::exec(), QOCICols::execBatch(), QQmlTreeModelToTableModel::expandPendingRows(), QTreeView::expandRecursively(), QItemSelectionModelPrivate::expandSelection(), QGeoJson::exportGeoJson(), QQmlJS::Dom::ModuleIndex::exportsWithNameAndMinorVersion(), DarwinBluetooth::extract_service_record(), QConfFileSettingsPrivate::fileName(), QWinSettingsPrivate::fileName(), QHttpNetworkConnectionPrivate::fillPipeline(), QItemSelectionModelPrivate::finalize(), QQmlProfilerClientPrivate::finalize(), QQmlObjectCreator::finalize(), findAdapterForAddress(), findMinGWRuntimePaths(), findObject(), QList< T >::first(), QList< T >::first(), QPrintDevice::format(), QWindowsMimeImage::formatsForMime(), QLastResortMimes::formatsForMime(), QQmlProfilerClientPrivate::forwardDebugMessages(), QTextDocumentLayoutPrivate::frameIteratorForYPosition(), QIcon::fromTheme(), QSSGLayerRenderData::frustumCulling(), Generator::generateCode(), QQuick3DParticleEmitter::generateEmitBursts(), QmlIR::IRBuilder::generateFromQml(), QQuickShapeGradientCache::get(), getBinaryDependencies(), FileInfoThread::getFileInfos(), QGstreamerFormatInfo::getMuxerList(), QQuick3DParticleCustomShape::getPosition(), QSSGLayerRenderData::getRenderableItem2Ds(), SamplePool::getSample(), QLocationUtils::getSatInUseFromNmea(), QPdfDocument::getSelectionAtIndex(), QGeoTileFetcherOsm::getTileImage(), QOpenGLEngineShaderManager::getUniformLocation(), QGraphicsScenePrivate::grabKeyboard(), QGraphicsScenePrivate::grabMouse(), QEglFSScreen::grabWindow(), QSortFilterProxyModelPrivate::handle_filter_changed(), QEglFSScreen::handleCursorMove(), QHttpNetworkConnectionChannel::handleStatus(), QSGSoftwareEventQueue::hasMoreEvents(), QSGRenderThreadEventQueue::hasMoreEvents(), SymbolStack::hasNext(), QDirIterator::hasNext(), AndroidContentFileEngineIterator::hasNext(), ServerAcceptanceThread::hasPendingConnections(), QQmlJSMetaEnum::hasValues(), QQmlXMLHttpRequest::header(), QHttpNetworkHeaderPrivate::headerField(), headerValue(), QFileDialogPrivate::helperPrepareShow(), QCommandLineParserPrivate::helpText(), QListModeViewBase::horizontalOffset(), QListModeViewBase::horizontalScrollToValue(), importCompletions(), importImp(), QQmlPluginImporter::importPlugins(), QQmlIncubatorPrivate::incubate(), QQuickLoaderPrivate::incubatorStateChanged(), QListModel::index(), QDeclarativeSupportedCategoriesModel::index(), QSequentialAnimationGroupPrivate::indexForCurrentTime(), QListModeViewBase::indexToListViewItem(), QHttpNetworkConnectionChannel::init(), QQmlTypePrivate::init(), QFileDialogPrivate::init(), init_platform(), QConfFileSettingsPrivate::initAccess(), QEglFSKmsGbmScreen::initCloning(), QQmlTypePrivate::initEnums(), QMacPrintEnginePrivate::initialize(), QQuickListViewPrivate::initializeCurrentItem(), QBasicPlatformVulkanInstance::initInstance(), QTreeWidgetItem::insertChild(), QTreeWidgetItem::insertChildren(), QStandardItemPrivate::insertColumns(), QTreeModel::insertColumns(), QTextTable::insertColumns(), QToolBarAreaLayoutInfo::insertItem(), QComboBox::insertItems(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QToolBarAreaLayoutInfo::insertToolBarBreak(), QDeclarativeGeoMapItemView::instantiateAllItems(), QListModeViewBase::intersectingSet(), QSSGRenderRay::intersectWithBVH(), QGraphicsItem::isBlockedByModalPanel(), QWidgetRepaintManager::isDirty(), QUrlQuery::isEmpty(), QObjectCleanupHandler::isEmpty(), QJsonObject::isEmpty(), QPageRanges::isEmpty(), QGlyphRun::isEmpty(), QSqlRecord::isEmpty(), Parser::isEmpty(), QIndexMapper::isEmpty(), QMediaTimeRange::isEmpty(), QGeoPathPrivate::isEmpty(), QQmlType::isExtendedType(), QSslConfiguration::isNull(), QShaderDescription::isValid(), QPdfSelection::isValid(), QGuiApplicationPrivate::isWindowBlocked(), QConfFileSettingsPrivate::isWritable(), QGraphicsView::itemAt(), QGraphicsScene::itemAt(), QTreeViewPrivate::itemHeight(), QQmlTreeModelToTableModel::itemIndex(), QQmlLSUtils::itemsFromTextLocation(), QQuickItemPrivate::itemToParentTransform(), QQmlJS::Dom::ModuleIndex::iterateDirectSubpaths(), QXcbKeyboard::keymapFromCore(), QList< T >::last(), QList< T >::last(), QQuickGridViewPrivate::lastPosition(), QQuickListViewPrivate::lastPosition(), QMediaTimeRange::latestTime(), QDialogButtonBoxPrivate::layoutButtons(), QTextDocumentLayoutPrivate::layoutFlow(), QQuickListViewPrivate::layoutVisibleItems(), QCborStreamReader::leaveContainer(), QGraphicsScenePrivate::leaveScene(), QGeoPathPrivate::lineContains(), QQmlJSLinter::lintFile(), QQmlJSLinter::lintModule(), QBluetoothServer::listen(), QResourcePrivate::load(), QV4::Document::load(), QSslConfiguration::localCertificate(), QQuickItemPrivate::localizedTouchEvent(), QQmlImportDatabase::locateLocalQmldir(), QHeaderViewPrivate::logicalIndex(), QHostInfoAgent::lookup(), Preprocessor::macroExpand(), Preprocessor::macroExpandIdentifier(), main(), main(), mapToGlobalTransform(), QWidgetRepaintManager::markDirty(), QGraphicsScenePrivate::markDirty(), QNdefFilter::match(), QMimeMagicRule::matches(), QCocoaEventDispatcherPrivate::maybeStartCFRunLoopTimer(), QWaylandKeyboardPrivate::maybeUpdateKeymap(), QQuickTextNodeEngine::mergeProcessedNodes(), QQmlType::metaObject(), QXcbMime::mimeConvertToFormat(), QListWidget::mimeData(), QTableWidget::mimeData(), QConcatenateTablesProxyModel::mimeData(), QStandardItemModel::mimeData(), QApplicationPrivate::modalState(), QQuickDeliveryAgentPrivate::mousePointData(), QGraphicsScenePrivate::mousePressEventHandler(), QListView::moveCursor(), QOpenGLCompositor::moveToTop(), QFileDialogPrivate::navigate(), SymbolStack::next(), ServerAcceptanceThread::nextPendingConnection(), QQuickItemPrivate::nextPrevItemInTabFocusChain(), QMdiAreaPrivate::nextVisibleSubWindow(), VDMAbstractItemModelDataType::notify(), QApplication::notify(), QQuickFileDialog::onCreate(), SocketWorker::onReadyRead(), QQuickFileDialog::onShow(), operator<<(), QTextFormat::operator==(), QQuickGridViewPrivate::originPosition(), QQuickListViewPrivate::originPosition(), QPdfSearchModelPrivate::pageAndIndexForResult(), QGraphicsView::paintEvent(), QDeclarativeSupportedCategoriesModel::parent(), QCborStreamReader::parentContainerType(), Moc::parse(), QQuickStyledTextPrivate::parse(), QCommandLineParserPrivate::parse(), QMimeTypeParserBase::parse(), QQmlDebugServerImpl::parseArguments(), Moc::parseClassHead(), QDateTimeParser::parseFormat(), Moc::parseFunctionArguments(), QHttpHeaderParser::parseHeaders(), parseOtoolLibraryLine(), parseTracepoint(), QMainWindowLayout::plug(), LocationSingleton::polygon(), QQuickContext2D::popState(), QQuickStackViewPrivate::popToItem(), QQuickListViewPrivate::positionAt(), QWaitConditionPrivate::post(), postProcessQmldir(), QWaitConditionPrivate::pre(), QV4::Script::precompile(), QHttpNetworkConnectionPrivate::predictNextRequest(), QHttpNetworkConnectionPrivate::predictNextRequestsReply(), QSSGLayerRenderData::prepareForRender(), QSSGDebugDrawSystem::prepareGeometry(), QGraphicsItem::prepareGeometryChange(), QPlace::primaryEmail(), QPlace::primaryFax(), QPlace::primaryPhone(), QXcbConnection::primaryScreen(), QPlace::primaryWebsite(), QGeoJson::printQvariant(), QQmlProfilerClientPrivate::processCurrentEvent(), QGraphicsScenePrivate::processDirtyItemsRecursive(), QEvdevTouchScreenData::processInputEvent(), QQmlJSLogger::processMessages(), processNode(), Scheduler::processSamplesInQueue(), QGeoSatelliteInfoSourceAndroid::processSatelliteUpdate(), processSentence(), QTreeWidgetItemPrivate::propagateDisabled(), QBluetoothServiceInfo::protocolServiceMultiplexer(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items_to_add(), QQmlMetaType::proxyData(), QQuickStackViewPrivate::pushElements(), Q_LOGGING_CATEGORY(), qCreateParamString(), qDBusIntrospectObject(), qlocationutils_readGga(), qlocationutils_readGll(), qlocationutils_readGsa(), qlocationutils_readRmc(), qlocationutils_readVtg(), qlocationutils_readZda(), QQmlBoundSignal_callback(), QtPrivate::QStringList_join(), qt_call_post_routines(), qt_fontHasNarrowOutlines(), qt_qdnsmailexchangerecord_sort(), qt_qdnsservicerecord_sort(), QNetworkAccessManagerPrivate::queryProxy(), quick_test_main_with_setup(), reachableSymbols(), QAndroidAudioDecoder::read(), QHeaderViewPrivate::read(), QCacheItem::read(), readElfExecutable(), readLowDepthIcon(), QMdi::RegularTiler::rearrange(), QMdi::SimpleCascader::rearrange(), QMdi::IconTiler::rearrange(), QMdiAreaPrivate::rearrange(), QFlickGestureRecognizer::recognize(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QShortcutPrivate::redoGrab(), QQuickItemViewPrivate::refill(), QDBusConnection::registerObject(), QEglFSKmsGbmDevice::registerScreenCloning(), QEglFSKmsVsp2Device::registerScreenCloning(), QBluetoothServiceInfoPrivate::registerService(), QConfFileSettingsPrivate::remove(), QWasmIntegration::removeContainerElement(), QOpenGLContextGroupPrivate::removeContext(), QQuickDeliveryAgentPrivate::removeGrabber(), QGraphicsScenePrivate::removePopup(), QQuickOverlayPrivate::removePopup(), QHttpNetworkConnectionPrivate::removeReply(), QWaylandOutputPrivate::removeView(), QOpenGLCompositor::removeWindow(), QSGOpenVGInternalRectangleNode::render(), ReflectionMapPass::renderPass(), ShadowMapPass::renderPrep(), ReflectionMapPass::renderPrep(), ZPrePassPass::renderPrep(), ScreenMapPass::renderPrep(), MainPass::renderPrep(), QAbstractItemViewPrivate::renderToPixmap(), QQuickStackViewPrivate::replaceElements(), QNetworkReplyHttpImplPrivate::replySslErrors(), QDeclarativeGeocodeModel::reset(), QDeclarativeGeoRouteModel::reset(), QQmlProfilerClientPrivate::resolveStackTop(), QAnimationTimer::restartAnimationTimer(), QQmlAnimationTimer::restartAnimationTimer(), QMainWindowLayoutState::restoreState(), QMacPasteboard::retrieveData(), QHostInfoAgent::reverseLookup(), QMainWindowLayout::revert(), QSvgStyle::revert(), QDeclarativeSupportedCategoriesModel::rowCount(), QQuickGridViewPrivate::rowPosAt(), QThreadPoolThread::run(), runMoc(), QPixmapIconEngine::scaledPixmap(), QEglFSDeviceIntegration::screenDestroy(), QMdiAreaPrivate::scrollBarPolicyChanged(), QListModeViewBase::scrollContentsBy(), QIconModeViewBase::scrollContentsBy(), QTreeViewPrivate::select(), QQuickPdfSelection::selectAll(), QListViewPrivate::selectAll(), QGtk3FileDialogHelper::selectedFiles(), QQuickFolderDialog::selectedFolder(), QFutureInterfaceBasePrivate::sendCallOut(), QFutureInterfaceBasePrivate::sendCallOuts(), QV4ProfilerAdapter::sendMessages(), QCocoaEventDispatcherPrivate::sendQueuedUserInputEvents(), QGraphicsScenePrivate::sendTouchBeginEvent(), QPointingDevicePrivate::sendTouchCancelEvent(), QSGAreaAllocator::serialize(), QBluetoothServer::serverAddress(), QBluetoothServiceInfoPrivate::serverChannel(), QConfFileSettingsPrivate::set(), QSGBasicInternalRectangleNode::setColor(), QSimplex::setConstraints(), QPlace::setContactDetails(), QWasmIntegration::setContainerElements(), QSequentialAnimationGroupPrivate::setCurrentAnimation(), QQmlDataBlob::setError(), QTreeWidgetItem::setFlags(), AndroidCameraPrivate::setFocusAreas(), QSGDistanceFieldGlyphCache::setGlyphsPosition(), QSGDistanceFieldGlyphCache::setGlyphsTexture(), QTableModel::setItemData(), QWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLocale_helper(), QStandardItemPrivate::setModel(), setModelProperties(), QXcbWindow::setNetWmStateOnUnmappedWindow(), QPdf::Stroker::setPen(), QSSGSceneDesc::setProperty(), QQmlImportInstance::setQmldirContent(), QBenchmarkTestMethodData::setResults(), QListView::setSelection(), QTreeWidget::setSelectionModel(), QEasingCurvePrivate::setType_helper(), QQmlOpenMetaObject::setValues(), QXcbWindow::setWindowIcon(), QXcbWindow::setWmWindowType(), QQuickPlatformFileDialog::show(), QIOSMessageDialog::show(), QComboBox::showPopup(), QGraphicsAnchorLayoutPrivate::simplifyGraph(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QGraphicsAnchorLayoutPrivate::simplifyVertices(), sm_performSaveYourself(), QQuickGridViewPrivate::snapPosAt(), QT_BEGIN_NAMESPACE::socket_protocol(), QBluetoothServiceInfo::socketProtocol(), QDirPrivate::sortFileList(), QSortFilterProxyModelPrivate::source_items_inserted(), QHttpThreadDelegate::sslErrorsSlot(), QQmlAnimationTimer::startAnimations(), QQuickOverlayPrivate::startDrag(), QSvgHandler::startElement(), QTlsPrivate::TlsCryptographOpenSSL::startHandshake(), QBluetoothServiceDiscoveryAgentPrivate::startServiceDiscovery(), QList< T >::startsWith(), QUnifiedTimer::stopAnimationTimer(), QQmlProfilerServiceImpl::stopProfiling(), QGradient::stops(), QQmlAnimationTimer::stopTimer(), QQuickItemViewPrivate::storeFirstVisibleItemPosition(), QSvgNode::styleProperty(), QWidgetPrivate::subtractOpaqueChildren(), QWidgetPrivate::subtractOpaqueSiblings(), QMdiAreaPrivate::subWindowList(), QRhiGles2::supportedSampleCounts(), QQuick3DSceneRenderer::synchronize(), QNetworkProxyFactory::systemProxyForQuery(), QMainWindowLayout::takeAt(), QTreeWidgetItem::takeChild(), QStandardItem::takeChild(), QTreeWidgetItem::takeChildren(), QSGSoftwareEventQueue::takeEvent(), QList< T >::takeFirst(), QXcbEventQueue::takeFirst(), QList< T >::takeLast(), QQmlTreeModelToTableModel::testConsistency(), QGeoCameraTilesPrivate::tilesFromPolygon(), QPainterPath::toFillPolygon(), QPainterPath::toFillPolygons(), FunctionDef::toJson(), Preprocessor::tokenize(), QXkbCommon::toKeysym(), QTest::toString(), QGeoJson::toString(), QtWaylandClient::QWaylandTouchExtension::touch_extension_touch(), QtAndroidInput::touchCancel(), QtAndroidInput::touchEnd(), QGraphicsScenePrivate::touchEventHandler(), QQuickTransitionManager::transition(), QQuickPropertyAnimation::transition(), QQuickSmoothedAnimation::transition(), QQuickSpringAnimation::transition(), QQmlJSUtils::traverseFollowingQmlIrObjectStructure(), QThreadPoolPrivate::tryStart(), QThreadPoolPrivate::tryToStartMoreThreads(), QLocale::uiLanguages(), QGraphicsScenePrivate::ungrabKeyboard(), QGraphicsScenePrivate::ungrabMouse(), QMainWindowLayout::unplug(), QAnimationTimer::unregisterAnimation(), QQmlAnimationTimer::unregisterAnimation(), QSGSoftwareInternalRectangleNode::update(), QMdiAreaPrivate::updateActiveWindow(), updateBBox(), QGuiApplicationPrivate::updateBlockedStatus(), QQuickButtonGroupPrivate::updateCheckState(), QWindowsDirect2DPaintEnginePrivate::updateClipEnabled(), QQuickListViewPrivate::updateCurrentSection(), QSGBasicInternalRectangleNode::updateGeometry(), QGeoCameraTilesPrivate::updateGeometry(), QQuickSplitViewPrivate::updateHandleVisibilities(), QTreeWidgetItemPrivate::updateHiddenStatus(), QQuickTextEdit::updatePaintNode(), QQmlImports::updateQmldirContent(), QTreeViewPrivate::updateScrollBars(), QQuickListViewPrivate::updateSections(), QQuickFileDialogImplPrivate::updateSelectedFile(), QGeoMapPolylineGeometry::updateSourcePoints(), QGeoMapPolygonGeometry::updateSourcePoints(), QQuickMultiPointTouchArea::updateTouchData(), QQuickItemViewPrivate::updateViewport(), BezierEase::value(), TCBEase::value(), variantToString(), QListModeViewBase::verticalOffset(), QListModeViewBase::verticalScrollToValue(), QTreeViewPrivate::viewIndex(), GLSL::Semantic::visit(), QHeaderViewPrivate::visualIndex(), QTableView::visualRegionForSelection(), QTreeView::visualRegionForSelection(), QThreadPoolPrivate::waitForDone(), QLocalServerPrivate::waitForNewConnection(), QGraphicsScene::wheelEvent(), QFontSubset::widthArray(), QmlTypeRegistrar::write(), QTextOdfWriter::writeBlock(), QIcc::writeColorTrc(), QQmlJSStreamWriter::writeEndObject(), QWinSettingsPrivate::writeHandle(), QNfcTagType4NdefFsm::writeMessages(), QSSGQmlUtilities::writeQmlForNode(), QSSGQmlUtilities::writeQmlForResourceNode(), writeTracepoints(), writingSystemForFont(), and QtWaylandClient::QWaylandQtKeyExtension::zqt_key_v1_key().

◆ isSharedWith()

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

Definition at line 412 of file qlist.h.

References d, and other().

+ Here is the call graph for this function:

◆ last() [1/3]

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

Definition at line 631 of file qlist.h.

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

Referenced by QGeoTiledMappingManagerEngineOsm::QGeoTiledMappingManagerEngineOsm(), QtGraphicsAnchorLayout::SequentialAnchorData::SequentialAnchorData(), QSequentialAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QMutableTouchEvent::addPoint(), QTextHtmlParser::applyAttributes(), QAndroidCameraSession::applyResolution(), QList< T >::assign(), QSequentialAnimationGroupPrivate::atEnd(), QList< T >::back(), QList< T >::back(), QmlLsp::QQmlCodeModel::buildPathsForFileUrl(), QOpenGLCompositor::changeWindowIndex(), checkTeamcity(), QPainterPathPrivate::close(), QQuickGridViewPrivate::colPosAt(), QOpenGLShaderProgramPrivate::compileCacheable(), QQuickPath::createPath(), createSequence(), QTlsPrivate::TlsKeyGeneric::decodePem(), QLowEnergyControllerPrivateBluezDBus::discoverServiceDetails(), QPdfSearchModelPrivate::doSearch(), QPdfEnginePrivate::drawTextItem(), QList< T >::endsWith(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisitHelper(), QTextDocumentLayoutPrivate::ensureLayouted(), QDockWidget::event(), QOpenGLEngineSharedShaders::findProgramInCache(), QDeclarativeGeoMapItemUtils::greaterCirclePath(), importCompletions(), QListView::indexAt(), QMacPrintEnginePrivate::initialize(), QToolBarAreaLayout::insertItem(), QToolBarAreaLayoutInfo::insertItem(), QPainterPathPrivate::isClosed(), QQmlLSUtils::itemsFromTextLocation(), QIndexMapper::last(), QPageRanges::lastPage(), QQuickGridViewPrivate::lastPosition(), QGeoPathPrivate::length(), QEglFSWindow::lower(), Preprocessor::macroExpandIdentifier(), QPainterPathPrivate::maybeMoveTo(), MetaTypesJsonProcessor::namespaces(), QTextHtmlParser::newNode(), QQuickStatePrivate::operations_removeLast(), QTextHtmlParser::parse(), QQuickStyledTextPrivate::parse(), QMimeTypeParserBase::parse(), QTextHtmlParser::parseTag(), QHttpNetworkConnectionPrivate::predictNextRequest(), QHttpNetworkConnectionPrivate::predictNextRequestsReply(), QTest::qExec(), QDeclarativePolygonMapItemPrivateCPU::regenerateCache(), QQuick3DParticleAffector::removeLastParticle(), QOpenGLCompositor::removeWindow(), QQnxWindow::requestActivateWindow(), QTextHtmlParser::resolveNode(), QTextHtmlParser::resolveParent(), QDockAreaLayoutInfo::restoreState(), QQuickGridViewPrivate::rowPosAt(), QQuickPdfSelection::selectAll(), QDockAreaLayoutInfo::separatorMove(), QDockAreaLayout::separatorMove(), QListView::setSelection(), QEglFSWindow::setVisible(), MainWindow::showList(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QWindowsCaRootFetcher::start(), QQuick3DSceneRenderer::synchronize(), QList< T >::takeLast(), Preprocessor::tokenize(), QStack< T >::top(), QStack< T >::top(), QWasmWindowStack::topWindow(), updateBBox(), QDeclarativePolylineMapItemPrivateCPU::updateCache(), QSGBasicInternalRectangleNode::updateGeometry(), QQuickNinePatchImagePrivate::updateInsets(), QQuickNinePatchImagePrivate::updatePaddings(), QGeoMapPolygonGeometry::updateSourcePoints(), 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 632 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 643 of file qlist.h.

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

+ Here is the call graph for this function:

◆ length()

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

Definition at line 388 of file qlist.h.

References QList< T >::size().

Referenced by QQmlDelayedCallQueue::addUniquelyAndExecuteLater(), QQmlListModel::append(), QDeclarativePolylineMapItem::coordinateAt(), QQmlDelegateModelGroup::create(), QuadPath::dashed(), LinuxDmabufClientBufferIntegration::deleteSpecificOrphanedTexture(), WaylandEglClientBufferIntegrationPrivate::deleteSpecificOrphanedTexture(), WaylandEglStreamClientBufferIntegrationPrivate::deleteSpecificOrphanedTexture(), deployRPaths(), QTextLayout::draw(), QQmlDelegateModelPrivate::emitChanges(), QMYSQLResult::exec(), QGeoFileTileCacheMapbox::filenameToTileSpec(), QGeoFileTileCacheNokia::filenameToTileSpec(), QGeoFileTileCacheOsm::filenameToTileSpec(), QGeoFileTileCache::filenameToTileSpecDefault(), QmlTypesClassDescription::findType(), QTextLayout::glyphRuns(), QTextLine::glyphRuns(), QQmlComponent::incubateObject(), QQmlDelegateModelGroup::insert(), QQmlListModel::insert(), QDeclarativePolylineMapItem::insertCoordinate(), org.qtproject.qt.android.bindings.QtApplication::invokeDelegate(), QQmlDelegateModelGroup::move(), QQuickLabsPlatformMenu::open(), QQuickStackViewPrivate::parseElements(), QQmlDelegateModelGroupPrivate::parseGroupArgs(), QDeclarativePolylineMapItem::pathLength(), QQuickStackView::pop(), QQuickTextInput::positionAt(), QQuickStackView::push(), QQmlDelegateModelGroup::remove(), QQmlListModel::remove(), QDeclarativePolygonMapItem::removeCoordinate(), QDeclarativePolylineMapItem::removeCoordinate(), QDeclarativePolylineMapItem::removeCoordinate(), QSGOpenVGInternalRectangleNode::render(), QQuickStackView::replace(), QDeclarativePolylineMapItem::replaceCoordinate(), QQmlDelegateModelGroup::resolve(), QQuickWorkerScript::sendMessage(), QDynamicRigidBody::setInertiaMatrix(), QAnyStringViewUtils::split(), QQuickDragAttached::start(), QQuickDragAttached::startDrag(), startQtAndroidPlugin(), QuickTestResult::stringify(), QDeclarativePolygonMapItemPrivateCPU::updatePolish(), QDeclarativePolylineMapItemPrivateCPU::updatePolish(), and QGeoMapPolygonGeometry::updateSourcePoints().

+ Here is the call graph for this function:

◆ mid()

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

Definition at line 968 of file qlist.h.

References QtPrivate::QGenericArrayOps< T >::copyAppend(), d, and pos.

Referenced by QQmlDelegateModelPrivate::itemsInserted(), QQmlDelegateModelPrivate::itemsRemoved(), QDialogButtonBoxPrivate::layoutButtons(), and qQmlResolveImportPaths().

+ 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 593 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(), QMdiAreaPrivate::rearrange(), QQuickItem::stackAfter(), QGraphicsItem::stackBefore(), QQuickItem::stackBefore(), and QWindowPrivate::updateSiblingPosition().

+ 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 341 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 695 of file qlist.h.

◆ operator+() [2/4]

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

Definition at line 693 of file qlist.h.

◆ operator+() [3/4]

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

Definition at line 699 of file qlist.h.

◆ operator+() [4/4]

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

Definition at line 697 of file qlist.h.

◆ operator+=() [1/4]

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

Definition at line 691 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 701 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 692 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 709 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 341 of file qlist.h.

◆ operator<<() [1/4]

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

Definition at line 701 of file qlist.h.

◆ operator<<() [2/4]

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

Definition at line 701 of file qlist.h.

◆ operator<<() [3/4]

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

Definition at line 701 of file qlist.h.

◆ operator<<() [4/4]

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

Definition at line 709 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 358 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 290 of file qlist.h.

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

+ 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 330 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 358 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 372 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 434 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 440 of file qlist.h.

References at, and i.

◆ pop_back()

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

Definition at line 676 of file qlist.h.

References QList< T >::removeLast().

Referenced by Preprocessor::macroExpandIdentifier(), MetaTypesJsonProcessor::namespaces(), QRBTree< T >::order(), and 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 677 of file qlist.h.

References QList< T >::removeFirst().

Referenced by Automaton::closure(), 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 463 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 456 of file qlist.h.

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

Referenced by QGeoMappingManagerEngineMapboxGL::QGeoMappingManagerEngineMapboxGL(), QQmlInfo::~QQmlInfo(), QBluetoothServiceDiscoveryAgentPrivate::_q_deviceDiscovered(), QQmlImports::addFileImport(), QXcbNativeInterface::addHandler(), QQmlImports::addLibraryImport(), QXcbVirtualDesktop::addScreen(), QQuickGridViewPrivate::addVisibleItems(), QQuickListViewPrivate::addVisibleItems(), QAndroidPlatformScreen::addWindow(), QFbScreen::addWindow(), QTextCursorPrivate::adjustCursor(), QQmlTypeData::allDependenciesDone(), QMdiAreaPrivate::appendChild(), QMetaObject::connectSlotsByName(), QGuiApplicationPrivate::createPlatformIntegration(), createTypeForUrl(), QQmlTypeLoader::Blob::dependencyComplete(), QGraphicsItem::deviceTransform(), QQmlScriptBlob::done(), QQmlTypeData::done(), QGraphicsScenePrivate::enterModal(), QDockAreaLayout::findSeparator(), QToolBarAreaLayout::gapIndex(), QDockAreaLayout::gapIndex(), QWindowSystemInterface::handleScreenAdded(), QQmlPluginImporter::importDynamicPlugin(), QQmlPluginImporter::importPlugins(), QDockAreaLayout::indexOf(), QDockAreaLayout::indexOfPlaceHolder(), QWindowPrivate::init(), QWaylandCompositorPrivate::initializeHardwareIntegration(), QWidgetTextControlPrivate::inputMethodEvent(), QGraphicsSceneBspTree::insertItem(), QGraphicsSceneBspTree::items(), QQmlImportDatabase::lockModule(), QCss::Parser::parseTerm(), QCompleter::pathFromIndex(), QWindowSystemInterfacePrivate::WindowSystemEventList::prepend(), QGraphicsItemPrivate::prependGraphicsTransform(), QHttpHeaderParser::prependHeaderField(), Scheduler::processSample(), QList< T >::push_front(), QList< T >::push_front(), QCoreApplication::qAddPostRoutine(), qAddPreRoutine(), QHttpNetworkConnectionPrivate::queueRequest(), QQmlMetaType::registerPluginTypes(), QQnxWindow::requestActivateWindow(), QHttpNetworkConnectionPrivate::requeueRequest(), QQmlImportNamespace::resolveType(), QQmlImportInstance::setQmldirContent(), QGuiApplicationPrivate::showModalWindow(), QFileDialogComboBox::showPopup(), QMdiAreaPrivate::subWindowList(), QMainWindowLayout::takeAt(), QStandardItem::takeColumn(), QGuiApplication::topLevelWindows(), QLocale::uiLanguages(), and QQmlImports::updateQmldirContent().

+ Here is the call graph for this function:

◆ push_back() [1/2]

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

Definition at line 672 of file qlist.h.

References QList< T >::append().

Referenced by QGeoTiledMappingManagerEngineMapbox::QGeoTiledMappingManagerEngineMapbox(), QGeoTiledMappingManagerEngineOsm::QGeoTiledMappingManagerEngineOsm(), QWasmIDBSettingsPrivate::QWasmIDBSettingsPrivate(), QSortFilterProxyModelPrivate::_q_sourceHeaderDataChanged(), QSSGStageGeneratorBase::addConstantBufferParam(), QWasmIntegration::addContainerElement(), QAndroidEventDispatcherStopper::addEventDispatcher(), QSSGMaterialVertexPipeline::addFunction(), QSSGStageGeneratorBase::addFunction(), QQmlImports::addInlineComponentImport(), QSSGRenderReflectionMap::addReflectionMapEntry(), QSSGRenderShadowMap::addShadowMapEntry(), QSSGRenderReflectionMap::addTexturedReflectionMapEntry(), QHstsStore::addToObserved(), QQnxScreen::addWindow(), QWasmScreen::allWindows(), QQmlSA::PassManagerPrivate::analyze(), appendIfNew(), bfs(), QWaylandInputMethodEventBuilder::buildCommit(), QSctpSocketPrivate::canReadNotification(), Automaton::closure(), QLowEnergyControllerPrivateBluez::connectToDevice(), dataToUrls(), DarwinBluetooth::extract_services_uuids(), QSortFilterProxyModelPrivate::filter_changed(), QSSGLayerRenderData::frustumCulling(), generateFragmentShader(), getMorphTargetProperties(), QWaylandXdgToplevelPrivate::handleFocusReceived(), QWindowsScreenManager::handleScreenChanges(), importImp(), QQmlIncubatorPrivate::incubate(), QTriangulator< T >::initialize(), QNdefFilter::match(), QItemSelection::merge(), QV4::RegExpPrototype::method_replace(), SimulationEventCallback::onContact(), operator>>(), QRBTree< T >::order(), Parser::parse(), Parser::parseInstrument(), Parser::parseParamReplace(), Parser::parsePoint(), Parser::parsePrefix(), parseProvider(), QSSGLayerRenderData::prepareForRender(), QSSGLayerRenderData::prepareModelsForRender(), QSSGLayerRenderData::prepareParticlesForRender(), QtQuick3DEditorHelpers::CustomMaterial::preprocessorVars(), QQmlSA::Element::propertyBindings(), QWasmWindowStack::pushWindow(), qRegionToXcbRectangleList(), QQuick3DWindowAttachment::queueForCleanup(), QQuick3DWindowAttachment::queueForCleanup(), QQnxWindow::raise(), QQnxScreen::raiseWindow(), QHstsStore::readPolicies(), QMainNfcNewIntentListener::registerListener(), QQuick3DWindowAttachment::registerSceneManager(), ShadowMapPass::renderPrep(), ReflectionMapPass::renderPrep(), QQmlPrivate::revisionClassInfos(), QV4ProfilerAdapter::sendMessages(), QWasmIntegration::setContainerElements(), QStandardItemPrivate::setItemData(), QQmlListAccessor::setList(), setModelProperties(), QXcbWindow::setNetWmStateOnUnmappedWindow(), QQnxWindow::setParent(), QQuickShortcut::setSequences(), QXcbWindow::setWindowIcon(), QQuickItemParticle::take(), QGenericUnixTheme::themeNames(), QtAndroidInput::touchAdd(), updateBBox(), QQuick3DCustomMaterial::updateSpatialNode(), QQuick3DEffect::updateSpatialNode(), QWindowsScreen::virtualSiblings(), 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 673 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 675 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 674 of file qlist.h.

References QList< T >::prepend().

Referenced by QQnxScreen::addWindow(), AssimpUtils::generateMeshData(), QQnxWindow::lower(), QQnxScreen::lowerWindow(), QQuickItemParticle::take(), and QGeoMapPolygonGeometry::updateSourcePoints().

+ 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 617 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 619 of file qlist.h.

References QList< T >::end().

+ Here is the call graph for this function:

◆ remove()

template<typename T >
void QList< T >::remove ( qsizetype  i,
qsizetype  n = 1 
)
inline

Definition at line 787 of file qlist.h.

References d, i, and Q_ASSERT_X.

Referenced by QGraphicsScenePrivate::_q_polishItems(), QHeaderViewPrivate::_q_sectionsRemoved(), QQuickCanvasItem::cancelRequestAnimationFrame(), QTlsPrivate::X509CertificateGeneric::certificatesFromDer(), QTextDocumentPrivate::clearUndoRedoStacks(), QStandardItemModelPrivate::columnsRemoved(), QTableModel::ensureSorted(), insertOrRemoveItems(), QPdfPageNavigator::jump(), QPdfPageNavigator::jump(), QWidgetTextControlPrivate::keyPressEvent(), QQuickTextControlPrivate::keyPressEvent(), QPlainTextEdit::keyReleaseEvent(), QTextEdit::keyReleaseEvent(), QGraphicsItem::mouseReleaseEvent(), q_reduceConfigAttributes(), QSqlRecord::remove(), QBspTree::remove(), QList< T >::removeAt(), QCborContainerPrivate::removeAt(), QTableModel::removeColumns(), QTextTable::removeColumns(), QWizardPrivate::removeFieldAt(), QAbstractItemModelPrivate::removePersistentIndexData(), QQuickBasePositioner::removePositionedItem(), QTableModel::removeRows(), QWaylandOutputPrivate::removeView(), QTreeViewPrivate::removeViewItems(), QDeclarativeGeoRouteQuery::removeWaypoint(), QStandardItemModelPrivate::rowsRemoved(), QWindowsFileSystemWatcherEngineThread::run(), QPixmapIconEngine::scaledPixmap(), QTableModel::setItem(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), and QList< T >::takeAt().

+ Here is the caller graph for this function:

◆ removeAll()

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

Definition at line 575 of file qlist.h.

References QtPrivate::sequential_erase_with_copy().

Referenced by QMacStyle::QMacStyle(), QQC2_NAMESPACE::QMacStyle::QMacStyle(), QGraphicsWidget::~QGraphicsWidget(), QWasmIDBSettingsPrivate::~QWasmIDBSettingsPrivate(), QWidget::~QWidget(), QFileDialogPrivate::_q_autoCompleteFileName(), QHttpNetworkConnectionChannel::_q_encrypted(), QWidgetActionPrivate::_q_widgetDestroyed(), QXcbNativeInterface::addHandler(), QQuick3DParticleAffector::appendParticle(), QQuickPixmapReader::cancel(), QDeclarativePlace::category_append(), QApplicationPrivate::closePopup(), QQuick3DObjectPrivate::derefSceneManager(), QWaylandSurfacePrivate::derefView(), QGeoAreaMonitorPollingPrivate::deregisterClient(), QQmlEngineDebugServiceImpl::engineAboutToBeRemoved(), QQmlNativeDebugServiceImpl::engineAboutToBeRemoved(), QQuickDeliveryAgentPrivate::ensureDeviceConnected(), QGraphicsScenePrivate::enterModal(), QQmlApplicationEnginePrivate::finishLoad(), QTextTablePrivate::fragmentRemoved(), QV4DebuggerAgent::handleDebuggerDeleted(), QGuiApplicationPrivate::hideModalWindow(), QWaylandKeyboardPrivate::keyEvent(), QGraphicsScenePrivate::leaveModal(), QQnxWindow::lower(), QQuickMultiPointTouchArea::mouseReleaseEvent(), QApplicationPrivate::notifyLayoutDirectionChange(), 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(), QInternal::unregisterCallback(), QQuick3DParticleEmitter::unRegisterEmitBurst(), QQuick3DParticleSystem::unRegisterParticle(), QQuick3DParticleSystem::unRegisterParticleAffector(), QQuick3DParticleSystem::unRegisterParticleEmitter(), QQuickParticleSystem::updateCurrentTime(), and QQuickWindowPrivate::updateDirtyNode().

+ Here is the call graph for this function:

◆ removeAt()

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

Definition at line 573 of file qlist.h.

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

Referenced by QMediaTimeRangePrivate::addInterval(), QFbScreen::addWindow(), QMainWindowLayout::animationFinished(), QSequentialAnimationGroupPrivate::animationRemoved(), QQuickStatePrivate::complete(), LinuxDmabufClientBufferIntegration::deleteSpecificOrphanedTexture(), WaylandEglClientBufferIntegrationPrivate::deleteSpecificOrphanedTexture(), WaylandEglStreamClientBufferIntegrationPrivate::deleteSpecificOrphanedTexture(), QFutureInterfaceBasePrivate::disconnectOutputInterface(), QItemSelectionModel::emitSelectionChanged(), QQuick3DParticleEmitter::getEmitAmountFromDynamicBursts(), QQmlDelegateModelPrivate::itemsRemoved(), QItemSelection::merge(), QWidgetRepaintManager::moveStaticWidgets(), QApplication::notify(), QNetworkReplyHttpImplPrivate::postRequest(), QDockAreaLayoutInfo::remove(), QToolBarAreaLayout::remove(), QToolBarAreaLayout::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(), QObjectPrivate::setParent_helper(), QUnifiedTimer::stopAnimationTimer(), QToolBarAreaLayout::takeAt(), 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:

◆ removeFirst()

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

◆ removeIf()

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

◆ removeLast()

◆ removeOne()

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

Definition at line 581 of file qlist.h.

References QtPrivate::sequential_erase_one().

Referenced by QAbstractFileEngineHandler::~QAbstractFileEngineHandler(), QFontEngine::~QFontEngine(), QQuick3DWindowAttachment::~QQuick3DWindowAttachment(), QQuickItem::~QQuickItem(), QSQLiteResult::~QSQLiteResult(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QOpenGLMultiGroupSharedResource::cleanup(), QQuickLabsPlatformMenu::clear(), QQuickLabsPlatformMenuBar::clear(), QOffscreenSurface::create(), QQmlProfilerServiceImpl::dataReady(), QVncServer::discardClient(), QWaylandXdgToplevelPrivate::handleFocusLost(), QWindowSystemInterface::handleScreenRemoved(), QtAndroidMenu::hideContextMenu(), QQuickPathViewPrivate::itemDestroyed(), QQmlEngineControlServiceImpl::messageReceived(), QOpenGLCompositor::moveToTop(), QWindowsMenuBar::notifyRemoved(), QWindowsMenu::notifyRemoved(), QApplicationPrivate::notifyWindowIconChanged(), 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(), QWaylandSurfacePrivate::removeUninitializedSurface(), QWaylandOutputPrivate::removeView(), QAndroidPlatformScreen::removeWindow(), QFbScreen::removeWindow(), QOpenGLCompositor::removeWindow(), VDMAbstractItemModelDataType::replaceWatchedRoles(), QUnifiedTimer::resumeAnimationTimer(), QThreadPoolThread::run(), QWaylandXdgToplevel::sendFullscreen(), QWaylandXdgToplevel::sendMaximized(), QWaylandXdgToplevel::sendResizing(), QWaylandXdgToplevel::sendUnmaximized(), QQuickAttachedPropertyPropagatorPrivate::setAttachedParent(), QGraphicsItem::setFocusProxy(), QUnifiedTimer::stopAnimationTimer(), QQuick3DWindowAttachment::synchronize(), QtWayland::TouchExtensionGlobal::touch_extension_destroy_resource(), QQuickItemPrivate::transform_clear(), QAnimationTimer::unregisterAnimation(), QQmlAnimationTimer::unregisterAnimation(), QMainNfcNewIntentListener::unregisterListener(), QWindowsMimeRegistry::unregisterMime(), QQuick3DWindowAttachment::unregisterSceneManager(), QWaylandWlShellPrivate::unregisterShellSurface(), QWaylandCompositorPrivate::unregisterSurface(), QGraphicsScenePrivate::unregisterTopLevelItem(), QQuick3DSceneManager::updateBoundingBoxes(), and writingSystemForFont().

+ Here is the call graph for this function:

◆ rend() [1/2]

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

Definition at line 618 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 620 of file qlist.h.

References QList< T >::begin().

+ Here is the call graph for this function:

◆ replace() [1/2]

◆ replace() [2/2]

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

Definition at line 533 of file qlist.h.

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

◆ reserve()

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

Definition at line 746 of file qlist.h.

References capacity, QtPrivate::QGenericArrayOps< T >::copyAppend(), d, QArrayDataPointer< T >::d_ptr(), qMax(), and QArrayDataPointer< T >::setFlag().

Referenced by QtWaylandClient::LibHybrisServerBuffer::LibHybrisServerBuffer(), QGraphicsViewPrivate::QGraphicsViewPrivate(), QQnxButtonEventNotifier::QQnxButtonEventNotifier(), QShortcutMapPrivate::QShortcutMapPrivate(), QWindowsFileSystemWatcherEngineThread::QWindowsFileSystemWatcherEngineThread(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QWindowsOleEnumFmtEtc::QWindowsOleEnumFmtEtc(), QGraphicsScenePrivate::_q_emitUpdated(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutAboutToBeChanged(), QSortFilterProxyModelPrivate::_q_sourceHeaderDataChanged(), QIdentityProxyModelPrivate::_q_sourceLayoutAboutToBeChanged(), QIdentityProxyModelPrivate::_q_sourceLayoutChanged(), QDecompressHelper::acceptedEncoding(), QFileDialogPrivate::addDefaultSuffixToUrls(), QQuickState::addEntriesToRevertList(), QWindowsMimeRegistry::allFormatsForMime(), QCoreApplication::arguments(), QCupsPrinterSupport::availablePrintDeviceIds(), QPrinterInfo::availablePrinters(), QAbstractItemModel::changePersistentIndexList(), QCupsPrintEnginePrivate::closePrintDevice(), QTableModel::columnItems(), convertIterableToVariantList(), QVectorPath::convertToPainterPath(), QQmlPropertyCache::copyAndReserve(), copyImageData(), QQuickSplitViewPrivate::createHandles(), QQuickDragAttachedPrivate::createMimeData(), QKmsDevice::createScreenForConnector(), createSequence(), QTextDocumentLayoutPrivate::drawFrame(), QAlphaPaintEngine::drawPolygon(), QTableModel::ensureSorted(), QQmlComponent::errors(), QQmlDirParser::errors(), QGraphicsSceneIndex::estimateTopLevelItems(), QTlsPrivate::fetchSslCertificateData(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QMimeData::formats(), QWindowSystemInterfacePrivate::fromNativeTouchPoints(), QUrl::fromStringList(), QSSGLayerRenderData::frustumCulling(), generateGlyphTables(), AssimpUtils::generateMeshData(), QT_BEGIN_NAMESPACE::generateMeshLevelsOfDetail(), generateName(), QmlIR::JSCodeGen::generateRuntimeFunctions(), QtAndroidClipboard::getClipboardMimeData(), FileInfoThread::getFileInfos(), AndroidCameraPrivate::getSupportedPreviewFpsRange(), glyphRunWithInfo(), QXcbDrag::handleEnter(), QListViewPrivate::hiddenRowIds(), QUrl::idnWhitelist(), QIBusAttributeList::imAttributes(), importImp(), QWizardPrivate::init(), QCss::Parser::init(), QPRand::init(), QWidgetTextControlPrivate::inputMethodEvent(), QComboBox::insertItems(), QGraphicsSceneBspTreeIndex::items(), QCache< Key, T >::keys(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutTable(), QPpdPrintDevice::loadDuplexModes(), QPpdPrintDevice::loadInputSlots(), QPpdPrintDevice::loadOutputBins(), main(), QGraphicsView::mapFromScene(), QIdentityProxyModel::mapSelectionFromSource(), QIdentityProxyModel::mapSelectionToSource(), QGraphicsView::mapToScene(), QIdentityProxyModel::match(), QItemSelection::merge(), QQuickTextNodeEngine::mergeProcessedNodes(), QDBusInterfacePrivate::metacall(), QQuickJSContext2DPrototype::method_setLineDash(), QXcbMime::mimeAtomsForFormat(), QXcbMime::mimeConvertToFormat(), QListWidget::mimeData(), QTableWidget::mimeData(), QAbstractProxyModel::mimeData(), QConcatenateTablesProxyModel::mimeData(), QSortFilterProxyModel::mimeData(), QStandardItemModel::mimeData(), QListModel::mimeData(), QTableModel::mimeData(), QMimeDatabase::mimeTypesForFileName(), QEglFSKmsScreen::modes(), QV4::ExecutableCompilationUnit::moduleRequests(), QQmlTableModel::moveRow(), VDMAbstractItemModelDataType::notify(), SimulationEventCallback::onContact(), QBrush::operator>>(), QQmlJSScope::ownPropertyBindingsInQmlIROrder(), QEdidParser::parse(), Scanner::parseArguments(), QSvgHandler::parseCSStoXMLAttrs(), QMdiAreaPrivate::place(), QSGTextMaskMaterial::populate(), populateFromCbor(), QGraphicsItemAnimation::posList(), QtQuick3DEditorHelpers::CustomMaterial::preprocessorVars(), QWin32PrintEngine::property(), qDBusParametersForMethod(), qDrawShadePanel(), QQC2::qDrawShadePanel(), QTest::qExec(), qRegionToXcbRectangleList(), qt_device_format_framerates(), qt_find_best_resolution_match(), qt_mac_scale_region(), qtValue(), ICOReader::read(), QShortcutPrivate::redoGrab(), QDeclarativePolygonMapItemPrivateCPU::regenerateCache(), QDeclarativePolylineMapItemPrivateCPU::regenerateCache(), QDBusAdaptorConnector::relay(), QSortFilterProxyModel::removeColumns(), QSortFilterProxyModel::removeRows(), QPainterPath::reserve(), QSslSocketPrivate::resetDefaultEllipticCurves(), QXcbClipboardMime::retrieveData_sys(), 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(), QFileDialog::selectedUrls(), QQmlTreeModelToTableModel::selectionForRowRange(), QDBusConnectionPrivate::setConnection(), QOpenGLShaderProgram::setDefaultInnerTessellationLevels(), QOpenGLShaderProgram::setDefaultOuterTessellationLevels(), QQmlDataBlob::setError(), QStandardItemPrivate::setItemData(), QTextFormat::setProperty(), QBenchmarkTestMethodData::setResults(), QmlJSDebugger::GlobalInspector::setSelectedItems(), QTableView::setSelection(), QTextBlockFormat::setTabPositions(), QGraphicsItemAnimation::shearList(), QQmlTreeModelToTableModel::showModelChildItems(), QOpenGLFramebufferObject::sizes(), QSplitter::sizes(), sm_setProperty(), QListModel::sort(), QTableModel::sort(), QStringListModel::sort(), QFileSystemModel::sort(), QFileSystemModelPrivate::sortChildren(), QStandardItemPrivate::sortChildren(), splitPolygon(), QQuickOverlayPrivate::stackingOrderPopups(), QTlsPrivate::TlsCryptographOpenSSL::startHandshake(), QQuickDesignerSupport::statesForItem(), QPluginLoader::staticInstances(), QSettingsPrivate::stringListToVariantList(), QCss::StyleSelector::styleRulesForNode(), QPrinterInfo::supportedColorModes(), QPrinterInfo::supportedDuplexModes(), QImageReaderWriterHelpers::supportedMimeTypes(), QPrinter::supportedResolutions(), QTextOption::tabArray(), QTextBlockFormat::tabPositions(), QStandardItem::takeColumn(), QStandardItem::takeRow(), tcbToBezier(), QPainterPath::toFillPolygons(), Preprocessor::tokenize(), QWindowSystemInterfacePrivate::toNativeTouchPoints(), QPainterPath::toSubpathPolygons(), QFontSubset::toTruetype(), toUrlList(), QCborArray::toVariantList(), QGraphicsItemAnimation::translationList(), QSGDistanceFieldGlyphCache::update(), QQmlPropertyCache::update(), QSortFilterProxyModelPrivate::update_persistent_indexes(), QMenuBarPrivate::updateGeometries(), QQuickTabBarPrivate::updateLayout(), QQuickTextEdit::updatePaintNode(), QGraphicsView::updateScene(), QGeoMapPolylineGeometry::updateSourcePoints(), QGeoMapPolygonGeometry::updateSourcePoints(), QUrlModel::urls(), QQmlPropertyPrivate::urlSequence(), QTlsPrivate::X509CertificateOpenSSL::verify(), QScreen::virtualSiblings(), 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 392 of file qlist.h.

References QtPrivate::QGenericArrayOps< T >::appendInitialize(), and QList< T >::size().

Referenced by LibHybrisEglServerBuffer::LibHybrisEglServerBuffer(), QtWaylandClient::LibHybrisServerBuffer::LibHybrisServerBuffer(), QEGLPlatformContext::QEGLPlatformContext(), QFontEngineMulti::QFontEngineMulti(), QGeoFileTileCacheOsm::QGeoFileTileCacheOsm(), QHeaderViewPrivate::_q_sectionsRemoved(), QGraphicsViewPrivate::allocStyleOptionsArray(), QMenuBarPrivate::calcActionRects(), QQC2::QStyleHelper::calcLines(), QTreeViewPrivate::calcLogicalIndices(), QSctpSocketPrivate::canReadNotification(), QPdfSearchModelPrivate::clearResults(), QTextDocumentPrivate::clearUndoRedoStacks(), QX11PaintEnginePrivate::clipPolygon_dev(), computeBBox(), convert_Indexed8_to_X32(), convert_Mono_to_Indexed8(), convert_RGB_to_Indexed8(), convertWithPalette(), QOpenGLTimeMonitorPrivate::create(), QBspTree::create(), QRhiVulkan::create(), QIconModeViewBase::dataChanged(), QMYSQLResult::exec(), QDockAreaLayoutInfo::fitItems(), QT_BEGIN_NAMESPACE::generateMeshLevelsOfDetail(), QDockAreaLayout::getGrid(), QT_BEGIN_NAMESPACE::getVertexAttributeData(), QRawFont::glyphIndexesForString(), QQuick3DParticleSpriteParticle::handleMaxAmountChanged(), QGeoFileTileCacheOsm::init(), QSqlCachedResultPrivate::init(), QGraphicsSceneBspTree::initialize(), QHeaderViewPrivate::initializeIndexMapping(), QStandardItemPrivate::insertColumns(), QTreeModel::insertColumns(), QTableModel::insertColumns(), QStandardItemPrivate::insertRows(), QStandardItemPrivate::insertRows(), QTableModel::insertRows(), QXcbKeyboard::keymapFromCore(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutTable(), QShaderDescriptionPrivate::loadFromStream(), QSqlCachedResultPrivate::nextIndex(), CppGenerator::operator()(), Compress::operator()(), QIcc::parseTRC(), parseTzTransitions(), QSSGLayerRenderData::prepareForRender(), Recognizer::reallocateStack(), QInternal::registerCallback(), renderToKTXFileInternal(), QBsdKeyboardHandler::resetKeymap(), QImage::setColorCount(), QTreeModel::setColumnCount(), QFontEngineMulti::setFallbackFamiliesList(), QXcbWindow::setNetWmStateOnUnmappedWindow(), QIIOFHelper::setOption(), QPointingDevicePrivate::setPassiveGrabberContext(), QGridLayoutEngine::setRowAlignment(), QListModeViewBase::setRowCount(), QGridLayoutEngine::setRowSizeHint(), QGridLayoutEngine::setRowSpacing(), QGridLayoutEngine::setRowStretchFactor(), QFormLayoutPrivate::setupHfwLayoutData(), QFormLayoutPrivate::setupVerticalLayoutData(), QXcbWindow::setWindowIcon(), QGridLayoutEngine::sizeHint(), sortInstances(), sortParticles(), QSortFilterProxyModelPrivate::source_items_inserted(), QPainterPath::toFillPolygons(), QFontSubset::toTruetype(), QQuickShapeGenericRenderer::triangulateFill(), QQuickShapeGenericRenderer::triangulateStroke(), QTextTablePrivate::update(), updateBBox(), QTextMarkdownWriter::writeFrame(), QQmlJS::Dom::CommentedElement::writePost(), and QQmlJS::Dom::CommentedElement::writePre().

+ Here is the call graph for this function:

◆ resize() [2/2]

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

Definition at line 398 of file qlist.h.

References QtPrivate::QGenericArrayOps< T >::copyAppend(), and 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 688 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 386 of file qlist.h.

References d.

Referenced by Generator::Generator(), QCborArray::QCborArray(), QCborMap::QCborMap(), QEvdevTouchScreenHandler::QEvdevTouchScreenHandler(), QGeoFileTileCacheMapbox::QGeoFileTileCacheMapbox(), QGeoFileTileCacheOsm::QGeoFileTileCacheOsm(), QGeoTiledMappingManagerEngineMapbox::QGeoTiledMappingManagerEngineMapbox(), QGeoTileProviderOsm::QGeoTileProviderOsm(), QGLXContext::QGLXContext(), QKeySequence::QKeySequence(), QList< T >::QList(), QQmlDMAbstractItemModelData::QQmlDMAbstractItemModelData(), QSvgAttributes::QSvgAttributes(), QTornOffMenu::QTornOffMenu(), QTuioHandler::QTuioHandler(), QtWaylandClient::QWaylandDataDeviceManager::QWaylandDataDeviceManager(), QFontEngineMulti::~QFontEngineMulti(), QGraphicsItem::~QGraphicsItem(), QGuiApplicationPrivate::~QGuiApplicationPrivate(), QObjectPrivate::~QObjectPrivate(), QOpenGLMultiGroupSharedResource::~QOpenGLMultiGroupSharedResource(), QQnxWindow::~QQnxWindow(), QQuickContents::~QQuickContents(), QSvgText::~QSvgText(), QThreadData::~QThreadData(), QTreeWidgetItem::~QTreeWidgetItem(), QWaylandSurfacePrivate::~QWaylandSurfacePrivate(), QWidgetRepaintManager::~QWidgetRepaintManager(), QWindowsMenu::~QWindowsMenu(), QWindowsMenuBar::~QWindowsMenuBar(), QWinSettingsPrivate::~QWinSettingsPrivate(), Scheduler::~Scheduler(), QMdiAreaPrivate::_q_currentTabChanged(), QQuickFolderListModelPrivate::_q_directoryUpdated(), QHttpNetworkConnectionChannel::_q_disconnected(), QHttpNetworkConnectionChannel::_q_encrypted(), QHttpNetworkConnectionChannel::_q_error(), QFileSystemModelPrivate::_q_fileSystemChanged(), QPrintPreviewWidgetPrivate::_q_fit(), QItemSelectionModelPrivate::_q_layoutAboutToBeChanged(), QGraphicsScenePrivate::_q_polishItems(), QHttpNetworkConnectionChannel::_q_preSharedKeyAuthenticationRequired(), QObjectPrivate::_q_reregisterTimers(), QHeaderViewPrivate::_q_sectionsRemoved(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutAboutToBeChanged(), QConcatenateTablesProxyModelPrivate::_q_slotSourceLayoutChanged(), QQuickFolderListModelPrivate::_q_sortFinished(), QSortFilterProxyModelPrivate::_q_sourceHeaderDataChanged(), QIdentityProxyModelPrivate::_q_sourceLayoutAboutToBeChanged(), QIdentityProxyModelPrivate::_q_sourceLayoutChanged(), QHttpNetworkConnectionChannel::_q_sslErrors(), QHttpNetworkConnectionPrivate::_q_startNextRequest(), QSequentialAnimationGroupPrivate::_q_uncontrolledAnimationFinished(), QWizardPrivate::_q_updateButtonStates(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QFontComboBoxPrivate::_q_updateModel(), QGraphicsSceneBspTreeIndexPrivate::_q_updateSortCache(), QHostInfoLookupManager::abortLookup(), QFileDialog::accept(), CPP::WriteInitialization::acceptWidget(), QMenuBarPrivate::actionAt(), QMenuBarPrivate::actionRect(), QQuickActionGroupPrivate::actions_count(), QWidgetPrivate::activateChildLayoutsRecursively(), QMdiAreaPrivate::activateHighlightedWindow(), QThreadPoolPrivate::activeThreadCount(), QQmlTypeModule::add(), QGraphicsWidget::addActions(), QWidget::addActions(), QDialogButtonBoxPrivate::addButtonsToLayout(), QQmlDelegateModelPrivate::addCacheItem(), QGraphicsItemPrivate::addChild(), QTreeWidgetItem::addChild(), QTreeWidgetItem::addChildren(), QMetaObjectBuilder::addClassInfo(), QFileDialogPrivate::addDefaultSuffixToUrls(), QPainterPath::addEllipse(), QQuickState::addEntriesToRevertList(), QWizardPrivate::addField(), QFontSubset::addGlyph(), QQuickTextNodeEngine::addGlyphsInRange(), QQmlTypeCompiler::addImport(), QMediaTimeRangePrivate::addInterval(), QQuickViewTestUtils::QaimModel::addItem(), QGraphicsSceneBspTreeIndexPrivate::addItem(), QQuickLabsPlatformMenu::addItem(), QQuickViewTestUtils::QaimModel::addItems(), QQuickLabsPlatformMenu::addMenu(), QQuickLabsPlatformMenuBar::addMenu(), QCommandLineParser::addOption(), QStatusBar::addPermanentWidget(), QGraphicsScenePrivate::addPopup(), QPainterPath::addRect(), QMetaObjectBuilder::addRelatedMetaObject(), QtPrivate::ResultStoreBase::addResults(), QtPrivate::ResultStoreBase::addResults(), QPainterPath::addRoundedRect(), QPainterPath::addText(), QQuickTextNodeEngine::addTextBlock(), QGraphicsItemGroup::addToGroup(), QQuickTextNodeEngine::addToSceneGraph(), QWaylandOutputPrivate::addView(), QFileSystemModelPrivate::addVisibleFiles(), QQuickGridViewPrivate::addVisibleItems(), QQuickListViewPrivate::addVisibleItems(), QFbScreen::addWindow(), QTextCursorPrivate::adjustCursor(), adjustErrorMessage(), QQuickGridViewPrivate::adjustFirstItem(), QQuickListViewPrivate::adjustFirstItem(), QQuickViewTestUtils::adjustIndexesForAddDisplaced(), QQuickViewTestUtils::adjustIndexesForMove(), QQuickViewTestUtils::adjustIndexesForRemoveDisplaced(), QDialog::adjustPosition(), QQuickTimeLinePrivate::advance(), QSequentialAnimationGroupPrivate::advanceForwards(), QQuick3DParticleAttractor::affectParticle(), QQuickCustomAffector::affectSystem(), QDeclarativeGeoMapItemBase::afterChildrenChanged(), QDeclarativeGeoMapQuickItem::afterChildrenChanged(), QQmlTypeData::allDependenciesDone(), QWindowsMimeRegistry::allFormatsForMime(), QImage::allGray(), QNetworkInterface::allInterfaces(), QNetworkInterfaceManager::allInterfaces(), QWindowsMimeRegistry::allMimesForFormats(), QQmlJS::FixedPoolArray< T >::allocate(), QGraphicsViewPrivate::allocStyleOptionsArray(), QSequentialAnimationGroupPrivate::animationActualTotalDuration(), QMainWindowLayout::animationFinished(), QSequentialAnimationGroupPrivate::animationRemoved(), QSGThreadedRenderLoop::animationStarted(), QCborContainerPrivate::append(), QQmlPropertyCacheAliasCreator< ObjectContainer >::appendAliasesToPropertyCache(), QMdiAreaPrivate::appendChild(), QPdfBookmarkModelPrivate::appendChildNode(), QIconModeViewBase::appendHiddenRow(), QImageReaderWriterHelpers::appendImagePluginMimeTypes(), appendList(), QQmlPropertyCache::appendMethod(), QQmlPropertyCache::appendProperty(), QQmlXmlListModel::appendRole(), QQmlPropertyCache::appendSignal(), QQmlJS::Dom::appendUpdatableElementInQList(), QDockAreaLayoutInfo::apply(), QToolBarAreaLayout::apply(), QSvgStrokeStyle::apply(), QSvgAnimateColor::apply(), QQuickAnimatorPrivate::apply(), QQuickState::apply(), QImage::applyColorTransform(), applyCursor(), QSyntaxHighlighterPrivate::applyFormatChanges(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QQuickItemViewPrivate::applyModelChanges(), QQuickItemViewPrivate::applyRemovalChange(), applyWindowCursor(), argumentsFromCommandLineAndFile(), QmlTypeRegistrar::argumentsFromCommandLineAndFile(), QTextEngine::attributes(), QXcbScreen::availableGeometry(), QPixmapIconEngine::availableSizes(), QTimeZonePrivate::availableTimeZoneIds(), QXcbNativeBackingStore::beginPaint(), QTreeModel::beginRemoveItems(), QTreeViewPrivate::below(), bindFont(), QVsp2BlendingDevice::blend(), QTextLayout::boundingRect(), QAndroidAudioDecoder::bufferAvailable(), QV4DataCollector::buildFrame(), buildMetaObject(), QSSGMeshBVHBuilder::buildTree(), QDialogButtonBox::buttonRole(), QQuickButtonGroupPrivate::buttons_count(), QMenuBarPrivate::calcActionRects(), QQuickPathViewPrivate::calcCurrentIndex(), QBoxLayoutPrivate::calcHfw(), QTreeViewPrivate::calcLogicalIndices(), QGraphicsAnchorLayoutPrivate::calculateNonTrunk(), calculatePosixDate(), calculatePosixTransitions(), QtGraphicsAnchorLayout::SequentialAnchorData::calculateSizeHints(), QTextEngine::calculateTabWidth(), QGraphicsAnchorLayoutPrivate::calculateVertexPositions(), QJSValue::call(), QJSManagedValue::call(), QJSValue::callAsConstructor(), QJSManagedValue::callAsConstructor(), QuickTestUtil::callerFile(), QuickTestUtil::callerLine(), QV4::CallMethod(), QJSValue::callWithInstance(), QJSManagedValue::callWithInstance(), QSctpSocketPrivate::canReadNotification(), QAlphaPaintEnginePrivate::canSeeTroughBackground(), QTextMarkdownImporter::cbEnterBlock(), QTextMarkdownImporter::cbLeaveBlock(), QTlsPrivate::X509CertificateOpenSSL::certificatesFromDer(), QTlsPrivate::X509CertificateGeneric::certificatesFromDer(), QTlsPrivate::X509CertificateOpenSSL::certificatesFromPem(), QTlsPrivate::X509CertificateGeneric::certificatesFromPem(), QKeyMapper::changeKeyboard(), QAbstractItemModel::changePersistentIndexList(), QLowEnergyControllerPrivate::characteristicForHandle(), checkGrayscale(), Moc::checkListSizes(), Moc::checkProperties(), QQmlJSImportVisitor::checkRequiredProperties(), QQuickItemViewPrivate::checkVisible(), QUndoCommand::child(), QQuickItem::childAt(), QWidgetPrivate::childAtRecursiveHelper(), QUndoCommand::childCount(), QStandardItemPrivate::childIndex(), QGraphicsItemPrivate::childrenBoundingRectHelper(), QQmlDelegateChooser::choices_count(), QEglConfigChooser::chooseConfig(), QSGRhiSupport::chooseSampleCount(), QMetaObjectBuilder::classInfoCount(), QQuickWindowPrivate::cleanupNodes(), QResourcePrivate::clear(), QList< T >::clear(), QGraphicsSceneIndex::clear(), QListModel::clear(), QTableModel::clear(), QDialogButtonBox::clear(), QMenu::clear(), QMenuBar::clear(), QToolBar::clear(), QQuickViewTestUtils::QaimModel::clear(), QAnimationGroupPrivate::clear(), QSqlRelationalTableModelPrivate::clearCache(), QSqlRelationalTableModelPrivate::clearChanges(), QTableModel::clearContents(), QAbstractItemViewPrivate::clearOrRemove(), QTextDocumentPrivate::clearUndoRedoStacks(), QQuickControlsTestUtils::clickButton(), QGraphicsSceneBspTreeIndexPrivate::climbTree(), clipLine(), QDeclarativeGeoMapItemUtils::clipPolygon(), QX11PaintEnginePrivate::clipPolygon_dev(), QWidgetPrivate::clipRegion(), QZipWriter::close(), QCupsPrintEnginePrivate::closePrintDevice(), closestMatch(), QV4::coerceAndCall(), QSplitterPrivate::collapsible(), collectBoneTransforms(), QmlJSDebugger::collectItemsAt(), QV4DataCollector::collectScope(), QXcbColormap::colorAt(), TableModel::columnCount(), QTableModel::columnCount(), QConcatenateTablesProxyModelPrivate::columnCountAfterChange(), QTreeViewPrivate::columnRanges(), QQuickShapeCurveMaterial::compare(), QQuickShapeLinearGradientMaterial::compare(), QQuickShapeRadialGradientMaterial::compare(), QQuickShapeConicalGradientMaterial::compare(), compareContainer(), QQuickContents::complete(), QQuickStatePrivate::complete(), QQmlTableModel::componentComplete(), computeBBox(), QGraphicsItemPrivate::TransformData::computedFullTransform(), QMetaObject::connectSlotsByName(), QCborStreamReader::containerDepth(), QMediaTimeRange::contains(), QSqlRecordPrivate::contains(), QQuickContainerPrivate::contentData_count(), QQuickMenuPrivate::contentData_count(), contextFactory(), convert_Indexed8_to_X32(), convert_Mono_to_Indexed8(), convert_Mono_to_X32(), QV4::convertAndCall(), QWindowsMimeRegistry::converterFromMime(), QWindowsMimeRegistry::converterToMime(), QMacMimeFileUri::convertFromMime(), QMacMimeUrl::convertFromMime(), convertIterableToVariantList(), convertPath(), QWindowsMimeURI::convertToMime(), QGeoPathPrivate::coordinateAt(), QTreeViewPrivate::coordinateForItem(), QQuickNinePatchData::coordsForSize(), QIndexMapper::cost(), QZipReader::count(), QWindowSystemInterfacePrivate::WindowSystemEventList::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(), QRhiVulkan::create(), createArrayBuffer(), QT_BEGIN_NAMESPACE::VertexBufferDataExt::createEntries(), QGraphicsScene::createItemGroup(), QTextLayout::createLine(), QTextFormatCollection::createObjectIndex(), QQuickPath::createPath(), createPolygonNode(), createPolylineNode(), QtObject::createQmlObject(), QWidgetPrivate::createRecursively(), QKmsDevice::createScreenForConnector(), QKmsDevice::createScreens(), QLocale::createSeparatedList(), createSequence(), QSslContext::createSsl(), QQuickContext2DTexture::createTiles(), QQuickPropertyAnimation::createTransitionActions(), QWidgetPrivate::createWinId(), FolderIterator::currentFileName(), AndroidContentFileEngineIterator::currentFileName(), FolderIterator::currentFilePath(), AndroidContentFileEngineIterator::currentFilePath(), QToolBarAreaLayout::currentGapIndex(), QPdfPageNavigator::currentLink(), QPdfPageNavigator::currentLocation(), QPdfPageNavigator::currentPage(), QPdfPageNavigator::currentZoom(), QTextLine::cursorToX(), QListModel::data(), QTreeWidgetItem::data(), QListWidgetItem::data(), QQuickPackagePrivate::data_count(), QIconModeViewBase::dataChanged(), QGraphicsSceneBspTree::debug(), QQuickAnimationPropertyUpdater::debugUpdater(), QCss::StyleSelector::declarationsForNode(), QAbstractItemModel::decodeData(), QTlsPrivate::TlsKeyGeneric::decodeDer(), QTlsPrivate::TlsKeyGeneric::decodePem(), QKeySequencePrivate::decodeString(), QV4::Compiler::Codegen::defineFunction(), QQmlDelegateChooser::delegate(), QDockAreaLayoutInfo::deleteAllLayoutItems(), QToolBarAreaLayout::deleteAllLayoutItems(), QObjectPrivate::deleteChildren(), LinuxDmabufClientBufferIntegration::deleteGLTextureWhenPossible(), WaylandEglClientBufferIntegrationPrivate::deleteGLTextureWhenPossible(), WaylandEglStreamClientBufferIntegrationPrivate::deleteGLTextureWhenPossible(), WaylandEglClientBufferIntegrationPrivate::deleteOrphanedTextures(), WaylandEglStreamClientBufferIntegrationPrivate::deleteOrphanedTextures(), LinuxDmabufClientBufferIntegration::deleteSpecificOrphanedTexture(), WaylandEglClientBufferIntegrationPrivate::deleteSpecificOrphanedTexture(), WaylandEglStreamClientBufferIntegrationPrivate::deleteSpecificOrphanedTexture(), QQuickDeliveryAgentPrivate::deliverHoverEventRecursive(), QQuickDeliveryAgentPrivate::deliverPressOrReleaseEvent(), QQuickDeliveryAgentPrivate::deliverUpdatedPoints(), QCocoaScreen::deliverUpdateRequests(), ElfReader::dependencies(), QQmlTypeLoader::Blob::dependencyComplete(), QQmlTreeModelToTableModel::depthAtRow(), QQuick3DObjectPrivate::derefSceneManager(), QQuickItemPrivate::derefWindow(), QWindowPrivate::destroy(), QOpenGLTimeMonitorPrivate::destroy(), QWidget::destroy(), QQuickSplitViewPrivate::destroyHandles(), QButtonGroupPrivate::detectCheckedButton(), QMessageBoxPrivate::detectEscapeButton(), QGraphicsItem::deviceTransform(), QmlLsp::QmlLintSuggestions::diagnose(), QApplicationPrivate::dispatchEnterLeave(), QGraphicsScenePrivate::dispatchHoverEvent(), QGridLayoutPrivate::distribute(), distributeMultiBox(), QQuickParentAnimationData::doAction(), QIconModeViewBase::doBatchedItemLayout(), QFFmpegImageCapture::doCapture(), QSplitterPrivate::doMove(), QQuickGrid::doPositioning(), QFbScreen::doRedraw(), QSplitterPrivate::doResize(), QPdfSearchModelPrivate::doSearch(), QQuickControlsTestUtils::doubleClickButton(), QGraphicsScenePrivate::draw(), QTextLayout::draw(), QSvgTinyDocument::draw(), QPainter::drawConvexPolygon(), QPainter::drawConvexPolygon(), QTextLayout::drawCursor(), QTextDocumentLayoutPrivate::drawFlow(), QTextDocumentLayoutPrivate::drawFrame(), QPainter::drawLines(), QPainter::drawLines(), QPainter::drawLines(), QPainter::drawLines(), QX11PaintEngine::drawPath(), QX11PaintEngine::drawPixmap(), QPainter::drawPolyline(), QPainter::drawPolyline(), QPainter::drawRects(), QPainter::drawRects(), QTreeView::drawRow(), QTreeView::drawTree(), QWidgetPrivate::drawWidget(), QStandardItemModel::dropMimeData(), QQmlTreeModelToTableModel::dump(), dumpwarning(), effectiveScreen(), QPainterPath::elementCount(), QTextEngine::elidedText(), QQuick3DParticleEmitter::emitBurstCount(), QHttpNetworkConnectionChannel::emitFinishedWithError(), QItemSelectionModel::emitSelectionChanged(), QQuickParticleEmitter::emitWindow(), QQuickTrailEmitter::emitWindow(), QVsp2BlendingDevice::enableInput(), QTextLayout::endLayout(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QQmlJS::Dom::QQmlDomAstCreator::endVisit(), QSGSoftwareRenderableNodeUpdater::endVisit(), QResourcePrivate::ensureChildren(), QGridLayoutEngine::ensureDynamicConstraint(), QFontEngineMulti::ensureEngineAt(), QSecureTransportBackend::ensureInitialized(), QWidget::ensurePolished(), QGraphicsItemPrivate::ensureSequentialSiblingIndex(), QGraphicsScenePrivate::ensureSequentialTopLevelSiblingIndexes(), QListModel::ensureSorted(), QTableModel::ensureSorted(), QTreeModel::ensureSorted(), QGraphicsItemPrivate::ensureSortedChildren(), QQmlDirParser::errors(), QGraphicsSceneBspTreeIndexPrivate::estimateItems(), QGraphicsSceneIndex::estimateTopLevelItems(), QQmlBinding::evaluate(), QQmlPropertyBindingJSForBoundFunction::evaluate(), QGeoTiledMapOsm::evaluateCopyrights(), QWidget::event(), QDockWidget::event(), exitOrdinal(), QToolBarLayout::expandedSize(), QItemSelectionModelPrivate::expandSelection(), QDockAreaLayoutInfo::expansive(), exportArrayOfPositions(), exportFeatureCollection(), QGeoJson::exportGeoJson(), exportGeometryCollection(), exportMultiLineString(), exportMultiPolygon(), QQmlJS::Dom::ModuleIndex::exportNames(), QQmlJS::Dom::ModuleIndex::exportsWithNameAndMinorVersion(), QWaylandObject::extension(), QWaylandObject::extension(), DarwinBluetooth::extract_services_uuids(), QCborContainerPrivate::extractAt_complex(), QQuickMaskExtruder::extrude(), QSvgText::fastBounds(), fetchNextNode(), QZipReader::fileData(), QQuickFileDialogImplPrivate::fileDialogListViewCountChanged(), QZipReader::fileInfoList(), fileInfoListToString(), QGeoFileTileCacheOsm::filenameToTileSpec(), QImage::fill(), QOpenGL2PaintEngineExPrivate::fill(), QX11PaintEnginePrivate::fillPath(), QHttpNetworkConnectionPrivate::fillPipeline(), QRasterPaintEngine::fillPolygon(), QSortFilterProxyModelPrivate::filter_changed(), QV4::Compiler::Context::findArgument(), findBySize(), QCborContainerPrivate::findCborMapKey(), QCborContainerPrivate::findCborMapKey(), QHttpNetworkReplyPrivate::findChallenge(), FileInfoThread::findChangeRange(), findChildFrame(), findChildrenHelper(), QTextEngine::findItem(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), QStandardItemModel::findItems(), QQuickVisualTestUtils::findItems(), QQuickGridLayoutEngine::findLayoutItem(), QQuickItemViewPrivate::findMoveKeyIndex(), findNextVisibleEntry(), QCborContainerPrivate::findOrAddMapKey(), QOpenGLEngineSharedShaders::findProgramInCache(), QUrlQueryPrivate::findRecodedKey(), QDockAreaLayoutInfo::findSeparator(), findSlot(), findTextureWidgetsRecursively(), QToolBarAreaLayout::findToolBar(), QQuickStateGroupPrivate::findTransition(), QQuickVisualTestUtils::findVisibleChild(), QSplitterPrivate::findWidget(), QSplitterPrivate::findWidgetJustBeforeOrJustAfter(), QTextDocumentLayoutPrivate::findY(), QList< T >::first(), QQuickItemViewPrivate::firstItemInView(), QQmlJSCompilePass::firstRegisterIndex(), QTreeViewPrivate::firstVisibleItem(), QDockAreaLayoutInfo::fitItems(), QToolBarAreaLayoutLine::fitLayout(), QToolBarAreaLayoutInfo::fitLayout(), QDeclarativeGeoMap::fitViewportToMapItems(), fix_color_table(), QAbstractButtonPrivate::fixFocusPolicy(), QQuickPathViewPrivate::fixOffset(), QQuickListViewPrivate::fixup(), QQuickListViewPrivate::fixupHeader(), QListModel::flags(), QTextDocumentLayoutPrivate::floatMargins(), QXcbNativeBackingStore::flush(), QMenuBarPrivate::focusFirstAction(), forcePolishHelper(), forceUpdate(), QXcbDropData::formats_sys(), QPdfPageNavigator::forward(), QPdfPageNavigator::forwardAvailable(), QTextTablePrivate::fragmentRemoved(), QTextEngine::freeMemory(), QV4::ExecutionEngine::fromData(), fromLatin1List(), QuadPath::fromPainterPath(), QQmlJS::Dom::List::fromQList(), QQmlJS::Dom::List::fromQListRef(), QSSGShaderKeyVertexAttribute::fromString(), QFont::fromString(), QCborArray::fromStringList(), QCborArray::fromVariantList(), QSSGLayerRenderData::frustumCulling(), QSSGLayerRenderData::frustumCullingInline(), QDockAreaLayoutInfo::gapIndex(), QToolBarAreaLayoutInfo::gapIndex(), Moc::generate(), Generator::generateCode(), QPdf::generateDashes(), generateGlyphTables(), QGradientCache::generateGradientColorTable(), QmlIR::JSCodeGen::generateJSCodeForFunctionsAndBindings(), AssimpUtils::generateMeshData(), QT_BEGIN_NAMESPACE::generateMeshLevelsOfDetail(), CPP::generateMultiDirectiveBegin(), QPrintPreviewWidgetPrivate::generatePreview(), QGestureEvent::gesture(), QGraphicsScenePrivate::gestureEventHandler(), QGraphicsScenePrivate::gestureTargetsAtHotSpots(), QGradientCache::getBuffer(), QOpenGL2GradientCache::getBuffer(), QWaylandMimeHelper::getByteArray(), QOpenVGContext::getConfigs(), QQuick3DParticleEmitter::getEmitAmountFromDynamicBursts(), FileInfoThread::getFileInfos(), QGeoFileTileCacheOsm::getFromOfflineStorage(), getGlyphData(), QDockAreaLayout::getGrid(), QQuick3DInstanceList::getInstanceBuffer(), QGridLayoutPrivate::getItemPosition(), QMenuPrivate::getLastVisibleAction(), QDBusMenuRegistrarInterface::GetMenuForWindow(), QGstreamerFormatInfo::getMuxerList(), QMenuBarPrivate::getNextAction(), QWidgetPrivate::getOpaqueChildren(), QFileDialog::getOpenFileNames(), QQuick3DParticleCustomShape::getPosition(), QSplitterPrivate::getRange(), QLocationUtils::getSatInfoFromNmea(), QToolBarAreaLayout::getStyleOptionInfo(), QAndroidCameraSession::getSupportedPixelFormats(), QGeoTileFetcherMapbox::getTileImage(), QGeoTileFetcherOsm::getTileImage(), QOCICols::getValues(), getVariables(), QFontEngineMulti::glyphIndex(), QTextLayout::glyphRuns(), QQuickStochasticEngine::goalSeek(), QQuickGradient::gradientStops(), QDeclarativeGeoMapItemUtils::greaterCirclePath(), QtAndroidPrivate::handleActivityResult(), handleCompileErrors(), QEglFSScreen::handleCursorMove(), QXcbDrag::handleEnter(), QQuick3DParticleSpriteParticle::handleMaxAmountChanged(), QDBusConnectionPrivate::handleMessage(), QQuickPathViewPrivate::handleMousePressEvent(), QtAndroidPrivate::handleNewIntent(), QtAndroidPrivate::handlePause(), QQuickDragHandler::handlePointerEventImpl(), QQuickPinchHandler::handlePointerEventImpl(), QtAndroidPrivate::handleResume(), QWindowsScreenManager::handleScreenChanges(), QWaylandOutputPrivate::handleWindowPixelSizeChanged(), QQmlTreeModelToTableModel::hasChildren(), MyClassPrivate::hasClientsActualCalculation(), QNdefNfcSmartPosterRecord::hasIcon(), FolderIterator::hasNext(), Parser::hasNext(), AndroidContentFileEngineIterator::hasNext(), hasNext(), QNdefNfcSmartPosterRecord::hasTitle(), QWaylandSurfacePrivate::hasUninitializedSurface(), QHttpNetworkRequestPrivate::header(), QTableModel::headerData(), QNetworkReplyWasmImplPrivate::headersReceived(), QCommandLineParserPrivate::helpText(), QWidgetPrivate::hideChildren(), QMdiAreaPrivate::highlightNextSubWindow(), QTextDocumentLayoutPrivate::hitTest(), QSqlResultPrivate::holderAt(), QGeoPolygonPrivate::holesCount(), QListModeViewBase::horizontalOffset(), QListModeViewBase::horizontalScrollToValue(), huntAndUnregister(), QNdefNfcSmartPosterRecord::icon(), QNdefNfcSmartPosterRecord::iconCount(), QGifHandler::imageCount(), QICNSHandler::imageCount(), QImageReaderWriterHelpers::imageFormatsForMimeType(), imageMimeFormats(), QIBusAttributeList::imAttributes(), QTextHtmlImporter::import(), importCompletions(), importFeatureCollection(), importGeometryCollection(), importMultiLineString(), importMultiPolygon(), QQmlPluginImporter::importPlugins(), importPolygon(), importPosition(), QTreeViewPrivate::indentationForItem(), QListModel::index(), QTableModel::index(), QTreeModel::index(), QFileSystemModel::index(), QListView::indexAt(), QSequentialAnimationGroupPrivate::indexForCurrentTime(), QToolBarLayout::indexOf(), ElfData::indexOf(), QtPrivate::indexOf(), QFactoryLoader::indexOf(), QGraphicsGridLayoutEngine::indexOf(), QQuickGridLayoutEngine::indexOf(), QToolBarAreaLayout::indexOf(), QDockAreaLayoutInfo::indexOf(), QMetaObjectBuilder::indexOfClassInfo(), indexOfHwnd(), indexOfId(), indexOfMonitor(), indexOfMonitor(), QDockAreaLayoutInfo::indexOfPlaceHolder(), indexOfWindowsId(), QListModeViewBase::indexToListViewItem(), QIconModeViewBase::indexToListViewItem(), QDockAreaLayoutInfo::info(), QDockAreaLayoutInfo::info(), BezierEase::init(), QStaticTextPrivate::init(), QWaylandCompositorPrivate::init(), QQmlTypePrivate::init(), QV4::Heap::ArrayObject::init(), init_plugins(), QImageReaderPrivate::initHandler(), QIOSIntegration::initialize(), QTriangulator< T >::initialize(), QQuickListViewPrivate::initializeCurrentItem(), QDirectFbIntegration::initializeDirectFB(), QHeaderViewPrivate::initializeIndexMapping(), VDMAbstractItemModelDataType::initializeMetaType(), QBasicPlatformVulkanInstance::initInstance(), QTextDocumentPrivate::insert(), QListModel::insert(), QListModel::insert(), QSortFilterProxyModelPrivate::insert_source_items(), QToolBarLayout::insertAction(), QGraphicsWidget::insertActions(), QWidget::insertActions(), QTextDocumentPrivate::insertBlock(), QTreeWidgetItem::insertChild(), QTreeWidgetItem::insertChildren(), QStandardItem::insertColumn(), QStandardItemPrivate::insertColumns(), QTreeModel::insertColumns(), QTableModel::insertColumns(), QGeoPathPrivate::insertCoordinate(), QQmlTypePrivate::insertEnums(), QQmlTypePrivate::insertEnumsFromPropertyCache(), 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(), QSSGRenderRay::intersectWithBVHTriangles(), QOpenGLTimeMonitorPrivate::intervals(), QGraphicsItemPrivate::invalidateDepthRecursively(), QSGDistanceFieldGlyphNode::invalidateGlyphs(), DarwinBluetooth::iobluetooth_service_dictionary(), is_monochrome(), QQmlPropertyCache::isAllowedInRevision(), QGraphicsItem::isBlockedByModalPanel(), QMediaTimeRange::isContinuous(), QSqlIndex::isDescending(), QPainterPath::isEmpty(), QMenu::isEmpty(), QTlsPrivate::TlsKeyBase::isEncryptedPkcs8(), QQmlTreeModelToTableModel::isExpanded(), QTreeViewPrivate::isItemHiddenOrDisabled(), QSslConfiguration::isNull(), QBrush::isOpaque(), QSGSoftwareInternalRectangleNode::isOpaque(), QQuickTextInputPrivate::isRedoAvailable(), QHttpMultiPartIODevice::isSequential(), QWindowsScreenManager::isSingleScreen(), QTextureFileData::isValid(), QGeoPolygonPrivate::isValid(), QTableModel::isValid(), QGuiApplicationPrivate::isWindowBlocked(), QDomNodeListPrivate::item(), QDockAreaLayoutInfo::itemAt(), QToolBarAreaLayout::itemAt(), QGridLayoutPrivate::itemAt(), QDockWidgetLayout::itemAt(), QToolBarLayout::itemAt(), QmlJSDebugger::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(), QQmlLSUtils::itemsFromTextLocation(), QQuickMenuPrivate::itemSiblingOrderChanged(), QQmlDelegateModelPrivate::itemsInserted(), QQmlDelegateModelPrivate::itemsInserted(), QQmlDelegateModelPrivate::itemsMoved(), QQmlDelegateModelPrivate::itemsRemoved(), QQmlDelegateModelPrivate::itemsRemoved(), QQuickItemPrivate::itemToParentTransform(), ServerAcceptanceThread::javaNewSocket(), jsStack(), QPdfPageNavigator::jump(), QPdfPageNavigator::jump(), QFactoryLoader::keyMap(), QDialog::keyPressEvent(), QKeySequenceEdit::keyPressEvent(), QCborMap::keys(), QJsonObject::keys(), QCache< Key, T >::keys(), QTextHtmlParser::last(), QList< T >::last(), QQmlTreeModelToTableModel::lastChildIndex(), QtPrivate::lastIndexOf(), QQuickListViewPrivate::lastPosition(), QTreeViewPrivate::lastVisibleItem(), QMdiAreaPrivate::lastWindowAboutToBeDestroyed(), QMediaTimeRange::latestTime(), QQuickItemViewPrivate::layout(), QQuickSplitViewPrivate::layout(), QTreeViewPrivate::layout(), QToolBarLayout::layoutActions(), QTextDocumentLayoutPrivate::layoutBlock(), QDialogButtonBoxPrivate::layoutButtons(), QTextDocumentLayoutPrivate::layoutCell(), QAbstractItemModelTesterPrivate::layoutChanged(), QTextDocumentLayoutPrivate::layoutFlow(), QTextDocumentLayoutPrivate::layoutFrame(), QPrintPreviewWidgetPrivate::layoutPages(), QQuickSplitViewPrivate::layoutResizeSplitItems(), QTextDocumentLayoutPrivate::layoutTable(), QTabBarPrivate::layoutTabs(), QQuickGridViewPrivate::layoutVisibleItems(), QQuickListViewPrivate::layoutVisibleItems(), QBspTree::leafCount(), QDomNodeListPrivate::length(), QList< T >::length(), QTextEngine::length(), QGeoPathPrivate::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(), QGeoServiceProviderPrivate::loadMeta(), QPpdPrintDevice::loadOutputBins(), QCocoaPrintDevice::loadOutputBins(), QGeoServiceProviderPrivate::loadPluginMetadata(), QGeoPositionInfoSourcePrivate::loadPluginMetadata(), QPpdPrintDevice::loadResolutions(), QQmlPreviewHandler::loadUrl(), Parser::lookup(), QEglFSWindow::lower(), QAndroidPlatformScreen::lower(), QFbScreen::lower(), macList(), Preprocessor::macroExpand(), Preprocessor::macroExpandIdentifier(), main(), main(), makeArgNames(), QTransform::map(), QQmlTreeModelToTableModel::mapFromModel(), QQuickItemViewPrivate::mapFromModel(), mapProjective(), QAbstractProxyModel::mapSelectionFromSource(), QIdentityProxyModel::mapSelectionFromSource(), QAbstractProxyModel::mapSelectionToSource(), QIdentityProxyModel::mapSelectionToSource(), QQmlTreeModelToTableModel::mapToModel(), QQmlTreeModelToTableModel::mapToModel(), QTextBlockGroupPrivate::markBlocksDirty(), markFrames(), QSGDistanceFieldGlyphCache::markGlyphsToRender(), QIdentityProxyModel::match(), QNdefFilter::match(), QQuickViewTestUtils::QaimModel::matchAgainst(), QDockAreaLayoutInfo::maximumSize(), QWaylandSurfaceViewMapper::maybePrimaryView(), QAndroidPlatformMenu::menuItemAt(), QIOSMenu::menuItemAt(), QWindowsMenu::menuItemAt(), QIOSMenu::menuItemForTag(), QItemSelection::merge(), QTextFormat::merge(), QQmlDefaultPropertyMerger::mergeDefaultProperties(), mergeGradleProperties(), mergeIndexes(), QQuickDeliveryAgentPrivate::mergePointerTargets(), QQuickTextNodeEngine::mergeProcessedNodes(), QQmlVMEMetaObject::metaCall(), QFactoryLoader::metaData(), QQmlPropertyCache::method(), QQuickJSContext2DPrototype::method_setLineDash(), QQmlPropertyCache::methodCount(), QQmlPropertyCache::methodIndexToSignalIndex(), QImage::metric(), 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(), QGraphicsItem::mouseMoveEvent(), QXcbDrag::move(), QListModel::move(), QList< T >::move(), QAbstractButtonPrivate::moveFocus(), QQmlTableModel::moveRow(), QWidgetRepaintManager::moveStaticWidgets(), QToolBarAreaLayoutInfo::moveToolBar(), QObjectPrivate::moveToThread_helper(), QSqlResultPrivate::namedToPositionalBinding(), QNativeSocketEnginePrivate::nativeMulticastInterface(), QNativeSocketEnginePrivate::nativeSetMulticastInterface(), QTextHtmlParser::newNode(), QSubpathFlatIterator::next(), Parser::next(), QDockAreaLayoutInfo::next(), QSqlCachedResultPrivate::nextIndex(), QQuickStochasticEngine::nextState(), QMdiAreaPrivate::nextVisibleSubWindow(), QFontSubset::nGlyphs(), QFileSystemModelPrivate::node(), QWindowSystemInterfacePrivate::WindowSystemEventList::nonUserInputEventsQueued(), VDMAbstractItemModelDataType::notify(), QApplication::notify(), QGuiApplicationPrivate::notifyLayoutDirectionChange(), QApplicationPrivate::notifyLayoutDirectionChange(), QGuiApplicationPrivate::notifyWindowIconChanged(), QApplicationPrivate::notifyWindowIconChanged(), QVsp2BlendingDevice::numInputs(), QQmlContextPrivate::numPropertyValues(), QmlIR::Document::objectCount(), SimulationEventCallback::onContact(), QtAndroidMenu::onOptionsItemSelected(), QtAndroidMenu::onPrepareOptionsMenu(), QGeoFileTileCacheOsm::onProviderResolutionFinished(), QGeoTileProviderOsm::onResolutionError(), QWindowsNativeFileDialogBase::onSelectionChange(), QApplicationPrivate::openPopup(), QQuickStatePrivate::operations_count(), Compress::operator()(), QBrush::operator<<(), operator<<(), QList< T >::operator=(), QGeoPathPrivate::operator==(), QGeoPolygonPrivate::operator==(), QJsonObject::operator==(), QList< T >::operator==(), QPainterPath::operator==(), QCborValue::operator[](), QGifHandler::option(), QWidgetPrivate::overlappedRegion(), QPdfSearchModelPrivate::pageAndIndexForResult(), QTreeViewPrivate::pageDown(), QTreeViewPrivate::pageUp(), QGraphicsView::paintEvent(), QQuickItemPrivate::paintOrderChildItems(), QDockAreaLayoutInfo::paintSeparators(), panOffset(), QMetaMethodBuilderPrivate::parameterCount(), QQuickStyledTextPrivate::parse(), parseAnimateTransformNode(), parseCmdLine(), parseColorValue(), parseCookieHeader(), QNetworkCookie::parseCookies(), parseCoreNode(), parseCSStoXMLAttrs(), QQuickStackViewPrivate::parseElements(), QTlsPrivate::X509CertificateGeneric::parseExtension(), QDateTimeParser::parseFormat(), Moc::parseFunctionArguments(), parseNumberTriplet(), QPlatformOpenGLContext::parseOpenGLVersion(), parseOptions(), parseOptions(), parsePen(), Moc::parsePrivateProperty(), Moc::parseProperty(), Moc::parseRevision(), parseStopNode(), QTextHtmlParser::parseTag(), QQuick3DParticleAffector::particleCount(), QCompleter::pathFromIndex(), Parser::peek(), QWindowSystemInterfacePrivate::WindowSystemEventList::peekAtFirstOfType(), permutations(), QImage::pixel(), QMdiAreaPrivate::place(), QPainterPath::pointAtPercent(), QQuickDeliveryAgentPrivate::pointerTargets(), QSvgHandler::popColor(), QQuickStackViewPrivate::popElements(), QQuickStackViewPrivate::popToItem(), QSGTextMaskMaterial::populate(), QSGDistanceFieldGlyphCache::populate(), QMenuPrivate::popup(), QTextEngine::positionAfterVisualMovement(), QtWayland::TouchExtensionGlobal::postTouchEvent(), QWaitConditionPrivate::pre(), QSGMaterialShaderPrivate::prepare(), QGraphicsSceneBspTreeIndex::prepareBoundingRectChange(), QSSGLayerRenderData::prepareForRender(), QDBusConnectionPrivate::prepareHook(), QDBusConnectionPrivate::prepareReply(), QWidgetPrivate::prepareToRender(), QQuickBasePositioner::prePositioning(), Preprocessor::preprocessed(), preprocessMetadata(), QGeoJson::printQvariant(), QDashStroker::processCurrentSubpath(), QPulseAudioSink::processedUSecs(), QNmeaSatelliteInfoSourcePrivate::processNmeaData(), processNode(), QGeoPositionInfoSourceAndroid::processSinglePositionUpdate(), QWidgetPrivate::propagatePaletteChange(), QTextFormat::properties(), QTextFormat::propertyCount(), QQmlPropertyCache::propertyCount(), QBluetoothServiceInfo::protocolServiceMultiplexer(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items(), QSortFilterProxyModelPrivate::proxy_intervals_for_source_items_to_add(), QSortFilterProxyModelPrivate::proxy_item_range(), QGraphicsSceneBspTreeIndexPrivate::purgeRemovedItems(), QSvgHandler::pushColorCopy(), QQuickStackViewPrivate::pushElements(), q_createNativeChildrenAndSetParent(), QTlsPrivate::Q_GLOBAL_STATIC_WITH_ARGS(), Q_LOGGING_CATEGORY(), qDBusParametersForMethod(), qDBusPropertyGet(), qDBusPropertyGetAll(), qDBusPropertySet(), QTest::qExec(), qFindInlineComponents(), qGeomCalc(), qGlobalPostedEventsCount(), qGradientStopsToD2DStops(), qListToPath(), qlocationutils_readGga(), qlocationutils_readGll(), qlocationutils_readGsa(), qlocationutils_readGsa(), qlocationutils_readRmc(), qlocationutils_readVtg(), qlocationutils_readZda(), QTest::qMedian(), qMedian(), QQmlComponent_setQmlParent(), qQmlResolveImportPaths(), qquickitem_before_paintNode(), qRegisterResourceData(), QTest::qSignalDumperCallback(), QSqlQuery_snippets(), qt_find_best_framerate_match(), qt_find_best_resolution_match(), qt_findClosestValue(), qt_mac_QStringListToNSMutableArray(), qt_qdnsmailexchangerecord_sort(), qt_qdnsservicerecord_sort(), QAbstractButtonPrivate::queryCheckedButton(), QUrlQuery::queryItems(), qUnregisterResourceData(), qWaitForSignal(), qwindowcontainer_traverse(), QNetworkHeadersPrivate::rawHeadersKeys(), AVFAudioDecoder::read(), QHeaderViewPrivate::read(), QICNSHandler::read(), read_xpm_body(), ElfReader::readCoreName(), QSSGMesh::MeshInternal::readMeshData(), QMdi::RegularTiler::rearrange(), QMdi::SimpleCascader::rearrange(), QMdi::IconTiler::rearrange(), QMdiAreaPrivate::rearrange(), QSplitterPrivate::recalc(), QMacPanGestureRecognizer::recognize(), QPanGestureRecognizer::recognize(), QPinchGestureRecognizer::recognize(), QSwipeGestureRecognizer::recognize(), QTapGestureRecognizer::recognize(), QTapAndHoldGestureRecognizer::recognize(), QFlickGestureRecognizer::recognize(), QNdefFilter::recordCount(), QOpenGLTimeMonitorPrivate::recordSample(), QCss::Declaration::rectValue(), QGraphicsSceneIndexPrivate::recursive_items_helper(), QQuickItemPrivate::recursiveRefFromEffectItem(), QUndoCommand::redo(), QShortcutPrivate::redoGrab(), QSSGRenderReflectionMap::reflectionMapEntry(), QGraphicsAnchorLayoutPrivate::refreshAllSizeHints(), QQuick3DObjectPrivate::refSceneManager(), QQuickItemPrivate::refWindow(), QDeclarativePolygonMapItemPrivateCPU::regenerateCache(), QDeclarativePolylineMapItemPrivateCPU::regenerateCache(), QSettings::registerFormat(), QGraphicsScenePrivate::registerTopLevelItem(), QObjectPrivate::reinitBindingStorageAfterThreadMove(), QMetaObjectBuilder::relatedMetaObjectCount(), QDBusAdaptorConnector::relay(), QSGDistanceFieldGlyphCache::release(), QSSGLightmapUVGenerator::remap(), QWindowSystemInterfacePrivate::WindowSystemEventList::remove(), QToolBarAreaLayout::remove(), QTextFramePrivate::remove_me(), QQmlDelegateModelPrivate::removeCacheItem(), QGraphicsAnchorLayoutPrivate::removeCenterAnchors(), QGraphicsItemPrivate::removeChild(), QSortFilterProxyModel::removeColumns(), QTableModel::removeColumns(), QTextTable::removeColumns(), QGeoPathPrivate::removeCoordinate(), QWidgetRepaintManager::removeDirtyWidget(), QQuickSplitViewPrivate::removeExcessHandles(), QGraphicsItemGroup::removeFromGroup(), QIconModeViewBase::removeHiddenRow(), QGeoPolygonPrivate::removeHole(), QNdefNfcSmartPosterRecord::removeIcon(), QNdefNfcSmartPosterRecord::removeIcon(), QDeclarativeGeoMapItemView::removeInstantiatedItems(), QMediaTimeRangePrivate::removeInterval(), QGraphicsSceneBspTreeIndexPrivate::removeItem(), QGraphicsSceneBspTree::removeItems(), QQuickGridViewPrivate::removeNonVisibleItems(), QQuickListViewPrivate::removeNonVisibleItems(), QAbstractItemModelPrivate::removePersistentIndexData(), QGraphicsScenePrivate::removePopup(), QHttpNetworkConnectionPrivate::removeReply(), QSortFilterProxyModel::removeRows(), QTableModel::removeRows(), JsonOutput::removeTargetDirectory(), QNdefNfcSmartPosterRecord::removeTitle(), QNdefNfcSmartPosterRecord::removeTitle(), QToolBarAreaLayoutInfo::removeToolBar(), QToolBarAreaLayoutInfo::removeToolBarBreak(), removeTransparencyFromBrush(), QWaylandOutputPrivate::removeView(), QTreeViewPrivate::removeViewItems(), QQmlTreeModelToTableModel::removeVisibleRows(), QGraphicsView::render(), QGraphicsScene::render(), renderToKTXFileInternal(), QAbstractItemViewPrivate::renderToPixmap(), QQuickContainerPrivate::reorderItems(), QStackedLayoutPrivate::replaceAt(), QGeoPathPrivate::replaceCoordinate(), QGraphicsAnchorLayoutPrivate::replaceVertex(), QQuickFolderBreadcrumbBarPrivate::repopulate(), QEvdevTouchScreenData::reportPoints(), QFutureInterface< T >::reportResults(), QQuickItemViewPrivate::repositionFirstItem(), QQnxWindow::requestActivateWindow(), QGeoRouteParserOsrmV5Private::requestUrl(), QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests(), QHttpNetworkConnectionChannel::requeueHttp2Requests(), QHttpMultiPartIODevice::reset(), QGraphicsScenePrivate::resetDirtyItem(), QGraphicsItemPrivate::resetFocusProxy(), QGraphicsSceneBspTreeIndexPrivate::resetIndex(), QList< T >::resize(), QList< T >::resize(), QWizardField::resolve(), resolveColor(), QQmlDMAbstractItemModelData::resolveIndex(), QTextHtmlParser::resolveParent(), QQmlImportNamespace::resolveType(), LibHybrisEglServerBuffer::resourceForClient(), QUnifiedTimer::restart(), QSequentialAnimationGroupPrivate::restart(), QGraphicsAnchorLayoutPrivate::restoreSimplifiedAnchor(), QGraphicsAnchorLayoutPrivate::restoreSimplifiedConstraints(), QGraphicsAnchorLayoutPrivate::restoreSimplifiedGraph(), QToolBarAreaLayout::restoreState(), QMainWindowLayoutState::restoreState(), QDockAreaLayoutInfo::restoreState(), QGraphicsAnchorLayoutPrivate::restoreVertices(), QFileDialogPrivate::restoreWidgetState(), QFileDialogPrivate::retranslateStrings(), QMimeDataPrivate::retrieveTypedData(), QSqlTableModel::revertAll(), QSequentialAnimationGroupPrivate::rewindForwards(), RenderHelpers::rhiRenderReflectionMap(), QQmlXmlListModel::roleNames(), QtPrivate::FixedColumnMatrix< T, NumColumns >::rowCount(), QFileSystemModel::rowCount(), TableModel::rowCount(), QListModel::rowCount(), QTableModel::rowCount(), QQmlTreeModelToTableModel::rowCount(), QQuickViewTestUtils::QaimModel::rowCount(), BacktraceJob::run(), FrameJob::run(), AnchorsValidatorPass::run(), QQmlJSFunctionInitializer::run(), QUnifiedTimer::runningAnimationCount(), runProcess(), sanityCheck(), QQuickParentChange::saveCurrentValues(), QSvgPaintEngine::saveGradientStops(), QDockAreaLayoutInfo::saveState(), QToolBarAreaLayout::saveState(), QHighDpi::scale(), QPixmapIconEngine::scaledPixmap(), QQmlDeferredAndCustomParserBindingScanner::scanObject(), QGraphicsItem::sceneEvent(), QEglFSX11Integration::screenSize(), QWidgetPrivate::scrollChildren(), QListModeViewBase::scrollContentsBy(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QMenuPrivate::scrollMenu(), QWaylandCompositorPrivate::seatFor(), QString::section(), QTreeViewPrivate::select(), QItemSelectionModel::selectedColumns(), QFileDialog::selectedFiles(), QTableView::selectedIndexes(), QTreeView::selectedIndexes(), QListWidget::selectedItems(), QTreeWidget::selectedItems(), QTableWidget::selectedRanges(), QItemSelectionModel::selectedRows(), QFutureInterfaceBasePrivate::sendCallOut(), QFutureInterfaceBasePrivate::sendCallOuts(), QWidgetPrivate::sendComposeStatus(), QWaylandKeyboardPrivate::sendEnter(), QWaylandTouch::sendFullTouchEvent(), QQmlProfilerAdapter::sendMessages(), QV4ProfilerAdapter::sendMessages(), QQuickProfilerAdapter::sendMessages(), QQuick3DProfilerAdapter::sendMessages(), QWaylandTextInput::sendModifiersMap(), QWidgetPrivate::sendPendingMoveAndResizeEvents(), QHttp2ProtocolHandler::sendRequest(), sendResizeEvents(), QDockAreaLayout::separatorMove(), QDockAreaLayoutInfo::separatorMove(), separatorMoveHelper(), QDockAreaLayoutInfo::separatorRegion(), QShader::serialized(), QIBusAttributeList::serializeTo(), QBluetoothServer::serverAddress(), QBluetoothServiceInfoPrivate::serverChannel(), QBluetoothServiceInfo::serviceClassUuids(), QQmlListModel::set(), QApplicationPrivate::setActiveWindow(), QSvgAnimateTransform::setArgs(), QAndroidPlatformScreen::setAvailableGeometry(), QWaylandSeatPrivate::setCapabilities(), QImage::setColor(), QGradient::setColorAt(), QImage::setColorCount(), QTableModel::setColumnCount(), QSimplex::setConstraints(), QSequentialAnimationGroupPrivate::setCurrentAnimation(), QPrintPreviewWidgetPrivate::setCurrentPage(), QPainterPathStroker::setDashPattern(), QListModel::setData(), QTreeWidgetItem::setData(), QListWidgetItem::setData(), QOpenGLShaderProgram::setDefaultInnerTessellationLevels(), QOpenGLShaderProgram::setDefaultOuterTessellationLevels(), QSqlIndex::setDescending(), QQuickItemPrivate::setEffectiveEnableRecur(), QQuickItemPrivate::setEffectiveVisibleRecur(), QWidgetPrivate::setEnabled_helper(), QQmlDataBlob::setError(), QFontEngineMulti::setFallbackFamiliesList(), QMenuPrivate::setFirstActionActive(), QTreeWidgetItem::setFlags(), AndroidCameraPrivate::setFocusAreas(), QGridLayoutEngine::setGeometries(), CardLayout::setGeometry(), QGlyphRun::setGlyphIndexes(), QSGDistanceFieldGlyphNode::setGlyphs(), QSGDistanceFieldGlyphCache::setGlyphsPosition(), QSGDistanceFieldGlyphCache::setGlyphsTexture(), QQuickStochasticEngine::setGoal(), QSGSoftwareInternalRectangleNode::setGradientStops(), QSGBasicInternalRectangleNode::setGradientStops(), QTableModel::setHeaderData(), QTableModel::setHorizontalHeaderItem(), QNdefNfcSmartPosterRecord::setIcons(), QQuickItemPrivate::setImplicitLayoutMirror(), QQuick3DSkin::setInverseBindPoses(), QTableModel::setItem(), QGraphicsScene::setItemIndexMethod(), QGraphicsWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLayoutDirection_helper(), QWidgetPrivate::setLocale_helper(), QStandardItemPrivate::setModel(), QQmlDMAbstractItemModelData::setModelData(), QXcbScreen::setMonitor(), QWindowsNativeFileDialogBase::setNameFilters(), QXcbWindow::setNetWmStateOnUnmappedWindow(), QIIOFHelper::setOption(), QPointingDevicePrivate::setPassiveGrabberContext(), QMessagePattern::setPattern(), QPdf::Stroker::setPen(), QImage::setPixel(), QIconModeViewBase::setPositionForIndex(), QGlyphRun::setPositions(), QTextFormat::setProperty(), QMacPrintEngine::setProperty(), QPdfPrintEngine::setProperty(), QWin32PrintEngine::setProperty(), QDBusPendingCallPrivate::setReplyCallback(), QBenchmarkTestMethodData::setResults(), QGridLayoutEngine::setRowAlignment(), QTableModel::setRowCount(), QGridLayoutEngine::setRowSizeHint(), QGridLayoutEngine::setRowSpacing(), QGridLayoutEngine::setRowStretchFactor(), QmlJSDebugger::GlobalInspector::setSelectedItems(), QQuickShortcut::setSequences(), QSplitterPrivate::setSizes_helper(), QGradient::setStops(), QBoxLayout::setStretch(), QCoreGraphicsPaintEnginePrivate::setStrokePen(), QWidgetPrivate::setStyle_helper(), QTextOption::setTabArray(), QTextBlockFormat::setTabPositions(), QObjectPrivate::setThreadData_helper(), QNdefNfcSmartPosterRecord::setTitles(), QColorSpacePrivate::setTransferFunctionTable(), QColorSpacePrivate::setTransferFunctionTables(), QGraphicsItem::setTransformations(), QWidgetPrivate::setUpdatesEnabled_helper(), QV4::Compiler::Context::setupFunctionIndices(), QBoxLayoutPrivate::setupGeom(), QQmlDMAbstractItemModelData::setValue(), QQuickAnimationPropertyUpdater::setValue(), QTableModel::setVerticalHeaderItem(), QEglFSWindow::setVisible(), QXcbWindow::setWindowIcon(), QWidgetPrivate::setWindowIcon_helper(), QXcbWindow::setWmWindowType(), QSSGRenderShadowMap::shadowMapEntry(), shiftConstraints(), shouldArrayRemainArray(), QtAndroidFileDialogHelper::QAndroidPlatformFileDialogHelper::show(), QWidgetPrivate::showChildren(), QQmlTreeModelToTableModel::showModelChildItems(), QFileDialogComboBox::showPopup(), QQmlPropertyCache::signal(), QQmlPropertyCache::signalCount(), QQmlData::signalEmitted(), QQmlPropertyCache::signalParameterStringForJS(), QMetaMethod::signature(), QGraphicsAnchorLayoutPrivate::simplifyGraphIteration(), QGraphicsAnchorLayoutPrivate::simplifyVertices(), QOCICols::size(), QJsonObject::size(), QVertexIndexVector::size(), QWasmWindowStack::size(), QGeoPathPrivate::size(), QCborArray::size(), QCborMap::size(), QHttpMultiPartIODevice::size(), QDockAreaLayoutInfo::sizeHint(), QToolBarAreaLayoutLine::sizeHint(), QToolBarAreaLayoutInfo::sizeHint(), QTreeView::sizeHintForColumn(), QDockAreaLayoutItem::skip(), QToolBarAreaLayoutLine::skip(), Preprocessor::skipBranch(), Preprocessor::skipUntilEndif(), QList< T >::sliced(), QList< T >::sliced(), QQuickListViewPrivate::snapPosAt(), QGraphicsAnchorLayoutPrivate::solveMinMax(), QGraphicsAnchorLayoutPrivate::solvePreferred(), QListModel::sort(), QTableModel::sort(), QStringListModel::sort(), QFileSystemModel::sort(), QStandardItemPrivate::sortChildren(), QDirPrivate::sortFileList(), QTreeModel::sortItems(), QQmlLSUtils::sourceLocationToDomItem(), splitIntoFamilies(), splitPolygon(), QQuickItem::stackAfter(), QGraphicsItem::stackBefore(), QQuickItem::stackBefore(), Stringify::stackContains(), QWindowsCaRootFetcher::start(), QXcbDrag::startDrag(), QTlsPrivate::TlsCryptographOpenSSL::startHandshake(), startQtApplication(), QQuickDesignerSupport::statesForItem(), QWidgetRepaintManager::staticContents(), QPluginLoader::staticInstances(), AVFAudioDecoder::stop(), Scheduler::stopScheduler(), QQmlAnimationTimer::stopTimer(), QSGRhiDistanceFieldGlyphCache::storeGlyphs(), QSplitterPrivate::storeSizes(), QBoxLayout::stretch(), QFontEngineMulti::stringToCMap(), QSettingsPrivate::stringToVariant(), QWidgetPrivate::subtractOpaqueSiblings(), QMdiAreaPrivate::subWindowList(), QPrinter::supportedResolutions(), QQnxCamera::supportedUnits(), QList< T >::swapItemsAt(), QWidgetRepaintManager::sync(), QHstsStore::synchronize(), QTextOption::tabArray(), QTableModel::tableIndex(), QTextBlockFormat::tabPositions(), QCborValue::tag(), QCborValue::taggedValue(), QListModel::take(), QDockAreaLayoutInfo::takeAt(), QToolBarAreaLayout::takeAt(), QGridLayoutPrivate::takeAt(), QDockWidgetLayout::takeAt(), QToolBarLayout::takeAt(), CardLayout::takeAt(), QTreeWidgetItem::takeChild(), QTreeWidgetItem::takeChildren(), QSGRenderThreadEventQueue::takeEvent(), QWindowSystemInterfacePrivate::WindowSystemEventList::takeFirstNonUserInputOrReturnNull(), QTableModel::takeHorizontalHeaderItem(), QTableModel::takeVerticalHeaderItem(), tcbToBezier(), Parser::test(), SymbolStack::test(), QCss::Parser::test(), QQmlTreeModelToTableModel::testConsistency(), Moc::testFunctionAttribute(), QTextLine::textLength(), QGeoFileTileCacheOsm::tileSpecToFilename(), QXcbDrag::timerEvent(), QNdefNfcSmartPosterRecord::title(), QNdefNfcSmartPosterRecord::titleCount(), QWindowsDirect2DPaintEnginePrivate::to_d2d_brush(), QCborValue::toDateTime(), QPainterPath::toFillPolygon(), QPainterPath::toFillPolygons(), QQmlPropertyCache::toMetaObjectBuilder(), QToolBarAreaLayout::toolBarBreak(), QEglFSScreen::topLevelAt(), QGuiApplication::topLevelWindows(), QUrl::toStringList(), QPainterPath::toSubpathPolygons(), QTcpServerPrivate::totalPendingConnections(), QCborValue::toUrl(), QCborValue::toUuid(), QSvgNode::transformedBounds(), QQuickParentAnimation::transition(), QQuickAnchorAnimation::transition(), QQuickScriptAction::transition(), QQuickPropertyAction::transition(), QQuickSmoothedAnimation::transition(), QQuickSpringAnimation::transition(), QPainterPath::translate(), QGridLayoutEngine::transpose(), QQmlJSUtils::traverseFollowingMetaObjectHierarchy(), QQuickShapeGenericRenderer::triangulateFill(), QLocale::uiLanguages(), 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(), QGraphicsAnchorLayoutPrivate::updateAnchorSizes(), QAnimationTimer::updateAnimationsTime(), QQmlAnimationTimer::updateAnimationsTime(), QUnifiedTimer::updateAnimationTimers(), QQuickListViewPrivate::updateAverage(), updateBBox(), QtGraphicsAnchorLayout::SequentialAnchorData::updateChildrenSizes(), QQuickListViewPrivate::updateCurrentSection(), QQuickWindowPrivate::updateDirtyNode(), QAbstractItemView::updateEditorGeometries(), QWidgetPrivate::updateFont(), QGraphicsWidgetPrivate::updateFont(), QQuickGridViewPrivate::updateFooter(), QQuickListViewPrivate::updateFooter(), QHstsCache::updateFromPolicies(), QMenuBarPrivate::updateGeometries(), QSGBasicInternalRectangleNode::updateGeometry(), QSGDefaultGlyphNode::updateGeometry(), QSGDistanceFieldGlyphNode::updateGeometry(), QQuickGridViewPrivate::updateHeader(), QQuickListViewPrivate::updateHeader(), QQuickNinePatchImagePrivate::updateInsets(), QV4::Function::updateInternalClass(), QQuickTextPrivate::updateLayout(), QQuickDialogButtonBoxPrivate::updateLayout(), QSGDefaultInternalRectangleNode::updateMaterialBlending(), QQuickNinePatchImagePrivate::updatePaddings(), QGraphicsItemPrivate::updatePaintedViewBoundingRects(), QQuickTextEdit::updatePaintNode(), QGraphicsWidgetPrivate::updatePalette(), QWindowsDirect2DPaintEnginePrivate::updatePen(), QRasterPaintEngine::updatePen(), updatePixelRatioHelper(), QGfxSourceProxy::updatePolish(), QFFmpegImageCapture::updateReadyForCapture(), QGraphicsView::updateScene(), QTreeViewPrivate::updateScrollBars(), QWindowPrivate::updateSiblingPosition(), QGeoMapPolylineGeometry::updateSourcePoints(), QGeoMapPolygonGeometry::updateSourcePoints(), QQuickListViewPrivate::updateStickySections(), ModelNodeMetaObject::updateValues(), QMimeData::urls(), QFileDialogPrivate::userSelectedFiles(), v4StackTrace(), QWavefrontMesh::validateAttributes(), QQuickGridMesh::validateAttributes(), QBoxLayoutPrivate::validateIndex(), validatePosixRule(), QTabBarPrivate::validIndex(), BezierEase::value(), TCBEase::value(), QInputMethodQueryEvent::value(), QSettingsPrivate::variantListToStringList(), variantToString(), QTlsPrivate::X509CertificateOpenSSL::verify(), QListModeViewBase::verticalOffset(), QListModeViewBase::verticalScrollToValue(), QTreeViewPrivate::viewIndex(), QScreen::virtualSiblings(), QtWaylandClient::QWaylandScreen::virtualSiblings(), QDialogButtonBoxPrivate::visibleButtons(), QQuickItemViewPrivate::visibleItem(), QQuickListViewPrivate::visibleItemsChanged(), QQmlJS::Dom::QQmlDomAstCreator::visit(), GLSL::Semantic::visit(), QmlIR::IRBuilder::visit(), QSGSoftwareRenderableNodeUpdater::visit(), QFutureSynchronizer< T >::waitForFinished(), QFbScreen::windowCount(), QSGSoftwareThreadedRenderLoop::windowDestroyed(), QSGThreadedRenderLoop::windowDestroyed(), QFbScreen::windowForId(), windowPlacementOffset(), QTimeZonePrivate::windowsIdToDefaultIanaId(), QTiffHandler::write(), QPixmapIconEngine::write(), Parser::write(), ICOReader::write(), QQmlPropertyPrivate::write(), QIBaseResultPrivate::writeArray(), QTextOdfWriter::writeBlock(), QV4::Compiler::JSUnitGenerator::writeClass(), QQmlJSStreamWriter::writeEndObject(), QTextMarkdownWriter::writeFrame(), QV4::Compiler::JSUnitGenerator::writeFunction(), QNfcTagType4NdefFsm::writeMessages(), QNearFieldTargetPrivateImpl::writeNdefMessages(), QPdfEnginePrivate::writeTail(), QSctpSocketPrivate::writeToSocket(), QShaderDescriptionPrivate::writeToStream(), writingSystemForFont(), x11SetClipRegion(), and QTextLine::xToCursor().

◆ sliced() [1/2]

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

Definition at line 648 of file qlist.h.

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

+ 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 653 of file qlist.h.

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

+ Here is the call graph for this function:

◆ squeeze()

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

Definition at line 767 of file qlist.h.

References capacity, QtPrivate::QGenericArrayOps< T >::copyAppend(), d, and QtPrivate::QGenericArrayOps< T >::moveAppend().

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

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

◆ startsWith()

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

Definition at line 634 of file qlist.h.

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

Referenced by checkCondition().

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

◆ swap()

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

Definition at line 326 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 664 of file qlist.h.

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

Referenced by QSSGLayerRenderData::frustumCullingInline(), QWindowSystemInterface::handlePrimaryScreenChanged(), QImageReaderPrivate::initHandler(), QGraphicsSceneIndexPrivate::items_helper(), QXcbVirtualDesktop::setPrimaryScreen(), and QGeoMapPolygonGeometry::updateSourcePoints().

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

◆ takeAt()

◆ takeFirst()

template<typename T >
value_type QList< T >::takeFirst ( )
inline

Definition at line 549 of file qlist.h.

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

Referenced by QToolBarLayout::~QToolBarLayout(), QAbstractSocketPrivate::_q_connectToNextAddress(), QGraphicsSceneBspTreeIndexPrivate::_q_updateIndex(), QEventDispatcherUNIXPrivate::activateSocketNotifiers(), QQuickTextNode::addTextDocument(), QHttpNetworkConnectionChannel::allDone(), QQuickGridViewPrivate::applyInsertionChange(), QQuickListViewPrivate::applyInsertionChange(), QObjectCleanupHandler::clear(), QBoxLayoutPrivate::deleteAll(), QGridLayoutPrivate::deleteAll(), QQmlTypeLoader::Blob::dependencyComplete(), deployQtFrameworks(), QQueue< T >::dequeue(), QMacMimeRegistry::destroyMimeTypes(), QDB2Result::exec(), QQmlTreeModelToTableModel::expandPendingRows(), SamplePool::getSample(), QQmlPluginImporter::importPlugins(), init_platform(), ServerAcceptanceThread::nextPendingConnection(), QWaitConditionPrivate::pre(), qOraOutValue(), QAndroidAudioDecoder::read(), QHeaderViewPrivate::resizeSections(), QCocoaEventDispatcherPrivate::sendQueuedUserInputEvents(), QXcbEventQueue::takeFirst(), QWindowSystemInterfacePrivate::WindowSystemEventList::takeFirstOrReturnNull(), QGeoCameraTilesPrivate::tilesFromPolygon(), QThreadPoolPrivate::tryStart(), QQuickTextEdit::updatePaintNode(), and QmlTypeRegistrar::write().

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

◆ takeLast()

◆ toList()

◆ toVector()

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

Definition at line 719 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 661 of file qlist.h.

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

Referenced by QDarwinFormatInfo::QDarwinFormatInfo(), QGStreamerAudioDeviceInfo::QGStreamerAudioDeviceInfo(), QOpenSLESDeviceInfo::QOpenSLESDeviceInfo(), QPulseAudioDeviceInfo::QPulseAudioDeviceInfo(), QMessageBoxPrivate::abstractButtonForId(), QQuickActionGroupPrivate::actions_at(), QGeoPolygon::addHole(), QQmlJSLinter::applyFixes(), QDBusPendingReplyBase::argumentAt(), QTabBarPrivate::at(), QTabBarPrivate::at(), QListModel::at(), QPlatformMediaDevices::audioInputDevice(), QPlatformMediaDevices::audioOutputDevice(), QSqlResult::boundValue(), QQuickButtonGroupPrivate::buttons_at(), QGridLayoutRowData::calculateGeometries(), Moc::checkSuperClasses(), QAccessibleQuickPage::child(), QQuickPanePrivate::contentChildrenChange(), QQuickContainerPrivate::contentData_at(), QQuickMenuPrivate::contentData_at(), QQuickPath::createPath(), QQuickLabsPlatformFileDialog::currentFile(), QQmlXmlListModel::data(), QTlsPrivate::TlsKeyGeneric::decodeDer(), QBoxLayoutPrivate::effectiveMargins(), QOCICols::execBatch(), exportMultiPoint(), QSqlRecord::field(), QSqlRecord::fieldName(), QQuickLabsPlatformFileDialog::file(), QFileDialog::getExistingDirectoryUrl(), QInputDialog::getItem(), QFileDialog::getOpenFileUrl(), QFileDialog::getSaveFileUrl(), BreakPointHandler::handleRemoveBreakpoint(), BreakPointHandler::handleSetBreakpoint(), QTableModel::horizontalHeaderItem(), importImp(), QFactoryLoader::indexOf(), QQuickLabsPlatformMenu::insertItem(), QQuickLabsPlatformMenuBar::insertMenu(), QSqlRecord::isGenerated(), QSqlRecord::isNull(), CardLayout::itemAt(), QFactoryLoader::keyMap(), QTextTableCell::lastPosition(), QInputDialogPrivate::listViewText(), QDBusPlatformMenu::menuItemAt(), QGtk3Menu::menuItemAt(), QWidgetPlatformMenu::menuItemAt(), QGraphicsScenePrivate::mousePressEventHandler(), QFileSystemModelPrivate::node(), QTlsPrivate::X509CertificateGeneric::parse(), parseCollection(), QQuickStyledTextPrivate::parseImageAttributes(), LocationSingleton::polygon(), QQuickStackViewPrivate::popToItem(), QBluetoothServiceInfoPrivate::protocolDescriptor(), QTlsPrivate::Q_GLOBAL_STATIC_WITH_ARGS(), q_reduceConfigAttributes(), QBoxLayoutPrivate::replaceAt(), QFormLayoutPrivate::replaceAt(), QGridLayoutPrivate::replaceAt(), QWidget::restoreGeometry(), QSqlTableModel::revertAll(), scanImports(), QQuickFileDialog::selectedFile(), QListView::selectionChanged(), QTableView::selectionChanged(), QTreeView::selectionChanged(), QListWidgetItem::setData(), QQuickLabsPlatformFileDialog::setFiles(), QQuickPathPolyline::setPath(), QQuickPathMultiline::setPaths(), QMessageBoxPrivate::showOldMessageBox(), QQC2::QCommonStyle::standardIcon(), QCommonStyle::standardIcon(), QTableModel::takeItem(), QSqlRelationalTableModelPrivate::translateFieldNames(), QMenuBarPrivate::updateGeometries(), QQmlPropertyPrivate::urlSequence(), QQmlJSMetaEnum::value(), QSqlRecord::value(), QList< T >::value(), QQuickComboBoxDelegateModel::variantValue(), QTlsPrivate::X509CertificateOpenSSL::verify(), QTableModel::verticalHeaderItem(), QQmlPropertyPrivate::write(), writeEnumConverter(), writeEnums(), and 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 817 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 80 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: