Home
last modified time | relevance | path

Searched refs:m_lastIndex (Results 1 – 25 of 96) sorted by relevance

1234

/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/core/undo/
H A Dsubtitleactions.cpp52 m_lastIndex(m_insertIndex + lines.count() - 1), in InsertLinesAction()
56 Q_ASSERT(m_lastIndex >= 0); in InsertLinesAction()
57 Q_ASSERT(m_insertIndex <= m_lastIndex); in InsertLinesAction()
72 …on->m_insertIndex == m_lastIndex + 1 || (m_insertIndex <= currentAction->m_lastIndex && currentAct… in mergeWith()
73 m_lastIndex += currentAction->m_lastIndex - currentAction->m_insertIndex + 1; in mergeWith()
127 Q_ASSERT(m_lastIndex >= 0); in RemoveLinesAction()
128 Q_ASSERT(m_lastIndex <= m_subtitle->linesCount()); in RemoveLinesAction()
129 Q_ASSERT(m_firstIndex <= m_lastIndex); in RemoveLinesAction()
144 if(m_lastIndex + 1 == currentAction->m_firstIndex) { in mergeWith()
146 m_lastIndex = currentAction->m_lastIndex; in mergeWith()
[all …]
/dports/graphics/drawpile/Drawpile-2.1.20/src/libserver/
H A Dsessionhistory.cpp26 m_firstIndex(0), m_lastIndex(-1) in SessionHistory()
55 Q_ASSERT(m_lastIndex==-1); in historyLoaded()
57 m_lastIndex = messageCount - 1; in historyLoaded()
67 ++m_lastIndex; in addMessage()
83 m_firstIndex = m_lastIndex + 1; in reset()
84 m_lastIndex += newHistory.size(); in reset()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/x11-toolkits/qt5-gui/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/devel/qt5-testlib/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/devel/qt5-concurrent/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/devel/qt5-dbus/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/devel/qt5-buildtools/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/print/qt5-printsupport/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/graphics/qt5-opengl/kde-qtbase-5.15.2p263/src/corelib/thread/
H A Dqthreadpool_p.h81 return m_lastIndex >= MaxPageSize - 1; in isFull()
85 return m_firstIndex > m_lastIndex; in isFinished()
91 m_lastIndex += 1; in push()
92 m_entries[m_lastIndex] = runnable; in push()
125 for (int i = m_firstIndex; i <= m_lastIndex; i++) { in tryTake()
145 int m_lastIndex = -1; variable
/dports/devel/msbuild/msbuild-0.06/src/Build/Collections/RetrievableEntryHashSet/Originals/
H A DHashSet.cs79 private int m_lastIndex; field in System.Collections.Generic.HashSet
100 m_lastIndex = 0; in HashSet()
168 if (m_lastIndex > 0) { in Clear()
175 m_lastIndex = 0; in Clear()
237 m_lastIndex = 0; in Remove()
849 m_lastIndex = newIndex; in TrimExcess()
945 index = m_lastIndex; in AddIfNotPresent()
946 m_lastIndex++; in AddIfNotPresent()
1191 index = m_lastIndex; in AddOrGetLocation()
1192 m_lastIndex++; in AddOrGetLocation()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/declarative/qml/
H A Dqdeclarativevaluetypescriptclass.cpp105 m_lastIndex = -1; in queryProperty()
109 m_lastIndex = o->type->metaObject()->indexOfProperty(propName.constData()); in queryProperty()
110 if (m_lastIndex == -1) in queryProperty()
121 QMetaProperty prop = ref->object->metaObject()->property(m_lastIndex); in queryProperty()
141 QMetaProperty p = ref->type->metaObject()->property(m_lastIndex); in property()
147 QMetaProperty p = copy->type->metaObject()->property(m_lastIndex); in property()
167 QMetaProperty p = ref->type->metaObject()->property(m_lastIndex); in setProperty()
179 valueTypeData.valueTypeCoreIdx = m_lastIndex; in setProperty()
192 … QDeclarativePropertyPrivate::setBinding(ref->object, ref->property, m_lastIndex, newBinding); in setProperty()
204 QMetaProperty p = copy->type->metaObject()->property(m_lastIndex); in setProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Collections/Generic/
H A DHashSet.cs89 private int m_lastIndex; field in System.Collections.Generic.HashSet
110 m_lastIndex = 0; in HashSet()
178 if (m_lastIndex > 0) { in Clear()
185 m_lastIndex = 0; in Clear()
247 m_lastIndex = 0; in Remove()
865 m_lastIndex = newIndex; in TrimExcess()
988 index = m_lastIndex; in AddIfNotPresent()
989 m_lastIndex++; in AddIfNotPresent()
1242 index = m_lastIndex; in AddOrGetLocation()
1243 m_lastIndex++; in AddOrGetLocation()
[all …]
/dports/games/libretro-paralleln64/parallel-n64-6e26fbb/gles2rice/src/
H A DOGLExtCombiner.cpp32 :COGLColorCombiner(pRender), m_maxTexUnits(0), m_lastIndex(-1), in COGLColorCombiner4()
74 …ecodedMux->m_dwMux0 != m_dwLastMux0 || m_pDecodedMux->m_dwMux1 != m_dwLastMux1 || m_lastIndex < 0 ) in InitCombinerCycle12()
77 m_lastIndex = FindCompiledMux(); in InitCombinerCycle12()
78 if( m_lastIndex < 0 ) // Can not found in InitCombinerCycle12()
80 m_lastIndex = ParseDecodedMux(); in InitCombinerCycle12()
95 GenerateCombinerSettingConstants(m_lastIndex); in InitCombinerCycle12()
96 GenerateCombinerSetting(m_lastIndex); in InitCombinerCycle12()
100 GenerateCombinerSettingConstants(m_lastIndex); in InitCombinerCycle12()
211 m_lastIndex = m_vCompiledSettings.size()-1; in SaveParsedResult()
220 return m_lastIndex; in SaveParsedResult()
[all …]

1234