Home
last modified time | relevance | path

Searched refs:iLines (Results 1 – 25 of 54) sorted by relevance

123

/dports/cad/gspiceui/gspiceui-v1.1.00/src/utility/
H A DTextCtrl.cpp182 bool TextCtrl::bSetLinesMax( int iLines ) in bSetLinesMax() argument
184 if( iLines<TXT_LNSMIN || iLines>TXT_LNSMAX ) return( false ); in bSetLinesMax()
186 m_iLinesMax = iLines; in bSetLinesMax()
201 bool TextCtrl::bSetLinesDsp( int iLines ) in bSetLinesDsp() argument
203 if( iLines<TXT_DISPMIN || iLines>TXT_DISPMAX ) return( false ); in bSetLinesDsp()
205 m_iLinesDsp = iLines; in bSetLinesDsp()
H A DTextCtrl.hpp69 static bool bSetLinesMax( int iLines );
70 static bool bSetLinesDsp( int iLines );
/dports/cad/gspiceui/gspiceui-v1.1.00/src/main/
H A DNbkTxtCtls.hpp69 bool bSetLinesMax( int iLines ) { return( TextCtrl::bSetLinesMax( iLines ) ); } in bSetLinesMax() argument
70 bool bSetLinesDsp( int iLines ) { return( TextCtrl::bSetLinesDsp( iLines ) ); } in bSetLinesDsp() argument
/dports/science/cdf/cdf33_0-dist/src/tools/
H A Dcdfxp.c1387 MakeNUL (IWsel->iLines[lineN]);
1392 MakeNUL (IWsel->iLines[lineN]);
1410 CatToString (IWsel->iLines[lineN],
1431 MakeNUL (IWsel->iLines[lineN]);
1436 MakeNUL (IWsel->iLines[lineN]);
1516 CatToString (IWsel->iLines[lineN],
1537 MakeNUL (IWsel->iLines[lineN]);
1542 MakeNUL (IWsel->iLines[lineN]);
1633 CatToString (IWsel->iLines[lineN],
1661 MakeNUL (IWsel->iLines[lineN]);
[all …]
H A Dcdfedit1.c928 strcpyX (IW->iLines[lineN], "", 0);
967 CatNcharacters (IW->iLines[lineN],
972 CatNcharacters (IW->iLines[lineN],
992 CatNcharacters (IW->iLines[lineN],
1811 strcatX (IW->iLines[lineN], field, 0);
1813 CatNcharacters (IW->iLines[lineN],
2523 strcatX (IW->iLines[lineN], " ", 0);
2532 strcatX (IW->iLines[lineN],
2540 strcatX (IW->iLines[lineN],
3415 CatNcharacters (IW->iLines[entryX],
[all …]
H A Dcdfedit2.c540 strcpyX (IW->iLines[(int)varN], field, 0);
542 CatNcharacters (IW->iLines[(int)varN],
560 strcatX (IW->iLines[(int)varN], field, 0);
562 CatNcharacters (IW->iLines[(int)varN],
584 strcatX (IW->iLines[(int)varN], field, 0);
586 CatNcharacters (IW->iLines[(int)varN],
609 CatNcharacters (IW->iLines[(int)varN],
622 CatNcharacters (IW->iLines[(int)varN],
683 static char *iLines[] = { vLine }; local
1258 IW.iLines = itemsBrowse;
[all …]
/dports/deskutils/coolreader/coolreader-cr3.2.55/thirdparty_unman/antiword/
H A Dsaveas.c68 int iToGo, iX, iYtopPrev, iHeight, iLines; in bText2File() local
99 iLines = (iYtopPrev - pText->bbox.max.y + in bText2File()
101 DBG_DEC_C(iLines < 0, iYtopPrev); in bText2File()
102 DBG_DEC_C(iLines < 0, pText->bbox.max.y); in bText2File()
103 fail(iLines < 0); in bText2File()
104 bIndent = iLines > 0 || bFirst; in bText2File()
107 while (iLines > 0 && bSuccess) { in bText2File()
110 iLines--; in bText2File()
/dports/textproc/antiword/antiword-0.37/
H A Dsaveas.c68 int iToGo, iX, iYtopPrev, iHeight, iLines; in bText2File() local
99 iLines = (iYtopPrev - pText->bbox.max.y + in bText2File()
101 DBG_DEC_C(iLines < 0, iYtopPrev); in bText2File()
102 DBG_DEC_C(iLines < 0, pText->bbox.max.y); in bText2File()
103 fail(iLines < 0); in bText2File()
104 bIndent = iLines > 0 || bFirst; in bText2File()
107 while (iLines > 0 && bSuccess) { in bText2File()
110 iLines--; in bText2File()
/dports/math/vtk9/VTK-9.1.0/Filters/Core/
H A DvtkTubeBender.cxx71 auto iLines = input->GetLines(); in RequestData() local
73 if (iPoints == nullptr || iLines == nullptr || iPoints->GetNumberOfPoints() == 0 || in RequestData()
74 iLines->GetNumberOfCells() == 0) in RequestData()
87 for (iLines->InitTraversal(); iLines->GetNextCell(linePoints, linePointIds);) in RequestData()
/dports/math/scilab/scilab-6.1.1/scilab/modules/ast/src/cpp/types/
H A Dfile.cpp189 int iLines = 0; in getCountLines() local
193 iLines++; in getCountLines()
198 return iLines; in getCountLines()
/dports/graphics/sane-backends/sane-backends-1.0.32/backend/
H A Dniash_core.c733 int iLines; in XferBufferGetLine() local
734 iLines = p->iLinesPerXferBuf; in XferBufferGetLine()
736 if (p->iLinesLeft > 0 && p->iLinesLeft <= iLines) in XferBufferGetLine()
738 iLines = p->iLinesLeft; in XferBufferGetLine()
741 if (iLines < p->iLinesPerXferBuf) in XferBufferGetLine()
745 iLines, p->iLinesPerXferBuf); in XferBufferGetLine()
751 NiashReadBulk (iHandle, p->pabXferBuf, iLines * p->iBytesPerLine); in XferBufferGetLine()
761 (int) bData, iLines * p->iBytesPerLine, (int) bData2); in XferBufferGetLine()
978 _OptimizeXferSize (int iLines, int iLinesPerXfer) in _OptimizeXferSize() argument
981 iXfers = (iLines + iLinesPerXfer - 1) / iLinesPerXfer; in _OptimizeXferSize()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/libmng/
H A Dlibmng_jpeg.c598 mng_int32 iLines = 0; in mngjpeg_decompressdata() local
631 iLines = jpeg_read_scanlines (pData->pJPEGdinfo, (JSAMPARRAY)&pRow, 1); in mngjpeg_decompressdata()
636 if (iLines > 0) /* got something ? */ in mngjpeg_decompressdata()
649 (iLines > 0)); /* until end-of-image or not enough input-data */ in mngjpeg_decompressdata()
671 (iLines > 0) && (!pData->bJPEGscanending)); in mngjpeg_decompressdata()
942 mng_int32 iLines; in mngjpeg_decompressdata2() local
975 iLines = jpeg_read_scanlines (pData->pJPEGdinfo2, (JSAMPARRAY)&pRow, 1); in mngjpeg_decompressdata2()
980 if (iLines > 0) /* got something ? */ in mngjpeg_decompressdata2()
993 (iLines > 0)); /* until end-of-image or not enough input-data */ in mngjpeg_decompressdata2()
1008 while ((!jpeg_input_complete (pData->pJPEGdinfo2)) && (iLines > 0)); in mngjpeg_decompressdata2()
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/GUI.NET/Debugger/FastColoredTextBox/
H A DCommands.cs565 List<int> iLines; field in FastColoredTextBoxNS.RemoveLinesCommand
574 public RemoveLinesCommand(TextSource ts, List<int> iLines) in RemoveLinesCommand() argument
578 iLines.Sort(); in RemoveLinesCommand()
580 this.iLines = iLines; in RemoveLinesCommand()
595 for (int i = 0; i < iLines.Count; i++) in Undo()
597 var iLine = iLines[i]; in Undo()
633 for(int i = iLines.Count - 1; i >= 0; i--) in Execute()
635 var iLine = iLines[i]; in Execute()
650 return new RemoveLinesCommand(ts, new List<int>(iLines)); in Clone()
/dports/graphics/libmng/libmng-1.0.10/
H A Dlibmng_jpeg.c598 mng_int32 iLines = 0; in mngjpeg_decompressdata() local
631 iLines = jpeg_read_scanlines (pData->pJPEGdinfo, (JSAMPARRAY)&pRow, 1); in mngjpeg_decompressdata()
636 if (iLines > 0) /* got something ? */ in mngjpeg_decompressdata()
649 (iLines > 0)); /* until end-of-image or not enough input-data */ in mngjpeg_decompressdata()
671 (iLines > 0) && (!pData->bJPEGscanending)); in mngjpeg_decompressdata()
942 mng_int32 iLines; in mngjpeg_decompressdata2() local
975 iLines = jpeg_read_scanlines (pData->pJPEGdinfo2, (JSAMPARRAY)&pRow, 1); in mngjpeg_decompressdata2()
980 if (iLines > 0) /* got something ? */ in mngjpeg_decompressdata2()
993 (iLines > 0)); /* until end-of-image or not enough input-data */ in mngjpeg_decompressdata2()
1008 while ((!jpeg_input_complete (pData->pJPEGdinfo2)) && (iLines > 0)); in mngjpeg_decompressdata2()
/dports/databases/WWWdb/WWWdb-0.8.3/lib/WWWdb/Wiz/
H A DCreateAppRc_2.pl705 my $iLines = undef;
719 $iLines = $3
741 ["Rows" => $iLines? $iLines: undef]]]:
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/wxContribItems/wxchart/src/
H A Dlegend.cpp161 int iLines = iPages > 0 ? ROWS_PAGE : GetCount(); in Draw() local
164 h = (iLines * ROW_SIZE < hr->h) ? iLines * ROW_SIZE : hr->h; in Draw()
/dports/games/xonotic/Xonotic/source/darkplaces/
H A Dconproc.c39 BOOL SetScreenBufferLines (int iLines);
188 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
191 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/nexuiz/Nexuiz/sources/darkplaces/
H A Dconproc.c39 BOOL SetScreenBufferLines (int iLines);
188 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
191 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/darkplaces/darkplaces/
H A Dconproc.c39 BOOL SetScreenBufferLines (int iLines);
188 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
191 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/tenebrae/tenebrae_0/
H A Dconproc.c37 BOOL SetScreenBufferLines (int iLines);
188 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
191 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/quake2-source/quake2-r0.16.2/src/win32/
H A Dconproc.c51 BOOL SetScreenBufferLines (int iLines);
254 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
257 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/quake2lnx/quake2-r0.16.2/src/win32/
H A Dconproc.c51 BOOL SetScreenBufferLines (int iLines);
254 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
257 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/q2p/Q2P-0.2-2006-12-31/win32/
H A Dconproc.c51 BOOL SetScreenBufferLines (int iLines);
254 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
257 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/r1q2/r1q2-8012_5/win32/
H A Dconproc.c55 BOOL SetScreenBufferLines (int iLines);
260 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
262 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()
/dports/games/alienarena-data/alienarena-7.66/source/win32/
H A Dconproc.c56 BOOL SetScreenBufferLines (int iLines);
259 BOOL SetScreenBufferLines (int iLines) in SetScreenBufferLines() argument
262 return SetConsoleCXCY (hStdout, 80, iLines); in SetScreenBufferLines()

123