Home | History | Annotate | Download | only in src

Lines Matching defs:parsed

1172   // Returns a pointer to the parsed --gtest_internal_run_death_test
1329 // parsed when RUN_ALL_TESTS is called.
1430 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1435 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1443 GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed));
1445 const Integer result = static_cast<Integer>(parsed);
1446 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
7745 ::std::vector< ::std::string> parsed;
7750 parsed.push_back(str.substr(pos));
7753 parsed.push_back(str.substr(pos, colon - pos));
7757 dest->swap(parsed);
8992 // Is the parsed value in the range of an Int32?
8995 // The parsed value overflows as a long. (strtol() returns
8998 // The parsed value overflows as an Int32.