Lines Matching refs:int64_t
117 inline void PrintMethodData(const char* method, int64_t i) { in PrintMethodData()
283 virtual void NotMultipleOf(int64_t actual, const SValue& expected) = 0;
286 virtual void AboveMaximum(int64_t actual, const SValue& expected, bool exclusive) = 0;
289 virtual void BelowMinimum(int64_t actual, const SValue& expected, bool exclusive) = 0;
346 …bool Int64(int64_t i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); } in Int64()
350 if (d < 0) n.u.i = static_cast<int64_t>(d); in Double()
399 int64_t i;
1011 RAPIDJSON_SCHEMA_PRINT(Method, "Schema::Int", (int64_t)i); in Int()
1024 bool Int64(Context& context, int64_t i) const { in Int64()
1534 bool CheckInt(Context& context, int64_t i) const { in CheckInt()
2586 void NotMultipleOf(int64_t actual, const SValue& expected) {
2595 void AboveMaximum(int64_t actual, const SValue& expected, bool exclusive) {
2607 void BelowMinimum(int64_t actual, const SValue& expected, bool exclusive) {
2835 bool Int64(int64_t i) { RAPIDJSON_SCHEMA_HANDLE_VALUE_(Int64, (CurrentContext(), i), (i)); }