Lines Matching refs:Str
57 std::string Str(Label);
58 for (unsigned i = 0; i != Str.length(); ++i)
59 switch (Str[i]) {
61 Str.insert(Str.begin()+i, '\\'); // Escape character...
63 Str[i] = 'n';
66 Str.insert(Str.begin()+i, ' '); // Convert to two spaces
68 Str[i] = ' ';
71 if (i+1 != Str.length())
72 switch (Str[i+1]) {
75 Str.erase(Str.begin()+i); continue;
82 Str.insert(Str.begin()+i, '\\'); // Escape character...
86 return Str;