MCPcopy Create free account
hub / github.com/ablab/spades / upper

Method upper

ext/src/llvm/StringRef.cpp:116–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116std::string StringRef::upper() const {
117 std::string Result(size(), char());
118 for (size_type i = 0, e = size(); i != e; ++i) {
119 Result[i] = toUpper(Data[i]);
120 }
121 return Result;
122}
123
124//===----------------------------------------------------------------------===//
125// String Searching

Callers 15

compFunction · 0.80
compFunction · 0.80
compFunction · 0.80
quast_analysisFunction · 0.80
compare_misassembliesFunction · 0.80
save_quast_reportFunction · 0.80
quast_analysisFunction · 0.80
compare_misassembliesFunction · 0.80
save_quast_reportFunction · 0.80
compFunction · 0.80
varfilter.pyFile · 0.80

Calls 2

toUpperFunction · 0.85
sizeClass · 0.50

Tested by 3

TestFlagFunction · 0.64
_ParseAndStripGTestFlagsFunction · 0.64
SetEnvVarFunction · 0.64