Home
last modified time | relevance | path

Searched refs:_currentIndex (Results 1 – 25 of 143) sorted by relevance

123456

/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Linq/JsonPath/
H A DJPath.cs39 private int _currentIndex; field in Newtonsoft.Json.Linq.JsonPath.JPath
73 _currentIndex++; in ParseMain()
202 _currentIndex++; in ParseIndexer()
311 _currentIndex++; in ParseArrayIndexer()
390 _currentIndex++; in EatWhitespace()
396 _currentIndex++; in ParseQuery()
404 _currentIndex++; in ParseQuery()
408 _currentIndex++; in ParseQuery()
437 _currentIndex++; in ParseExpression()
546 _currentIndex++; in ParseValue()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/ui/
H A Dkia_log.cpp34 _currentIndex = 0; in KIALog()
46 if (_currentIndex == _lastIndex) { in add()
50 if (_entries[_currentIndex].data) { in add()
69 _currentIndex = 0; in clear()
80 if (_currentIndex != _firstIndex) { in prev()
81 _currentIndex = (_currentIndex - 1) % kSize; in prev()
86 if (_currentIndex != _lastIndex) { in next()
87 _currentIndex = (_currentIndex + 1) % kSize; in next()
92 _lastIndex = _currentIndex; in clearFuture()
93 int currentIndex = _currentIndex; in clearFuture()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/ui/
H A Dkia_log.cpp34 _currentIndex = 0; in KIALog()
46 if (_currentIndex == _lastIndex) { in add()
50 if (_entries[_currentIndex].data) { in add()
69 _currentIndex = 0; in clear()
80 if (_currentIndex != _firstIndex) { in prev()
81 _currentIndex = (_currentIndex - 1) % kSize; in prev()
86 if (_currentIndex != _lastIndex) { in next()
87 _currentIndex = (_currentIndex + 1) % kSize; in next()
92 _lastIndex = _currentIndex; in clearFuture()
93 int currentIndex = _currentIndex; in clearFuture()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json/Linq/
H A DJPath.cs13 private int _currentIndex; field in Newtonsoft.Json.Linq.JPath
26 int currentPartStartIndex = _currentIndex; in ParseMain()
29 while (_currentIndex < _expression.Length) in ParseMain()
31 char currentChar = _expression[_currentIndex]; in ParseMain()
37 if (_currentIndex > currentPartStartIndex) in ParseMain()
65 _currentIndex++; in ParseMain()
68 if (_currentIndex > currentPartStartIndex) in ParseMain()
77 _currentIndex++; in ParseIndexer()
80 int indexerStart = _currentIndex; in ParseIndexer()
84 while (_currentIndex < _expression.Length) in ParseIndexer()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/Newtonsoft.Json/Src/Newtonsoft.Json/Linq/
H A DJPath.cs38 private int _currentIndex; field in Newtonsoft.Json.Linq.JPath
51 int currentPartStartIndex = _currentIndex; in ParseMain()
54 while (_currentIndex < _expression.Length) in ParseMain()
56 char currentChar = _expression[_currentIndex]; in ParseMain()
62 if (_currentIndex > currentPartStartIndex) in ParseMain()
90 _currentIndex++; in ParseMain()
93 if (_currentIndex > currentPartStartIndex) in ParseMain()
102 _currentIndex++; in ParseIndexer()
105 int indexerStart = _currentIndex; in ParseIndexer()
109 while (_currentIndex < _expression.Length) in ParseIndexer()
[all …]
/dports/x11-toolkits/viewklass/ViewKlass-0.7.2/
H A DVkCursorList.C49 _currentIndex(0) in VkCursorList()
69 _currentIndex = (_currentIndex + 1) % _numCursors; in next()
70 if (_cursorList[_currentIndex] == None) { in next()
71 createCursor(_currentIndex); in next()
73 return _cursorList[_currentIndex]; in next()
79 if (_cursorList[_currentIndex] == None) { in current()
80 createCursor(_currentIndex); in current()
82 return _cursorList[_currentIndex]; in current()
88 _currentIndex = 0; in reset()
/dports/audio/polyphone/polyphone-75a5e88/sources/core/input/grandorgue/
H A Dinputparsergrandorgue.cpp53 _currentIndex = -1; in processInternal()
129 _currentIndex = -1; in startSection()
141 _currentIndex = -1; in startSection()
149 _currentIndex = -1; in startSection()
160 if (_currentIndex != -1) in processData()
162 if (!_ranks.contains(_currentIndex)) in processData()
163 _ranks[_currentIndex] = new GrandOrgueRank(_rootDir, _godt, _currentIndex); in processData()
164 _ranks[_currentIndex]->readData(key, value); in processData()
168 if (_currentIndex != -1) in processData()
170 if (!_stops.contains(_currentIndex)) in processData()
[all …]
/dports/games/criticalmass/CriticalMass-1.5/game/
H A DScoreKeeper.cpp37 _currentIndex( LEADERBOARD_SIZE-1), in ScoreKeeper()
73 _currentIndex = LEADERBOARD_SIZE-1; in resetCurrentScore()
74 _leaderBoard[ _currentIndex].score = 0; in resetCurrentScore()
76 _leaderBoard[ _currentIndex].time = 0; in resetCurrentScore()
143 while( (_currentIndex>0) && in updateLeaderBoard()
146 _leaderBoard[ _currentIndex] = _leaderBoard[ _currentIndex-1]; in updateLeaderBoard()
147 _currentIndex--; in updateLeaderBoard()
150 _leaderBoard[ _currentIndex] = tmpData; in updateLeaderBoard()
158 pi.position.y =-20+3.5f*(_currentIndex+1); in updateLeaderBoard()
162 _currentIndex+1) ; in updateLeaderBoard()
[all …]
/dports/games/fheroes2/fheroes2-0.9.11/src/fheroes2/gui/
H A Dui_scrollbar.cpp31 , _currentIndex( 0 ) in Scrollbar()
50 _currentIndex = _minIndex; in setRange()
67 if ( _currentIndex < _maxIndex ) { in forward()
68 moveToIndex( _currentIndex + 1 ); in forward()
74 if ( _currentIndex > _minIndex ) { in backward()
75 moveToIndex( _currentIndex - 1 ); in backward()
85 _currentIndex = _minIndex; in moveToIndex()
87 _currentIndex = _maxIndex; in moveToIndex()
89 _currentIndex = indexId; in moveToIndex()
134 _currentIndex = static_cast<int>( std::lround( tempPos ) ) + _minIndex; in moveToPos()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/other-licenses/7zstub/src/7zip/Archive/7z/
H A D7zFolderOutStream.cpp32 _currentIndex = 0; in Init()
40 if((*_extractStatuses)[_currentIndex]) in OpenFile()
48 UInt32 index = _startIndex + _currentIndex; in OpenFile()
64 for(;_currentIndex < _extractStatuses->Size(); _currentIndex++) in WriteEmptyFiles()
66 UInt32 index = _startIndex + _currentIndex; in WriteEmptyFiles()
82 while(_currentIndex < _extractStatuses->Size()) in Write()
86 UInt32 index = _startIndex + _currentIndex; in Write()
113 _currentIndex++; in Write()
136 while(_currentIndex < _extractStatuses->Size()) in FlushCorrupted()
143 _currentIndex++; in FlushCorrupted()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/
H A Dmovement_track.cpp38 _currentIndex = -1; in reset()
66 _currentIndex = 0; in append()
75 _currentIndex = 0; in repeat()
96 if (_currentIndex < _lastIndex && _hasNext) { in next()
97 *waypointId = _entries[_currentIndex].waypointId; in next()
98 *delay = _entries[_currentIndex].delay; in next()
99 *angle = _entries[_currentIndex].angle; in next()
100 *run = _entries[_currentIndex++].run; in next()
113 f.writeInt(_currentIndex); in save()
127 _currentIndex = f.readInt(); in load()
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/
H A Dmovement_track.cpp38 _currentIndex = -1; in reset()
66 _currentIndex = 0; in append()
75 _currentIndex = 0; in repeat()
96 if (_currentIndex < _lastIndex && _hasNext) { in next()
97 *waypointId = _entries[_currentIndex].waypointId; in next()
98 *delayMillis = _entries[_currentIndex].delay; in next()
99 *angle = _entries[_currentIndex].angle; in next()
100 *run = _entries[_currentIndex++].run; in next()
113 f.writeInt(_currentIndex); in save()
127 _currentIndex = f.readInt(); in load()
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Foundation/
H A DHashtableIterator.cs16 private int _currentIndex; field in Db4objects.Db4o.Foundation.HashtableIterator
56 if (_currentIndex >= _table.Length) in MoveNext()
61 _currentEntry = _table[_currentIndex++]; in MoveNext()
69 _currentIndex = 0; in Reset()
75 return _currentIndex == -1; in IsBeyondLast()
80 _currentIndex = -1; in PositionBeyondLast()
/dports/www/limesurvey/limesurvey/framework/web/
H A DCDataProviderIterator.php38 private $_currentIndex=-1; variable in CDataProviderIterator
95 return $this->_items[$this->_currentIndex];
106 return $this->_currentPage*$pageSize+$this->_currentIndex;
116 $this->_currentIndex++;
117 if($this->_currentIndex >= $pageSize)
120 $this->_currentIndex=0;
131 $this->_currentIndex=0;
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/lastexpress/data/
H A Dsubtitle.cpp143 SubtitleManager::SubtitleManager(Font *font) : _font(font), _maxTime(0), _currentIndex(-1), _lastIn… in SubtitleManager()
157 _currentIndex = -1; in reset()
210 _currentIndex = -1; in setTime()
216 _currentIndex = (int16)i; in setTime()
224 if (_currentIndex != _lastIndex) in hasChanged()
232 _lastIndex = _currentIndex; in draw()
235 if (_currentIndex == -1) in draw()
239 assert(_currentIndex >= 0 && _currentIndex < (int16)_subtitles.size()); in draw()
240 return _subtitles[(uint16)_currentIndex]->draw(surface, _font); in draw()
/dports/games/scummvm/scummvm-2.5.1/engines/lastexpress/data/
H A Dsubtitle.cpp143 SubtitleManager::SubtitleManager(Font *font) : _font(font), _maxTime(0), _currentIndex(-1), _lastIn… in SubtitleManager()
157 _currentIndex = -1; in reset()
210 _currentIndex = -1; in setTime()
216 _currentIndex = (int16)i; in setTime()
224 if (_currentIndex != _lastIndex) in hasChanged()
232 _lastIndex = _currentIndex; in draw()
235 if (_currentIndex == -1) in draw()
239 assert(_currentIndex >= 0 && _currentIndex < (int16)_subtitles.size()); in draw()
240 return _subtitles[(uint16)_currentIndex]->draw(surface, _font); in draw()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Parallel/src/System/Linq/Parallel/Enumerables/
H A DRepeatEnumerable.cs85 …private Shared<int> _currentIndex; // The number of times we have already repeated it. [allocate i… field in System.Linq.Parallel.RepeatEnumerable.RepeatEnumerator
104 if (_currentIndex == null) in MoveNext()
105 _currentIndex = new Shared<int>(-1); in MoveNext()
107 if (_currentIndex.Value < (_count - 1)) in MoveNext()
109 ++_currentIndex.Value; in MoveNext()
111 currentKey = _currentIndex.Value + _indexOffset; in MoveNext()
120 _currentIndex = null; in Reset()
/dports/archivers/ppmd-7z/p7zip_9.04/CPP/7zip/Archive/7z/
H A D7zFolderOutStream.cpp32 _currentIndex = 0; in Init()
39 Int32 askMode = ((*_extractStatuses)[_currentIndex]) ? (_testMode ? in OpenFile()
44 UInt32 index = _startIndex + _currentIndex; in OpenFile()
61 _currentIndex++; in CloseFileAndSetResult()
67 const CFileItem &fi = _db->Files[_startIndex + _currentIndex]; in CloseFileAndSetResult()
76 …while (_currentIndex < _extractStatuses->Size() && _db->Files[_startIndex + _currentIndex].Size ==… in ProcessEmptyFiles()
111 if (_currentIndex == _extractStatuses->Size()) in Write()
126 while (_currentIndex < _extractStatuses->Size()) in FlushCorrupted()
/dports/graphics/libprojectm/projectm-3.1.12/src/libprojectM/
H A DPresetChooser.hpp52 std::size_t _currentIndex; member in PresetIterator
127 return _currentIndex; in operator *()
131 return _currentIndex; in lastIndex()
134 inline PresetIterator::PresetIterator(std::size_t start):_currentIndex(start) {} in PresetIterator()
137 assert(_currentIndex < _presetChooser->size()); in operator ++()
138 _currentIndex++; in operator ++()
142 assert(_currentIndex > 0); in operator --()
143 _currentIndex--; in operator --()
156 return _presetChooser->directoryIndex(_currentIndex); in allocate()
/dports/sysutils/squashfs-tools/CPP/7zip/Archive/7z/
H A D7zFolderOutStream.cpp32 _currentIndex = 0; in Init()
39 Int32 askMode = ((*_extractStatuses)[_currentIndex]) ? (_testMode ? in OpenFile()
44 UInt32 index = _startIndex + _currentIndex; in OpenFile()
61 _currentIndex++; in CloseFileAndSetResult()
67 const CFileItem &fi = _db->Files[_startIndex + _currentIndex]; in CloseFileAndSetResult()
76 …while (_currentIndex < _extractStatuses->Size() && _db->Files[_startIndex + _currentIndex].Size ==… in ProcessEmptyFiles()
111 if (_currentIndex == _extractStatuses->Size()) in Write()
135 while (_currentIndex < _extractStatuses->Size()) in FlushCorrupted()
/dports/audio/py-music21/music21-7.1.0/music21/corpus/
H A Dchorales.py1090 self._currentIndex = None
1169 self._currentIndex += 1
1542 return self._currentIndex
1552 self._currentIndex = 0
1566 self._currentIndex = 0
1583 self._currentIndex = 0
1597 self._currentIndex = 0
1640 if self._currentIndex is None or value >= self._currentIndex:
1654 if self._currentIndex is None or newIndex >= self._currentIndex:
1672 if self._currentIndex is None or value >= self._currentIndex:
[all …]
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/GUI.NET/Controls/
H A DctrlRecentGames.cs37 private int _currentIndex = 0; field in Mesen.GUI.Controls.ctrlRecentGames
88 _currentIndex = 0; in Initialize()
129 if(_currentIndex < _recentGames.Count) { in UpdateGameInfo()
130 lblGameName.Text = Path.GetFileNameWithoutExtension(_recentGames[_currentIndex].RomName); in UpdateGameInfo()
131 lblSaveDate.Text = _recentGames[_currentIndex].Timestamp.ToString(); in UpdateGameInfo()
134 …ZipArchive zip = new ZipArchive(new MemoryStream(File.ReadAllBytes(_recentGames[_currentIndex].Fil… in UpdateGameInfo()
219 if(_currentIndex == 0) { in GoToPreviousGame()
220 _currentIndex = _recentGames.Count - 1; in GoToPreviousGame()
222 _currentIndex--; in GoToPreviousGame()
229 _currentIndex = (_currentIndex + 1) % _recentGames.Count; in GoToNextGame()
[all …]
/dports/sysutils/qdirstat/qdirstat-1.8/src/
H A DFileInfoIterator.cpp108 _currentIndex = 0; in FileInfoSortedBySizeIterator()
128 if ( _currentIndex >= 0 && _currentIndex < _sortedChildren.size() ) in current()
129 return _sortedChildren.at( _currentIndex ); in current()
140 if ( _currentIndex < _sortedChildren.size() ) in next()
141 _currentIndex++; in next()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCurrentNodeListIterator.java68 private int _currentIndex; field in CurrentNodeListIterator
131 _currentIndex = 0; in reset()
140 for (int index = _currentIndex; index < last; ) { in next()
146 _currentIndex = index; in next()
161 _currentIndex = 0; in setStartNode()
175 _markedNode = _currentIndex; in setMark()
179 _currentIndex = _markedNode; in gotoMark()
188 for (int index = _currentIndex; index < last; ) { in computePositionOfLast()
/dports/audio/clementine-player/Clementine-1.4.0rc1/3rdparty/libprojectm/
H A DPresetChooser.hpp49 std::size_t _currentIndex; member in PresetIterator
124 return _currentIndex; in operator *()
127 inline PresetIterator::PresetIterator(std::size_t start):_currentIndex(start) {} in PresetIterator()
130 assert(_currentIndex < _presetChooser->size()); in operator ++()
131 _currentIndex++; in operator ++()
135 assert(_currentIndex > 0); in operator --()
136 _currentIndex--; in operator --()
149 return _presetChooser->directoryIndex(_currentIndex); in allocate()

123456