Lines Matching defs:Output
52 std::string Output = Name.str();
53 for (size_t I = 0; I < Output.size(); ++I)
54 if (Output[I] == ' ' || Output[I] == '\\')
55 Output.insert(I++, 1, '\\');
57 return Output;
61 std::string Output = Name.str();
62 for (size_t I = 0; I < Output.size(); ++I)
63 if (Output[I] == '\\')
64 Output.erase(I++, 1);
66 return Output;