Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:Column

227 		The row and column are 1-based. (That is the first row and first column is
229 a row and column value.
231 Generally, the row and column value will be set when the TiXmlDocument::Load(),
239 There is a minor performance cost to computing the row and column. Computation
245 int Column() const { return location.col + 1; } ///< See Row()
1470 /** Returns the location (if known) of the error. The first column is column 1,
1471 and the first row is row 1. A value of 0 means the row and column wasn't applicable
1472 (memory errors, for example, have no row/column) or the parser lost the error. (An
1475 @sa SetTabSize, Row, Column
1478 int ErrorCol() const { return errorLocation.col+1; } ///< The column where the error occured. See ErrorRow()
1481 to report the correct values for row and column. It does not change the output
1485 greater than 0, the row and column of each node and attribute is stored
1491 the tabsize to 0 disables row/column tracking.
1493 Note that row and column tracking is not supported when using operator>>.
1502 @sa Row, Column