HomeSort by: relevance | last modified time | path
    Searched defs:seen_decimal_point (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
floating_from_chars.cc 612 bool seen_decimal_point = false; local
616 if (ch == '.' && !seen_decimal_point)
618 seen_decimal_point = true;
627 if (!seen_decimal_point && mantissa != 0)
629 else if (seen_decimal_point && mantissa == 0)
floating_from_chars.cc 612 bool seen_decimal_point = false; local
616 if (ch == '.' && !seen_decimal_point)
618 seen_decimal_point = true;
627 if (!seen_decimal_point && mantissa != 0)
629 else if (seen_decimal_point && mantissa == 0)
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
floating_from_chars.cc 974 bool seen_decimal_point = false; local
978 if (ch == '.' && !seen_decimal_point)
980 seen_decimal_point = true;
989 if (!seen_decimal_point && mantissa != 0)
991 else if (seen_decimal_point && mantissa == 0)
floating_from_chars.cc 974 bool seen_decimal_point = false; local
978 if (ch == '.' && !seen_decimal_point)
980 seen_decimal_point = true;
989 if (!seen_decimal_point && mantissa != 0)
991 else if (seen_decimal_point && mantissa == 0)

Completed in 66 milliseconds