Home
last modified time | relevance | path

Searched refs:linesCount (Results 1 – 25 of 114) sorted by relevance

12345

/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/scripting/examples/
H A Dprepare_RTL_release.py14 s.insertNewLine(s.linesCount(), False)
17 tempLine = s.line(s.linesCount()-1)
20 for line_index in range(0, s.linesCount()-1):
37 s.removeLine(s.linesCount()-1)
/dports/graphics/quickqanava/QuickQanava-ab88d77ec62175b9fd499a154ffaf92f7bf23989/src/
H A DqanLineGrid.cpp133 const int linesCount = numLinesX + numLinesY; in updateGrid() local
134 if ( _minorLines.size() < linesCount ) in updateGrid()
135 _minorLines.resize(linesCount); in updateGrid()
136 if ( _minorLines.size() < linesCount ) in updateGrid()
138 if ( _majorLines.size() < linesCount ) in updateGrid()
139 _majorLines.resize(linesCount); in updateGrid()
140 if ( _majorLines.size() < linesCount ) in updateGrid()
/dports/devel/pear-phing/phing-2.6.1/filters/
H A DHeadFilter.php93 $linesCount = count($lines);
97 $len = ($linesCount > $this->_lines ? $this->_lines - $this->_linesRead : $linesCount);
/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/core/undo/
H A Dsubtitleactions.cpp51 m_insertIndex(insertIndex < 0 ? subtitle->linesCount() : insertIndex), in InsertLinesAction()
55 Q_ASSERT(m_insertIndex >= 0 && m_insertIndex <= m_subtitle->linesCount()); in InsertLinesAction()
126 Q_ASSERT(m_firstIndex <= m_subtitle->linesCount()); in RemoveLinesAction()
128 Q_ASSERT(m_lastIndex <= m_subtitle->linesCount()); in RemoveLinesAction()
203 Q_ASSERT(m_fromIndex <= m_subtitle->linesCount()); in MoveLineAction()
205 Q_ASSERT(m_toIndex <= m_subtitle->linesCount()); in MoveLineAction()
/dports/deskutils/semantik/semantik-1.2.7/src/fig/
H A Dbox_component.cpp64 int l_iNumLines = linesCount(l_sText, l_iMaxLines, l_fWidth, l_fHeight); in best_size()
155 int l_iBestCount = linesCount(l_sText, l_iMaxLines, l_fWidth, l_fHeight); in paint()
160 int l_iNumLineTry = linesCount(l_sText, i, l_fWidth, l_fHeight); in paint()
204 int box_component::linesCount(const QString& i_sInput, int i_iNumLines, qreal i_fWidth, qreal i_fHe… in linesCount() function in box_component
273 int l_iNumLines = linesCount(i_sText, l_iMaxLines, l_fWidth, l_fHeight); in best_size_for()
H A Dbox_usecase.cpp34 int box_usecase::linesCount(const QString& i_sInput, int i_iNumLines, qreal i_fWidth, qreal i_fHeig… in linesCount() function in box_usecase
144 int l_iBestCount = linesCount(l_sText, l_iMaxLines, l_fWidth, l_fHeight); in paint()
149 int l_iNumLineTry = linesCount(l_sText, i, l_fWidth, l_fHeight); in paint()
233 int l_iNumLines = linesCount(l_sText, l_iMaxLines, l_fWidth, l_fHeight); in best_size()
284 int l_iNumLines = linesCount(i_sText, l_iMaxLines, l_fWidth, l_fHeight); in best_size_for()
H A Dbox_decision.cpp102 int l_iBestCount = linesCount(l_sText, l_iMaxLines, l_fWidth, l_fHeight); in paint()
107 int l_iNumLineTry = linesCount(l_sText, i, l_fWidth, l_fHeight); in paint()
205 int l_iNumLines = linesCount(l_sText, l_iMaxLines, l_fWidth, l_fHeight); in best_size()
222 int box_decision::linesCount(const QString& i_sInput, int i_iNumLines, qreal i_fWidth, qreal i_fHei… in linesCount() function in box_decision
310 int l_iNumLines = linesCount(i_sText, l_iMaxLines, l_fWidth, l_fHeight); in best_size_for()
/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/gui/treeview/
H A Dlinesmodel.cpp67 if(m_subtitle->linesCount()) { in setSubtitle()
68 onLinesAboutToRemove(0, m_subtitle->linesCount() - 1); in setSubtitle()
69 onLinesRemoved(0, m_subtitle->linesCount() - 1); in setSubtitle()
76 if(m_subtitle->linesCount()) { in setSubtitle()
77 onLinesInserted(0, m_subtitle->linesCount() - 1); in setSubtitle()
117 return m_subtitle ? m_subtitle->linesCount() : 0; in rowCount()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/src/
H A Dhough_segments.cpp181 …int linesCount = houghLinesProbabilistic_gpu(src, accum_, result_.ptr<int4>(), maxLines_, rho_, th… in detect() local
183 if (linesCount == 0) in detect()
189 result_.cols = linesCount; in detect()
H A Dhough_lines.cpp174 …int linesCount = linesGetResult_gpu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_… in detect() local
176 if (linesCount == 0) in detect()
182 result_.cols = linesCount; in detect()
/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/utils/
H A Dfinder.cpp130 if(!m_subtitle || !m_subtitle->linesCount()) in find()
298 int linesCount = lastIndex - firstIndex + 1; in onIteratorSynchronized() local
301 m_allSearchedIndex += linesCount; in onIteratorSynchronized()
318 m_allSearchedIndex -= linesCount; in onIteratorSynchronized()
/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/scripting/
H A Dscripting_subtitle.cpp46 Scripting::Subtitle::linesCount() const in linesCount() function in Scripting::Subtitle
48 return m_backend->linesCount(); in linesCount()
104 if(index > m_backend->linesCount()) in insertNewLine()
113 if(index < 0 || index >= m_backend->linesCount()) in removeLine()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/javascriptcore/JavaScriptCore/bytecode/
H A DSamplingTool.cpp356 int linesCount = lineCounts.size(); in dump() local
357 Vector<LineCountInfo> lineCountInfo(linesCount); in dump()
364 … qsort(lineCountInfo.begin(), linesCount, sizeof(LineCountInfo), compareLineCountInfoSampling); in dump()
366 for (lineno = 0; lineno < linesCount; ++lineno) { in dump()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/bytecode/
H A DSamplingTool.cpp356 int linesCount = lineCounts.size(); in dump() local
357 Vector<LineCountInfo> lineCountInfo(linesCount); in dump()
364 … qsort(lineCountInfo.begin(), linesCount, sizeof(LineCountInfo), compareLineCountInfoSampling); in dump()
366 for (lineno = 0; lineno < linesCount; ++lineno) { in dump()
/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/actions/
H A Duseraction.cpp188 if(m_subtitle->linesCount() > 0) in setSubtitle()
190 if(m_subtitle->linesCount() > 1) in setSubtitle()
214 if(m_subtitle->linesCount() > 0) in onSubtitleLinesChanged()
216 if(m_subtitle->linesCount() > 1) in onSubtitleLinesChanged()
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/GUI.NET/Debugger/FastColoredTextBox/
H A DFileTextSource.cs139 … var linesCount = Math.Min(lines.Count, CurrentTB.ClientRectangle.Height/CurrentTB.CharHeight); in OpenFile()
140 for (int i = 0; i < linesCount; i++) in OpenFile()
143 NeedRecalc(new TextChangedEventArgs(0, linesCount - 1)); in OpenFile()
145 OnRecalcWordWrap(new TextChangedEventArgs(0, linesCount - 1)); in OpenFile()
H A DDocumentMap.cs158 var linesCount = target.Lines.Count; in OnPaint()
159 var sp1 = (float)r.Start.iLine / linesCount; in OnPaint()
160 var sp2 = (float)r.End.iLine / linesCount; in OnPaint()
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/bytecode/
H A DSamplingTool.cpp356 int linesCount = lineCounts.size(); in dump() local
357 Vector<LineCountInfo> lineCountInfo(linesCount); in dump()
364 … qsort(lineCountInfo.begin(), linesCount, sizeof(LineCountInfo), compareLineCountInfoSampling); in dump()
366 for (lineno = 0; lineno < linesCount; ++lineno) { in dump()
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/bytecode/
H A DSamplingTool.cpp356 int linesCount = lineCounts.size(); in dump() local
357 Vector<LineCountInfo> lineCountInfo(linesCount); in dump()
364 … qsort(lineCountInfo.begin(), linesCount, sizeof(LineCountInfo), compareLineCountInfoSampling); in dump()
366 for (lineno = 0; lineno < linesCount; ++lineno) { in dump()
/dports/www/moodle310/moodle/mod/assign/feedback/editpdf/fpdi/PdfParser/CrossReference/
H A DLineReader.php130 $linesCount = \count($lines);
137 for ($i = 0; $i < $linesCount; $i++) {
/dports/www/moodle39/moodle/mod/assign/feedback/editpdf/fpdi/PdfParser/CrossReference/
H A DLineReader.php130 $linesCount = \count($lines);
137 for ($i = 0; $i < $linesCount; $i++) {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/
H A DLineBreaksPreparator.java727 private void putBlankLinesBefore(ASTNode node, int linesCount) { in putBlankLinesBefore() argument
731 putBlankLinesBefore(this.tm.get(index), linesCount); in putBlankLinesBefore() local
734 private void putBlankLinesBefore(Token token, int linesCount) { in putBlankLinesBefore() argument
735 if (linesCount >= 0) { in putBlankLinesBefore()
736 token.putLineBreaksBefore(linesCount + 1); in putBlankLinesBefore()
738 token.putLineBreaksBefore(~linesCount + 1); in putBlankLinesBefore()
743 private void putBlankLinesAfter(Token token, int linesCount) { in putBlankLinesAfter() argument
744 if (linesCount >= 0) { in putBlankLinesAfter()
745 token.putLineBreaksAfter(linesCount + 1); in putBlankLinesAfter()
747 token.putLineBreaksAfter(~linesCount + 1); in putBlankLinesAfter()
/dports/cad/libopencad/libopencad-0.2.0/apps/
H A Dcadinfo.cpp157 int linesCount = 0; in main() local
235 ++linesCount; in main()
306 cout << "Lines count: " << linesCount << endl; in main()
/dports/graphics/qvge/qvge-0.6.3/src/qvgeioui/
H A DCCSVImportDialog.cpp47 int linesCount = 0; in exec() local
48 while (!ts.atEnd() && linesCount++ < 10) in exec()
/dports/devel/pear-phing/phing-2.6.1/system/util/
H A DProperties.php96 $linesCount = count($lines);
97 for($i = 0; $i < $linesCount; $i++) {

12345