Home
last modified time | relevance | path

Searched refs:tempLine (Results 1 – 25 of 50) sorted by relevance

12

/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/FortranProject/
H A Dformatindent.cpp292 wxString tempLine = tmpLine; in FormatText() local
304 if(tempLine.Len() > 0) in FormatText()
306 if(wxT('&') == tempLine[0]) in FormatText()
307 tempLine = tempLine.Mid(1); in FormatText()
309 tmpMultiLines += tempLine; in FormatText()
319 wxString tempLine = tmpLine; in FormatText() local
321 if(tempLine.Len() > 0) in FormatText()
323 if(wxT('&') == tempLine[0]) in FormatText()
324 tempLine = tempLine.Mid(1); in FormatText()
327 tmpMultiLines += tempLine; in FormatText()
[all …]
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/kvirc/ui/
H A DKviIrcView_events.cpp480 if(tempLine) in mouseReleaseEvent()
482 m_pSelectionEndLine = tempLine; in mouseReleaseEvent()
525 tempLine = init; in mouseReleaseEvent()
527 while(tempLine) in mouseReleaseEvent()
531 if(tempLine->uIndex == init->uIndex) in mouseReleaseEvent()
595 pC = &tempLine->pChunks[i]; in mouseReleaseEvent()
631 pC = &tempLine->pChunks[i]; in mouseReleaseEvent()
661 pC = &tempLine->pChunks[i]; in mouseReleaseEvent()
674 tempLine = tempLine->pNext; in mouseReleaseEvent()
731 if(tempLine) in mouseMoveEvent()
[all …]
/dports/devel/pear-PHP_CodeSniffer/PHP_CodeSniffer-3.6.1/src/Generators/
H A DText.php89 $tempLine = '';
93 $currentLength = strlen($tempLine.$word);
95 $tempLine .= $word.' ';
101 $lines[] = $tempLine.$word;
102 $tempLine = '';
104 $lines[] = rtrim($tempLine);
105 $tempLine = $word.' ';
109 if ($tempLine !== '') {
110 $lines[] = rtrim($tempLine);
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/examples/script_interfaces/TankExamples/DakotaCalibration/
H A DEvalTank.py66 tempLine = line.split('#')[0]
67 …if not ( 'DVV_' in tempLine or 'ASV_' in tempLine or tempLine.startswith('#')): # Dakota adds some…
68 (valueString, name) = tempLine.split()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/examples/script_interfaces/TankExamples/DakotaLHS/
H A DEvalTank.py66 tempLine = line.split('#')[0]
67 …if not ( 'DVV_' in tempLine or 'ASV_' in tempLine or tempLine.startswith('#')): # Dakota adds some…
68 (valueString, name) = tempLine.split()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/examples/script_interfaces/TankExamples/tank_model/
H A DEvalTank.py66 tempLine = line.split('#')[0]
67 …if not ( 'DVV_' in tempLine or 'ASV_' in tempLine or tempLine.startswith('#')): # Dakota adds some…
68 (valueString, name) = tempLine.split()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/examples/script_interfaces/TankExamples/DakotaList/
H A DEvalTank.py66 tempLine = line.split('#')[0]
67 …if not ( 'DVV_' in tempLine or 'ASV_' in tempLine or tempLine.startswith('#')): # Dakota adds some…
68 (valueString, name) = tempLine.split()
/dports/multimedia/subtitlecomposer/subtitlecomposer-0.7.1/src/scripting/examples/
H A Dprepare_RTL_release.py17 tempLine = s.line(s.linesCount()-1) variable
28 tempLine.setRichPrimaryText(eachSubLine)
29 if tempLine.isRightToLeft():
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/mads/
H A Ddialogs.cpp234 Common::String tempLine; in wordWrap() local
240 tempLine = ""; in wordWrap()
249 tempLine += *srcP; in wordWrap()
255 tempLine.deleteLastChar(); in wordWrap()
262 tempLine.deleteLastChar(); in wordWrap()
268 if (tempLine.hasSuffix(" ")) in wordWrap()
269 tempLine.deleteLastChar(); in wordWrap()
274 tempLine2 += tempLine; in wordWrap()
280 appendLine(tempLine); in wordWrap()
/dports/games/scummvm/scummvm-2.5.1/engines/mads/
H A Ddialogs.cpp242 Common::String tempLine; in wordWrap() local
248 tempLine = ""; in wordWrap()
257 tempLine += *srcP; in wordWrap()
263 tempLine.deleteLastChar(); in wordWrap()
270 tempLine.deleteLastChar(); in wordWrap()
276 if (tempLine.hasSuffix(" ")) in wordWrap()
277 tempLine.deleteLastChar(); in wordWrap()
282 tempLine2 += tempLine; in wordWrap()
288 appendLine(tempLine); in wordWrap()
/dports/devel/tpasm/tpasm1.11/
H A Dtpasm.c308 *tempLine; in ProcessTextBlock() local
328 tempLine=block->firstLine; in ProcessTextBlock()
330 while(!fail&&!stopParsing&&tempLine) in ProcessTextBlock()
332 currentVirtualFile=tempLine->whereFrom.file; in ProcessTextBlock()
333 currentVirtualFileLine=tempLine->whereFrom.fileLineNumber; in ProcessTextBlock()
336 …if(ProcessTextSubsitutions(inBuffer,&tempLine->line[0],substitutionList,substitutionText,&overflow… in ProcessTextBlock()
350 strcpy(inBuffer,&tempLine->line[0]); in ProcessTextBlock()
355 tempLine=tempLine->next; // do next line in ProcessTextBlock()
H A Dmacro.c27 *tempLine; in DestroyTextBlockLines() local
31 tempLine=block->firstLine->next; in DestroyTextBlockLines()
33 block->firstLine=tempLine; in DestroyTextBlockLines()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/effects/
H A Dqgsimageoperation.cpp889 unsigned char *tempLine = new unsigned char[ lineLength * 4 ]; in operator ()() local
892 tempLine[i++] = *( p++ ); in operator ()()
893 tempLine[i++] = *( p++ ); in operator ()()
894 tempLine[i++] = *( p++ ); in operator ()()
895 tempLine[i] = *( p ); in operator ()()
903 *( p++ ) = tempLine[i++]; in operator ()()
904 *( p++ ) = tempLine[i++]; in operator ()()
905 *( p++ ) = tempLine[i++]; in operator ()()
906 *( p ) = tempLine[i]; in operator ()()
910 delete[] tempLine; in operator ()()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/support_data/
H A DossimQuickbirdMetaData.cpp106 ossimString tempLine = line; in parse() local
107 tempLine = tempLine.trim(); in parse()
108 if (tempLine.startsWith("BEGIN_GROUP")) in parse()
111 splitKeyValue(tempLine, key, value); in parse()
128 else if (tempLine.startsWith("END_GROUP")) in parse()
136 else if (tempLine.endsWith(";")) in parse()
138 if (!tempLine.startsWith("END")) in parse()
/dports/games/libretro-scummvm/scummvm-7b1e929/image/
H A Dtga.cpp444 byte *tempLine = new byte[_surface.pitch]; in readDataRLE() local
449 Common::copy(line1, line1 + _surface.pitch, tempLine); in readDataRLE()
451 Common::copy(tempLine, tempLine + _surface.pitch, line2); in readDataRLE()
454 delete[] tempLine; in readDataRLE()
/dports/games/scummvm/scummvm-2.5.1/image/
H A Dtga.cpp444 byte *tempLine = new byte[_surface.pitch]; in readDataRLE() local
449 Common::copy(line1, line1 + _surface.pitch, tempLine); in readDataRLE()
451 Common::copy(tempLine, tempLine + _surface.pitch, line2); in readDataRLE()
454 delete[] tempLine; in readDataRLE()
/dports/games/residualvm/residualvm-0.3.1/image/
H A Dtga.cpp444 byte *tempLine = new byte[_surface.pitch]; in readDataRLE() local
449 Common::copy(line1, line1 + _surface.pitch, tempLine); in readDataRLE()
451 Common::copy(tempLine, tempLine + _surface.pitch, line2); in readDataRLE()
454 delete[] tempLine; in readDataRLE()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_graphics/geometry/
H A Djuce_EdgeTable.cpp791 auto* tempLine = static_cast<int*> (alloca ((size_t) (numPixels * 2 + 4) * sizeof (int))); in clipLineToMask() local
801 tempLine[++destIndex] = (x << 8); in clipLineToMask()
802 tempLine[++destIndex] = alpha; in clipLineToMask()
811 tempLine[++destIndex] = (x << 8); in clipLineToMask()
812 tempLine[++destIndex] = 0; in clipLineToMask()
815 tempLine[0] = destIndex >> 1; in clipLineToMask()
817 intersectWithEdgeTableLine (y, tempLine); in clipLineToMask()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_graphics/geometry/
H A Djuce_EdgeTable.cpp791 auto* tempLine = static_cast<int*> (alloca ((size_t) (numPixels * 2 + 4) * sizeof (int))); in clipLineToMask() local
801 tempLine[++destIndex] = (x << 8); in clipLineToMask()
802 tempLine[++destIndex] = alpha; in clipLineToMask()
811 tempLine[++destIndex] = (x << 8); in clipLineToMask()
812 tempLine[++destIndex] = 0; in clipLineToMask()
815 tempLine[0] = destIndex >> 1; in clipLineToMask()
817 intersectWithEdgeTableLine (y, tempLine); in clipLineToMask()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/xeen/
H A Dsprites.cpp273 int tempLine[SCREEN_WIDTH * 3]; in draw() local
274 Common::fill(&tempLine[SCREEN_WIDTH], &tempLine[SCREEN_WIDTH * 3], -1); in draw()
275 …int *lineP = flipped ? &tempLine[SCREEN_WIDTH + width - 1 - xOffset] : &tempLine[SCREEN_WIDTH + xO… in draw()
360 lineP = &tempLine[SCREEN_WIDTH]; in draw()
/dports/graphics/qgis/qgis-3.22.3/src/core/effects/
H A Dqgsimageoperation.cpp966 unsigned char *tempLine = new unsigned char[ lineLength * 4 ]; in operator ()() local
969 tempLine[i++] = *( p++ ); in operator ()()
970 tempLine[i++] = *( p++ ); in operator ()()
971 tempLine[i++] = *( p++ ); in operator ()()
972 tempLine[i] = *( p ); in operator ()()
980 *( p++ ) = tempLine[i++]; in operator ()()
981 *( p++ ) = tempLine[i++]; in operator ()()
982 *( p++ ) = tempLine[i++]; in operator ()()
983 *( p ) = tempLine[i]; in operator ()()
987 delete[] tempLine; in operator ()()
/dports/games/scummvm/scummvm-2.5.1/engines/xeen/
H A Dsprites.cpp283 int tempLine[SCREEN_WIDTH * 3]; in draw() local
284 Common::fill(&tempLine[SCREEN_WIDTH], &tempLine[SCREEN_WIDTH * 3], -1); in draw()
285 …int *lineP = flipped ? &tempLine[SCREEN_WIDTH + width - 1 - xOffset] : &tempLine[SCREEN_WIDTH + xO… in draw()
374 lineP = &tempLine[SCREEN_WIDTH]; in draw()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxfa/fm2js/
H A Dxfa_fmparse.cpp602 uint32_t tempLine = m_pToken->m_uLinenum; in ParsePostExpression() local
630 new CXFA_FMIdentifierExpressionn(tempLine, tempStr); in ParsePostExpression()
660 e = new CXFA_FMDotAccessorExpression(tempLine, e, TOKdot, tempStr, in ParsePostExpression()
664 tempLine, ACCESSOR_NO_INDEX, nullptr, FALSE); in ParsePostExpression()
679 uint32_t tempLine = m_pToken->m_uLinenum; in ParsePostExpression() local
687 e = new CXFA_FMDotDotAccessorExpression(tempLine, e, TOKdotdot, in ParsePostExpression()
691 tempLine, ACCESSOR_NO_INDEX, nullptr, FALSE); in ParsePostExpression()
707 uint32_t tempLine = m_pToken->m_uLinenum; in ParsePostExpression() local
715 e = new CXFA_FMDotAccessorExpression(tempLine, e, TOKdotscream, in ParsePostExpression()
719 tempLine, ACCESSOR_NO_INDEX, nullptr, FALSE); in ParsePostExpression()
/dports/cad/opencascade/opencascade-7.6.0/src/IGESDraw/
H A DIGESDraw_ToolSegmentedViewsVisible.cxx80 Standard_Integer tempLine; in ReadOwnParams() local
131 if (PR.ReadInteger( PR.Current(), "array lineWeights", tempLine )) in ReadOwnParams()
132 lineWeights->SetValue(i, tempLine); in ReadOwnParams()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/drascula/
H A Dgraphics.cpp449 int tempLine[320]; in screenSaver() local
485 tempLine[i] = (int)(sin(coeff2) * 16); in screenSaver()
487 tempLine[i] = checkWrapY(tempLine[i]); in screenSaver()
518 y1_ = i + tempLine[j]; in screenSaver()

12