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

Function upper_string

src/core/utils/StringUtils.cpp:45–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45std::string upper_string(const std::string &val)
46{
47 std::string res = val;
48 std::transform(res.begin(), res.end(), res.begin(), ::toupper);
49 return res;
50}
51
52std::string float_to_string_with_full_precision(float val)
53{

Callers 15

configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85

Calls 3

transformFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected