Home
last modified time | relevance | path

Searched refs:histLine (Results 1 – 9 of 9) sorted by relevance

/dports/lang/bsh/beanshell-2.1.0/src/bsh/util/
H A DAWTConsole.java96 private int histLine = 0; field in AWTConsole
150 histLine = 0; in type()
202 histLine = 0; in enter()
237 if ( histLine == 0 ) // save current line in historyUp()
239 if ( histLine < history.size() ) { in historyUp()
240 histLine++; in historyUp()
245 if ( histLine == 0 ) in historyDown()
248 histLine--; in historyDown()
254 if ( histLine == 0 ) in showHistoryLine()
257 showline = (String)history.elementAt( history.size() - histLine ); in showHistoryLine()
H A DJConsole.java74 private int histLine = 0; field in JConsole
225 histLine = 0; in type()
401 histLine = 0; in enter()
420 if ( histLine == 0 ) // save current line in historyUp()
422 if ( histLine < history.size() ) { in historyUp()
423 histLine++; in historyUp()
429 if ( histLine == 0 ) in historyDown()
432 histLine--; in historyDown()
438 if ( histLine == 0 ) in showHistoryLine()
441 showline = (String)history.elementAt( history.size() - histLine ); in showHistoryLine()
/dports/games/cake/cake_src/
H A Dmain.cpp66 int histLine; // commands history scrolling value variable
238 if (gConsole->ToggleState() == OPENING) histLine = 0; in Keyboard()
254 histLine = 0; in Keyboard()
457 ++histLine; in KeyboardSpec()
458 if (histLine > gCommands->GetNbrCommHistLines()) in KeyboardSpec()
460 histLine = gCommands->GetNbrCommHistLines(); in KeyboardSpec()
463 gConsole->SetCurrentCommand(gCommands->GetHistoryLine(histLine)); in KeyboardSpec()
466 --histLine; in KeyboardSpec()
467 if (histLine < 0) in KeyboardSpec()
469 histLine = 0; in KeyboardSpec()
[all …]
/dports/x11/konsole/konsole-21.12.3/src/
H A DScreen.cpp509 ImageLine histLine; in resizeImage() local
510 histLine.reserve(1024); in resizeImage()
515 histLine.resize(histLineLen); in resizeImage()
516 _history->getCells(histPos, 0, histLineLen, histLine.data()); in resizeImage()
517 _screenLines.insert(0, histLine); in resizeImage()
/dports/mail/rspamd/rspamd-3.1/contrib/replxx/src/
H A Dreplxx_impl.cxx1523 UnicodeString const& histLine( _history.yank_line() ); in yank_last_arg() local
1524 int endPos( histLine.length() ); in yank_last_arg()
1525 while ( ( endPos > 0 ) && isspace( histLine[endPos - 1] ) ) { in yank_last_arg()
1529 while ( ( startPos > 0 ) && ! isspace( histLine[startPos - 1] ) ) { in yank_last_arg()
1535 _data.insert( _pos, histLine, startPos, _lastYankSize ); in yank_last_arg()
/dports/devel/replxx/replxx-release-0.0.3/src/
H A Dreplxx_impl.cxx1496 UnicodeString const& histLine( _history.yank_line() ); in yank_last_arg() local
1497 int endPos( histLine.length() ); in yank_last_arg()
1498 while ( ( endPos > 0 ) && isspace( histLine[endPos - 1] ) ) { in yank_last_arg()
1502 while ( ( startPos > 0 ) && ! isspace( histLine[startPos - 1] ) ) { in yank_last_arg()
1508 _data.insert( _pos, histLine, startPos, _lastYankSize ); in yank_last_arg()
/dports/math/curv/curv-0.5/extern/replxx/src/
H A Dreplxx_impl.cxx1489 UnicodeString const& histLine( _history.yank_line() ); in yank_last_arg() local
1490 int endPos( histLine.length() ); in yank_last_arg()
1491 while ( ( endPos > 0 ) && isspace( histLine[endPos - 1] ) ) { in yank_last_arg()
1495 while ( ( startPos > 0 ) && ! isspace( histLine[startPos - 1] ) ) { in yank_last_arg()
1501 _data.insert( _pos, histLine, startPos, _lastYankSize ); in yank_last_arg()
/dports/mail/rspamd-devel/rspamd-93430bb/contrib/replxx/src/
H A Dreplxx_impl.cxx1523 UnicodeString const& histLine( _history.yank_line() ); in yank_last_arg() local
1524 int endPos( histLine.length() ); in yank_last_arg()
1525 while ( ( endPos > 0 ) && isspace( histLine[endPos - 1] ) ) { in yank_last_arg()
1529 while ( ( startPos > 0 ) && ! isspace( histLine[startPos - 1] ) ) { in yank_last_arg()
1535 _data.insert( _pos, histLine, startPos, _lastYankSize ); in yank_last_arg()
/dports/www/apt-cacher-ng/apt-cacher-ng-3.2/source/
H A Dcacheman.cc1242 for(const auto& histLine: csHist) in PatchOne() local
1245 if(!pf.p && !startsWith(histLine, probeCS)) in PatchOne()
1249 tSplitWalk split(&histLine, SPACECHARS); in PatchOne()