Home
last modified time | relevance | path

Searched refs:_startIndex (Results 1 – 25 of 155) sorted by relevance

1234567

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/IO/
H A DStringParser.cs25 private int _startIndex; field
43 _startIndex = -1; in StringParser()
60 _startIndex = _endIndex; in MoveNext()
65 _startIndex = _endIndex + 1; in MoveNext()
93 return _buffer.Substring(_startIndex, _endIndex - _startIndex); in MoveAndExtractNext()
107 if (_buffer[_startIndex] != '(') in MoveAndExtractNextInOuterParens()
121 string result = _buffer.Substring(_startIndex + 1, lastParen - _startIndex - 1); in MoveAndExtractNextInOuterParens()
136 return _buffer.Substring(_startIndex, _endIndex - _startIndex); in ExtractCurrent()
233 if (_startIndex == _endIndex) in ParseNextUInt32()
292 if (_endIndex - _startIndex != 1) in ParseNextChar()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/asylum/views/
H A Dmenu.cpp69 _startIndex = 0; in Menu()
100 _startIndex = 480; in show()
658 _startIndex = 0; in click()
664 _startIndex = 0; in click()
672 _startIndex = 0; in click()
688 _startIndex = 480; in click()
1538 _startIndex -= 2; in updateShowCredits()
1582 if (_startIndex) { in clickLoadGame()
1585 _startIndex = 0; in clickLoadGame()
1685 if (_startIndex) { in clickSaveGame()
[all …]
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/antlr4-cpp-runtime/runtime/src/
H A DLexerNoViableAltException.cpp17 …: RecognitionException(lexer, input, nullptr, nullptr), _startIndex(startIndex), _deadEndConfigs(d… in LexerNoViableAltException()
21 return _startIndex; in getStartIndex()
30 if (_startIndex < getInputStream()->size()) { in toString()
31 …l = static_cast<CharStream *>(getInputStream())->getText(misc::Interval(_startIndex, _startIndex)); in toString()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Cpp/runtime/src/
H A DLexerNoViableAltException.cpp17 …: RecognitionException(lexer, input, nullptr, nullptr), _startIndex(startIndex), _deadEndConfigs(d… in LexerNoViableAltException()
21 return _startIndex; in getStartIndex()
30 if (_startIndex < getInputStream()->size()) { in toString()
31 …l = static_cast<CharStream *>(getInputStream())->getText(misc::Interval(_startIndex, _startIndex)); in toString()
/dports/devel/libantlr4/libantlr4-4.9.3/runtime/src/
H A DLexerNoViableAltException.cpp17 …: RecognitionException(lexer, input, nullptr, nullptr), _startIndex(startIndex), _deadEndConfigs(d… in LexerNoViableAltException()
21 return _startIndex; in getStartIndex()
30 if (_startIndex < getInputStream()->size()) { in toString()
31 …l = static_cast<CharStream *>(getInputStream())->getText(misc::Interval(_startIndex, _startIndex)); in toString()
/dports/www/node10/node-v10.24.1/deps/v8/third_party/antlr4/runtime/Cpp/runtime/src/
H A DLexerNoViableAltException.cpp19 _startIndex(startIndex), in LexerNoViableAltException()
22 size_t LexerNoViableAltException::getStartIndex() { return _startIndex; } in getStartIndex()
30 if (_startIndex < getInputStream()->size()) { in toString()
32 ->getText(misc::Interval(_startIndex, _startIndex)); in toString()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Console/src/System/IO/
H A DStdInReader.cs28 private int _startIndex; // First unprocessed index in the buffer; field in System.IO.StdInReader
35 _startIndex = 0; in StdInReader()
43 return _startIndex >= _endIndex; // Everything has been processed; in IsUnprocessedBufferEmpty()
56 _startIndex = _endIndex = 0; in AppendExtraBuffer()
299 …if (ConsolePal.TryGetSpecialConsoleKey(_unprocessedBufferToBeRead, _startIndex, _endIndex, out key… in MapBufferToConsoleKey()
306 …ch = ((keyLength == 1) ? _unprocessedBufferToBeRead[_startIndex] : '\0'); // ignore keyInfo.KeyChar in MapBufferToConsoleKey()
307 _startIndex += keyLength; in MapBufferToConsoleKey()
313 … if (_unprocessedBufferToBeRead[_startIndex] == (char)0x1B && // Alt is send as an escape character in MapBufferToConsoleKey()
314 _endIndex - _startIndex >= 2) // We have at least two characters to read in MapBufferToConsoleKey()
316 _startIndex++; in MapBufferToConsoleKey()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/Globalization/
H A DTextElementEnumerator.cs26 private int _startIndex; field in System.Globalization.TextElementEnumerator
42 _startIndex = startIndex; in TextElementEnumerator()
78 if (_index == _startIndex) in GetTextElement()
98 if (_index == _startIndex)
109 _index = _startIndex; in Reset()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/Globalization/
H A DTextElementEnumerator.cs26 private int _startIndex; field in System.Globalization.TextElementEnumerator
42 _startIndex = startIndex; in TextElementEnumerator()
78 if (_index == _startIndex) in GetTextElement()
98 if (_index == _startIndex)
109 _index = _startIndex; in Reset()
/dports/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json/Utilities/
H A DStringReference.cs6 private readonly int _startIndex; field
16 get { return _startIndex; }
27 _startIndex = startIndex; in StringReference()
33 return new string(_chars, _startIndex, _length); in ToString()
/dports/irc/smuxi/smuxi-1.1/lib/Newtonsoft.Json/Src/Newtonsoft.Json/Utilities/
H A DStringReference.cs31 private readonly int _startIndex; field
41 get { return _startIndex; }
52 _startIndex = startIndex; in StringReference()
58 return new string(_chars, _startIndex, _length); in ToString()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Algorithms/src/System/Security/Cryptography/
H A DRfc2898DeriveBytes.cs25 private int _startIndex; field in System.Security.Cryptography.Rfc2898DeriveBytes
165 int size = _endIndex - _startIndex; in GetBytes()
170 Buffer.BlockCopy(_buffer, _startIndex, password, 0, size); in GetBytes()
171 _startIndex = _endIndex = 0; in GetBytes()
176 Buffer.BlockCopy(_buffer, _startIndex, password, 0, cb); in GetBytes()
177 _startIndex += cb; in GetBytes()
182 …Debug.Assert(_startIndex == 0 && _endIndex == 0, "Invalid start or end index in the internal buffe… in GetBytes()
197 … Buffer.BlockCopy(T_block, remainder, _buffer, _startIndex, _blockSize - remainder); in GetBytes()
249 _startIndex = _endIndex = 0; in Initialize()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Tasks.Parallel/tests/
H A DParallelStateTest.cs170 …loopResult = Parallel.For((int)_startIndex, (int)_startIndex + _parameters.Count, WorkWithNoLocalS… in RealRun()
188 _startIndex = int.MaxValue; in RealRun()
199 … loopResult = Parallel.For(_startIndex, _startIndex + _parameters.Count, WorkWithNoLocalState); in RealRun()
229 if (_results[i - _startIndex] == 0) in Work()
230 _results[i - _startIndex] = ZetaSequence((int)(i - _startIndex) + 1000); in Work()
238 …NoLocalState(int) on index {0}, StartIndex: {1}, real index {2}", i, _startIndex, i - _startIndex); in WorkWithNoLocalState()
247 …thLocalState(int) on index {0}, StartIndex: {1}, real index {2}", i, _startIndex, i - _startIndex); in WorkWithLocalState()
281 …hLocalState(long) on index {0}, StartIndex: {1}, real index {2}", i, _startIndex, i - _startIndex); in WorkWithLocalState()
283 threadLocalValue.Add(i + _startIndex); in WorkWithLocalState()
443 …lling StopAction on index: {0}, StartIndex: {1}, real index {2}", i, _startIndex, i - _startIndex); in StopActionHelper()
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Swift/Sources/Antlr4/atn/
H A DProfilingATNSimulator.swift66 var SLL_k: Int64 = Int64(_sllStopIndex - _startIndex + 1) in adaptivePredict()
72 LookaheadEventInfo(decision, nil, input, _startIndex, _sllStopIndex, false) in adaptivePredict()
76 var LL_k: Int64 = Int64(_llStopIndex - _startIndex + 1) in adaptivePredict()
82 LookaheadEventInfo(decision, nil, input, _startIndex, _llStopIndex, true) in adaptivePredict()
105 … ErrorInfo(currentDecision, previousD.configs, _input, _startIndex, _sllStopIndex, false) in getExistingTargetState()
137 ErrorInfo(currentDecision, closure, _input, _startIndex, _llStopIndex, true) in computeReachSet()
146 ErrorInfo(currentDecision, closure, _input, _startIndex, _sllStopIndex, false) in computeReachSet()
160 … PredicateEvalInfo(currentDecision, _input, _startIndex, stopIndex, pred, result, alt, fullCtx) in evalSemanticContext()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/antlr4-cpp-runtime/runtime/src/atn/
H A DProfilingATNSimulator.cpp44 long long SLL_k = _sllStopIndex - _startIndex + 1; in adaptivePredict()
49 … = std::make_shared<LookaheadEventInfo>(decision, nullptr, alt, input, _startIndex, _sllStopIndex,… in adaptivePredict()
53 long long LL_k = _llStopIndex - _startIndex + 1; in adaptivePredict()
58 … = std::make_shared<LookaheadEventInfo>(decision, nullptr, alt, input, _startIndex, _llStopIndex, … in adaptivePredict()
75 … ErrorInfo(_currentDecision, previousD->configs.get(), _input, _startIndex, _sllStopIndex, false) in getExistingTargetState()
103 …ecision].errors.push_back(ErrorInfo(_currentDecision, closure, _input, _startIndex, _llStopIndex, … in computeReachSet()
109 …ecision].errors.push_back(ErrorInfo(_currentDecision, closure, _input, _startIndex, _sllStopIndex,… in computeReachSet()
122 … PredicateEvalInfo(_currentDecision, _input, _startIndex, stopIndex, pred, result, alt, fullCtx)); in evalSemanticContext()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Java/src/org/antlr/v4/runtime/atn/
H A DProfilingATNSimulator.java67 int SLL_k = _sllStopIndex - _startIndex + 1; in adaptivePredict()
73 new LookaheadEventInfo(decision, null, alt, input, _startIndex, _sllStopIndex, false); in adaptivePredict()
77 int LL_k = _llStopIndex - _startIndex + 1; in adaptivePredict()
83 new LookaheadEventInfo(decision, null, alt, input, _startIndex, _llStopIndex, true); in adaptivePredict()
105 new ErrorInfo(currentDecision, previousD.configs, _input, _startIndex, _sllStopIndex, false) in getExistingTargetState()
137 new ErrorInfo(currentDecision, closure, _input, _startIndex, _llStopIndex, true) in computeReachSet()
147 new ErrorInfo(currentDecision, closure, _input, _startIndex, _sllStopIndex, false) in computeReachSet()
161 … new PredicateEvalInfo(currentDecision, _input, _startIndex, stopIndex, pred, result, alt, fullCtx) in evalSemanticContext()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/runtime/Cpp/runtime/src/atn/
H A DProfilingATNSimulator.cpp44 long long SLL_k = _sllStopIndex - _startIndex + 1; in adaptivePredict()
49 … = std::make_shared<LookaheadEventInfo>(decision, nullptr, alt, input, _startIndex, _sllStopIndex,… in adaptivePredict()
53 long long LL_k = _llStopIndex - _startIndex + 1; in adaptivePredict()
58 … = std::make_shared<LookaheadEventInfo>(decision, nullptr, alt, input, _startIndex, _llStopIndex, … in adaptivePredict()
75 … ErrorInfo(_currentDecision, previousD->configs.get(), _input, _startIndex, _sllStopIndex, false) in getExistingTargetState()
103 …ecision].errors.push_back(ErrorInfo(_currentDecision, closure, _input, _startIndex, _llStopIndex, … in computeReachSet()
109 …ecision].errors.push_back(ErrorInfo(_currentDecision, closure, _input, _startIndex, _sllStopIndex,… in computeReachSet()
122 … PredicateEvalInfo(_currentDecision, _input, _startIndex, stopIndex, pred, result, alt, fullCtx)); in evalSemanticContext()
/dports/devel/libantlr4/libantlr4-4.9.3/runtime/src/atn/
H A DProfilingATNSimulator.cpp44 long long SLL_k = _sllStopIndex - _startIndex + 1; in adaptivePredict()
49 … = std::make_shared<LookaheadEventInfo>(decision, nullptr, alt, input, _startIndex, _sllStopIndex,… in adaptivePredict()
53 long long LL_k = _llStopIndex - _startIndex + 1; in adaptivePredict()
58 … = std::make_shared<LookaheadEventInfo>(decision, nullptr, alt, input, _startIndex, _llStopIndex, … in adaptivePredict()
75 … ErrorInfo(_currentDecision, previousD->configs.get(), _input, _startIndex, _sllStopIndex, false) in getExistingTargetState()
103 …ecision].errors.push_back(ErrorInfo(_currentDecision, closure, _input, _startIndex, _llStopIndex, … in computeReachSet()
109 …ecision].errors.push_back(ErrorInfo(_currentDecision, closure, _input, _startIndex, _sllStopIndex,… in computeReachSet()
122 … PredicateEvalInfo(_currentDecision, _input, _startIndex, stopIndex, pred, result, alt, fullCtx)); in evalSemanticContext()
/dports/www/node10/node-v10.24.1/deps/v8/third_party/antlr4/runtime/Cpp/runtime/src/atn/
H A DProfilingATNSimulator.cpp51 long long SLL_k = _sllStopIndex - _startIndex + 1; in adaptivePredict()
61 _startIndex, _sllStopIndex, false); in adaptivePredict()
65 long long LL_k = _llStopIndex - _startIndex + 1; in adaptivePredict()
75 _startIndex, _llStopIndex, true); in adaptivePredict()
96 _startIndex, _sllStopIndex, false)); in getExistingTargetState()
130 _currentDecision, closure, _input, _startIndex, _llStopIndex, true)); in computeReachSet()
137 ErrorInfo(_currentDecision, closure, _input, _startIndex, in computeReachSet()
154 PredicateEvalInfo(_currentDecision, _input, _startIndex, stopIndex, in evalSemanticContext()
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Utilities/
H A DStringReference.cs33 private readonly int _startIndex; field
48 get { return _startIndex; }
59 _startIndex = startIndex; in StringReference()
65 return new string(_chars, _startIndex, _length); in ToString()
/dports/sysutils/squashfs-tools/CPP/7zip/Archive/7z/
H A D7zFolderOutStream.cpp25 _startIndex = startIndex; in Init()
44 UInt32 index = _startIndex + _currentIndex; in OpenFile()
67 const CFileItem &fi = _db->Files[_startIndex + _currentIndex]; in CloseFileAndSetResult()
76 …while (_currentIndex < _extractStatuses->Size() && _db->Files[_startIndex + _currentIndex].Size ==… in ProcessEmptyFiles()
129 *value = _db->Files[_startIndex + (int)subStream].Size; in GetSubStreamSize()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression/src/System/IO/Compression/DeflateManaged/
H A DDeflateInput.cs28 StartIndex = state._startIndex; in RestoreState()
34 internal readonly int _startIndex; field
39 _startIndex = startIndex; in InputState()
/dports/lang/solidity/solidity_0.8.11/libevmasm/
H A DPathGasMeter.h57 …GasMeter::GasConsumption estimateMax(size_t _startIndex, std::shared_ptr<KnownState> const& _state…
62 size_t _startIndex, in estimateMax() argument
66 return PathGasMeter(_items, _evmVersion).estimateMax(_startIndex, _state); in estimateMax()
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/ultima1/u1dialogs/
H A Dmagic.cpp39 _startIndex = 1 + (magicNum & 1); in Magic()
93 for (uint idx = _startIndex, yp = titleLines + 2; idx <= _endIndex; idx += 2, ++yp) { in drawBuy()
107 if (msg->_keyState.keycode >= (int)(Common::KEYCODE_a + _startIndex) && in CharacterInputMsg()
109 (int)(msg->_keyState.keycode - Common::KEYCODE_a - _startIndex) % 2 == 0) { in CharacterInputMsg()
/dports/devel/flex-sdk35/flex-sdk3-3.5.0.12683_1/frameworks/projects/framework/src/mx/effects/effectClasses/
H A DRemoveChildActionInstance.as57 private var _startIndex:Number;
102 else if (_startParent && !isNaN(_startIndex))
104 _startParent.addChildAt(targetDisplayObject, _startIndex);
120 _startIndex =

1234567