Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:Error

308 		or 0 if the function has an error.
579 Returns a pointer to the new object or NULL if an error occured.
596 Returns a pointer to the new object or NULL if an error occured.
601 Returns a pointer to the new object or NULL if an error occured.
606 Returns a pointer to the new object or NULL if an error occured.
823 IntValue() method with richer error checking.
883 TiXmlDocument* document; // A pointer back to a document, for error reporting.
979 Attribute() method with richer error checking.
1455 /** If an error occurs, Error will be set to true. Also,
1456 - The ErrorId() will contain the integer identifier of the error (not generally useful)
1457 - The ErrorDesc() method will return the name of the error. (very useful)
1458 - The ErrorRow() and ErrorCol() will return the location of the error (if known)
1460 bool Error() const { return error; }
1462 /// Contains a textual (english) description of the error if one occurs.
1465 /** Generally, you probably want the error string ( ErrorDesc() ). But if you
1470 /** Returns the location (if known) of the error. The first column is column 1,
1472 (memory errors, for example, have no row/column) or the parser lost the error. (An
1473 error in the error reporting, in that case.)
1478 int ErrorCol() const { return errorLocation.col+1; } ///< The column where the error occured. See ErrorRow()
1480 /** SetTabSize() allows the error reporting functions (ErrorRow() and ErrorCol())
1508 /** If you have handled the error, it can be reset with this call. The error
1511 void ClearError() { error = false;
1549 bool error;