Lines Matching refs:v

523     static bool Is(const ValueType& v) { return v.IsBool(); }
524 static bool Get(const ValueType& v) { return v.GetBool(); }
525 static ValueType& Set(ValueType& v, bool data) { return v.SetBool(data); }
526 …static ValueType& Set(ValueType& v, bool data, typename ValueType::AllocatorType&) { return v.SetB…
531 static bool Is(const ValueType& v) { return v.IsInt(); }
532 static int Get(const ValueType& v) { return v.GetInt(); }
533 static ValueType& Set(ValueType& v, int data) { return v.SetInt(data); }
534 …static ValueType& Set(ValueType& v, int data, typename ValueType::AllocatorType&) { return v.SetIn…
539 static bool Is(const ValueType& v) { return v.IsUint(); }
540 static unsigned Get(const ValueType& v) { return v.GetUint(); }
541 static ValueType& Set(ValueType& v, unsigned data) { return v.SetUint(data); }
542 …static ValueType& Set(ValueType& v, unsigned data, typename ValueType::AllocatorType&) { return v.…
549 static bool Is(const ValueType& v) { return v.IsInt(); }
550 static long Get(const ValueType& v) { return v.GetInt(); }
551 static ValueType& Set(ValueType& v, long data) { return v.SetInt(data); }
552 …static ValueType& Set(ValueType& v, long data, typename ValueType::AllocatorType&) { return v.SetI…
558 static bool Is(const ValueType& v) { return v.IsUint(); }
559 static unsigned long Get(const ValueType& v) { return v.GetUint(); }
560 static ValueType& Set(ValueType& v, unsigned long data) { return v.SetUint(data); }
561 …static ValueType& Set(ValueType& v, unsigned long data, typename ValueType::AllocatorType&) { retu…
567 static bool Is(const ValueType& v) { return v.IsInt64(); }
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…
575 static bool Is(const ValueType& v) { return v.IsUint64(); }
576 static uint64_t Get(const ValueType& v) { return v.GetUint64(); }
577 static ValueType& Set(ValueType& v, uint64_t data) { return v.SetUint64(data); }
578 …static ValueType& Set(ValueType& v, uint64_t data, typename ValueType::AllocatorType&) { return v.…
583 static bool Is(const ValueType& v) { return v.IsDouble(); }
584 static double Get(const ValueType& v) { return v.GetDouble(); }
585 static ValueType& Set(ValueType& v, double data) { return v.SetDouble(data); }
586 …static ValueType& Set(ValueType& v, double data, typename ValueType::AllocatorType&) { return v.Se…
591 static bool Is(const ValueType& v) { return v.IsFloat(); }
592 static float Get(const ValueType& v) { return v.GetFloat(); }
593 static ValueType& Set(ValueType& v, float data) { return v.SetFloat(data); }
594 …static ValueType& Set(ValueType& v, float data, typename ValueType::AllocatorType&) { return v.Set…
600 static bool Is(const ValueType& v) { return v.IsString(); }
601 static StringType Get(const ValueType& v) { return v.GetString(); }
602 …static ValueType& Set(ValueType& v, const StringType data) { return v.SetString(typename ValueType…
603 …static ValueType& Set(ValueType& v, const StringType data, typename ValueType::AllocatorType& a) {…
610 static bool Is(const ValueType& v) { return v.IsString(); }
611 …static StringType Get(const ValueType& v) { return StringType(v.GetString(), v.GetStringLength());…
612 …static ValueType& Set(ValueType& v, const StringType& data, typename ValueType::AllocatorType& a) …
619 static bool Is(const ValueType& v) { return v.IsArray(); }
620 static ArrayType Get(ValueType& v) { return v.GetArray(); }
621 static ValueType& Set(ValueType& v, ArrayType data) { return v = data; }
622 …static ValueType& Set(ValueType& v, ArrayType data, typename ValueType::AllocatorType&) { return v
628 static bool Is(const ValueType& v) { return v.IsArray(); }
629 static ArrayType Get(const ValueType& v) { return v.GetArray(); }
635 static bool Is(const ValueType& v) { return v.IsObject(); }
636 static ObjectType Get(ValueType& v) { return v.GetObject(); }
637 static ValueType& Set(ValueType& v, ObjectType data) { return v = data; }
638 …static ValueType& Set(ValueType& v, ObjectType data, typename ValueType::AllocatorType&) { return
644 static bool Is(const ValueType& v) { return v.IsObject(); }
645 static ObjectType Get(const ValueType& v) { return v.GetObject(); }
889 for (GenericValue* v = e; v != e + data_.a.size; ++v)
890 v->~GenericValue();
966 GenericValue v(value);
967 return *this = v;
1404 GenericValue v(value);
1405 return AddMember(name, v, allocator);
1419 GenericValue v(value, allocator);
1420 return AddMember(name, v, allocator);
1444 GenericValue v(value);
1445 return AddMember(name, v, allocator);
1490 GenericValue v(value);
1491 return AddMember(name, v, allocator);
1658 for (GenericValue* v = e; v != e + data_.a.size; ++v)
1659 v->~GenericValue();
1760 GenericValue v(value);
1761 return PushBack(v, allocator);
1969 for (ConstValueIterator v = Begin(); v != End(); ++v)
1970 if (RAPIDJSON_UNLIKELY(!v->Accept(handler)))