Lines Matching refs:nullValue
232 case nullValue: in Value()
333 case nullValue: in Value()
377 case nullValue: in ~Value()
440 case nullValue: in operator <()
489 case nullValue: in operator ==()
530 case nullValue: in asString()
565 case nullValue: in asInt()
587 case nullValue: in asUInt()
610 case nullValue: in asInt64()
631 case nullValue: in asUInt64()
670 case nullValue: in asDouble()
692 case nullValue: in asFloat()
706 case nullValue: in asBool()
722 case nullValue: in isConvertibleTo()
728 type_ == nullValue; in isConvertibleTo()
732 type_ == booleanValue || type_ == nullValue; in isConvertibleTo()
736 type_ == booleanValue || type_ == nullValue; in isConvertibleTo()
738 return isNumeric() || type_ == booleanValue || type_ == nullValue; in isConvertibleTo()
740 return isNumeric() || type_ == booleanValue || type_ == nullValue; in isConvertibleTo()
743 type_ == nullValue; in isConvertibleTo()
745 return type_ == arrayValue || type_ == nullValue; in isConvertibleTo()
747 return type_ == objectValue || type_ == nullValue; in isConvertibleTo()
756 case nullValue: in size()
794 JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == arrayValue || in clear()
819 JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == arrayValue, in resize()
821 if (type_ == nullValue) in resize()
842 type_ == nullValue || type_ == arrayValue, in operator []()
844 if (type_ == nullValue) in operator []()
869 type_ == nullValue || type_ == arrayValue, in operator []()
871 if (type_ == nullValue) in operator []()
909 type_ == nullValue || type_ == objectValue, in resolveReference()
911 if (type_ == nullValue) in resolveReference()
938 type_ == nullValue || type_ == objectValue, in operator []()
940 if (type_ == nullValue) in operator []()
988 JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == objectValue, in removeMember()
990 if (type_ == nullValue) in removeMember()
1040 type_ == nullValue || type_ == objectValue, in getMemberNames()
1042 if (type_ == nullValue) in getMemberNames()
1092 bool Value::isNull() const { return type_ == nullValue; } in isNull()