Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:Column

181 		The row and column are 1-based. (That is the first row and first column is
183 a row and column value.
185 Generally, the row and column value will be set when the TiXmlDocument::Load(),
193 There is a minor performance cost to computing the row and column. Computation
199 int Column() const { return location.col + 1; } ///< See Row()
1292 /** Returns the location (if known) of the error. The first column is column 1,
1293 and the first row is row 1. A value of 0 means the row and column wasn't applicable
1294 (memory errors, for example, have no row/column) or the parser lost the error. (An
1297 @sa SetTabSize, Row, Column
1300 int ErrorCol() { return errorLocation.col+1; } ///< The column where the error occured. See ErrorRow()
1303 to report the correct values for row and column. It does not change the output
1307 greater than 0, the row and column of each node and attribute is stored
1313 the tabsize to 0 disables row/column tracking.
1315 Note that row and column tracking is not supported when using operator>>.
1324 @sa Row, Column