Lines Matching refs:int64_t
566 struct TypeHelper<ValueType, int64_t> {
568 static int64_t Get(const ValueType& v) { return v.GetInt64(); }
569 static ValueType& Set(ValueType& v, int64_t data) { return v.SetInt64(data); }
570 …static ValueType& Set(ValueType& v, int64_t data, typename ValueType::AllocatorType&) { return v.S…
804 explicit GenericValue(int64_t i64) RAPIDJSON_NOEXCEPT : data_() {
814 else if (i64 >= static_cast<int64_t>(RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0x80000000)))
1137 int64_t i = GetInt64();
1139 return (d >= static_cast<double>((std::numeric_limits<int64_t>::min)()))
1140 && (d < static_cast<double>((std::numeric_limits<int64_t>::max)()))
1141 && (i == static_cast<int64_t>(d));
1819 … int64_t GetInt64() const { RAPIDJSON_ASSERT(data_.f.flags & kInt64Flag); return data_.n.i64; }
1843 …GenericValue& SetInt64(int64_t i64) { this->~GenericValue(); new (this) GenericValue(i64); re…
2081 int64_t i64;
2824 bool Int64(int64_t i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; }