Searched refs:multipleOf_ (Results 1 – 1 of 1) sorted by relevance
574 multipleOf_.CopyFrom(*v, *allocator_); in Schema()738 if (!multipleOf_.IsNull() && !CheckDoubleMultipleOf(context, d)) in Double()1126 if (!multipleOf_.IsNull()) { in CheckInt()1127 if (multipleOf_.IsUint64()) { in CheckInt()1128 if (static_cast<uint64_t>(i >= 0 ? i : -i) % multipleOf_.GetUint64() != 0) in CheckInt()1164 if (!multipleOf_.IsNull()) { in CheckUint()1165 if (multipleOf_.IsUint64()) { in CheckUint()1166 if (i % multipleOf_.GetUint64() != 0) in CheckUint()1189 double a = std::abs(d), b = std::abs(multipleOf_.GetDouble()); in CheckDoubleMultipleOf()1258 SValue multipleOf_; variable