Lines Matching full:error
21 #include "error/en.h"
186 …ateContinueOnErrorFlag = 1, //!< Don't stop after first validation error.
888 …Must set valueSchema for when kValidateContinueOnErrorFlag is set, else reports spurious type error in BeginValue()
1152 …Must set valueSchema for when kValidateContinueOnErrorFlag is set, else reports spurious type error in Key()
1463 // Also a useful place to add type-independent error checks.
1958 //! Gets the error object.
1981 //! Default error method
1987 //! Method for error with single string value insert
1994 //! Method for error with invalid pointer
2030 void AddError(GValue& keyword, GValue& error) {
2033 error_.AddMember(keyword, error, *allocator_);
2040 member->value.PushBack(error, *allocator_);
2143 …// Report an error if schema draft or open api version not supported or not recognized, or both in…
2148 // Error if both in document
2156 // Error if draft or version unknown
2526 //! Reset the error state.
2549 //! Gets the error object.
2567 //! Gets the error code of invalid schema.
2673 ValueType error(kObjectType);
2674 error.AddMember(GetMissingString(), currentError_, GetStateAllocator());
2675 currentError_ = error;
2700 // Create equivalent 'required' error
2701 ValueType error(kObjectType);
2703 error.AddMember(GetMissingString(), missingDependents_.Move(), GetStateAllocator());
2704 AddErrorCode(error, code);
2705 AddErrorInstanceLocation(error, false);
2708 …AddErrorSchemaLocation(error, schemaRef.Append(sourceName.GetString(), sourceName.GetStringLength(…
2710 …e(SchemaType::GetValidateErrorKeyword(code), GetStateAllocator()).Move(), error, GetStateAllocator…
2721 ValueType error(kObjectType);
2722 error.AddMember(GetErrorsString(), currentError_, GetStateAllocator());
2723 currentError_ = error;
2739 ValueType error(kObjectType);
2740 error.AddMember(GetExpectedString(), currentError_, GetStateAllocator());
2741 …error.AddMember(GetActualString(), ValueType(actualType, GetStateAllocator()).Move(), GetStateAllo…
2742 currentError_ = error;
3111 void AddError(ValueType& keyword, ValueType& error) {
3114 error_.AddMember(keyword, error, GetStateAllocator());
3121 member->value.PushBack(error, GetStateAllocator());