Lines Matching refs:Error
261 or 0 if the function has an error.
532 Returns a pointer to the new object or NULL if an error occured.
549 Returns a pointer to the new object or NULL if an error occured.
554 Returns a pointer to the new object or NULL if an error occured.
559 Returns a pointer to the new object or NULL if an error occured.
732 IntValue() method with richer error checking.
755 SetName ( buf.buffer ? buf.buffer : "error" );
761 SetValue( buf.buffer ? buf.buffer : "error" );
793 TiXmlDocument* document; // A pointer back to a document, for error reporting.
883 Attribute() method with richer error checking.
1277 /** If an error occurs, Error will be set to true. Also,
1278 - The ErrorId() will contain the integer identifier of the error (not generally useful)
1279 - The ErrorDesc() method will return the name of the error. (very useful)
1280 - The ErrorRow() and ErrorCol() will return the location of the error (if known)
1282 bool Error() const { return error; }
1284 /// Contains a textual (english) description of the error if one occurs.
1287 /** Generally, you probably want the error string ( ErrorDesc() ). But if you
1292 /** Returns the location (if known) of the error. The first column is column 1,
1294 (memory errors, for example, have no row/column) or the parser lost the error. (An
1295 error in the error reporting, in that case.)
1300 int ErrorCol() { return errorLocation.col+1; } ///< The column where the error occured. See ErrorRow()
1302 /** SetTabSize() allows the error reporting functions (ErrorRow() and ErrorCol())
1330 /** If you have handled the error, it can be reset with this call. The error
1333 void ClearError() { error = false;
1359 bool error;