MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / float_after_dp_st

Method float_after_dp_st

src/runtime/CL/mlgo/MLGOParser.cpp:232–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230}
231
232Token TokenStream::float_after_dp_st(std::string value)
233{
234 char ch{};
235 while (_istream.get(ch))
236 {
237 advance(_lookahead_pos, ch);
238 if (!std::isdigit(ch))
239 {
240 if (!is_delim(ch) && !std::isspace(ch))
241 {
242 rewind(_lookahead_pos);
243 _istream.unget();
244 }
245 break;
246 }
247 value += ch;
248 }
249 return Token{TokenType::Float, value, _lookahead_pos};
250}
251
252Token TokenStream::text_st(std::string value)
253{

Callers

nothing calls this directly

Calls 3

advanceFunction · 0.85
rewindFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected