Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:Row

104 	void Clear()		{ row = col = -1; }
106 int row; // 0 based.
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
198 int Row() const { return location.row + 1; }
199 int Column() const { return location.col + 1; } ///< See Row()
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
1299 int ErrorRow() { return errorLocation.row+1; }
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
1336 errorLocation.row = errorLocation.col = 0;