MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / ToUpper

Method ToUpper

Engine/source/core/util/str.cpp:1578–1588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1576}
1577
1578String String::ToUpper(const String &string)
1579{
1580 if ( string.isEmpty() )
1581 return String();
1582
1583 String::StringData* sub = StringData::Create(string, string.length());
1584
1585 dStrupr( sub->utf8() );
1586
1587 return sub;
1588}
1589
1590String String::GetTrailingNumber(const char* str, S32& number)
1591{

Callers

nothing calls this directly

Calls 6

CreateFunction · 0.85
dStruprFunction · 0.85
StringClass · 0.70
isEmptyMethod · 0.45
lengthMethod · 0.45
utf8Method · 0.45

Tested by

no test coverage detected