MCPcopy Create free account
hub / github.com/Predelnik/DSpellCheck / parse_string

Function parse_string

src/common/Utility.cpp:181–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179}
180
181std::wstring parse_string(const wchar_t *source) {
182 auto size = do_parse_string(nullptr, source);
183 std::vector<wchar_t> buf(size);
184 do_parse_string(buf.data(), source);
185 assert(size == buf.size());
186 return buf.data();
187}
188
189// These functions are mostly taken from http://research.microsoft.com
190

Callers 1

update_cached_valuesMethod · 0.50

Calls 3

do_parse_stringFunction · 0.85
dataMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected