Lines Matching defs:str
114 char* str = "123.45xxx";
118 double num = strtod_l(str, &end, loc);
133 char* str = "+123.45xxx";
137 double num = strtod_l(str, &end, loc);
152 char* str = "-123.45xxx";
156 double num = strtod_l(str, &end, loc);
171 char* str = " 123.45xxx";
175 double num = strtod_l(str, &end, loc);
190 char* str = "xxx123.45";
194 double num = strtod_l(str, &end, loc);
209 char* str = "+inf";
212 double num = strtod_l(str, &end, loc);
224 char* str = "infinity";
227 double num = strtod_l(str, &end, loc);
239 char* str = "infinixxx";
243 double num = strtod_l(str, &end, loc);
258 char* str = "-inf";
261 double num = strtod_l(str, &end, loc);
273 char* str = "+nan";
276 double num = strtod_l(str, &end, loc);
290 char* str = "-nan";
293 double num = strtod_l(str, &end, loc);
308 char* str = "0X1.BC";
312 double num = strtod_l(str, &end, loc);
327 char* str = "";
330 double num = strtod_l(str, &end, loc);
342 char* str = " xxx";
346 double num = strtod_l(str, &end, loc);
363 char* str = "1234.56";
367 double num = strtod_l(str, &end, loc);
382 char* str = " ";
386 double num = strtod_l(str, &end, loc);
401 char* str = "123.45";
403 double num = strtod_l(str, NULL, loc);