Home | History | Annotate | Download | only in jsoncpp

Lines Matching refs:isIntegral

3624 static bool IsIntegral(double d) {
3641 IsIntegral(value_.real_);
3656 IsIntegral(value_.real_);
3675 value_.real_ < double(maxInt64) && IsIntegral(value_.real_);
3695 IsIntegral(value_.real_);
3703 bool Value::isIntegral() const {
3711 bool Value::isDouble() const { return type_ == realValue || isIntegral(); }
3713 bool Value::isNumeric() const { return isIntegral() || isDouble(); }