Lines Matching defs:Str
117 static long MyStol(const char *Str) {
120 if (*Str == '-') {
121 Str++;
124 for (size_t i = 0; Str[i]; i++) {
125 char Ch = Str[i];
148 const char *Str = FlagValue(Param, Name);
149 if (Str) {
151 int Val = MyStol(Str);
157 unsigned int Val = std::stoul(Str);
163 *FlagDescriptions[F].StrFlag = Str;
165 Printf("Flag: %s %s\n", Name, Str);