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

Function lower_string

src/core/utils/StringUtils.cpp:38–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36namespace arm_compute
37{
38std::string lower_string(const std::string &val)
39{
40 std::string res = val;
41 std::transform(res.begin(), res.end(), res.begin(), ::tolower);
42 return res;
43}
44
45std::string upper_string(const std::string &val)
46{

Callers 15

get_input_accessorFunction · 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