MCPcopy Create free account
hub / github.com/catboost/catboost / Run

Method Run

library/cpp/regex/pire/regexp.h:210–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208
209 protected:
210 inline void Run(const char* data, size_t len, bool addBegin, bool addEnd) noexcept {
211 if (addBegin) {
212 NPire::Step(GetScanner(), State, NPire::BeginMark);
213 }
214 NPire::Run(GetScanner(), State, data, data + len);
215 if (addEnd) {
216 NPire::Step(GetScanner(), State, NPire::EndMark);
217 }
218 }
219
220 inline const typename TFsm::TScanner& GetScanner() const noexcept {
221 return Fsm.GetScanner();

Callers

nothing calls this directly

Calls 2

StepFunction · 0.85
RunFunction · 0.50

Tested by

no test coverage detected