Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:Row

102 	void Clear()		{ row = col = -1; }
104 int row; // 0 based.
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
244 int Row() const { return location.row + 1; }
245 int Column() const { return location.col + 1; } ///< See Row()
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
1477 int ErrorRow() const { return errorLocation.row+1; }
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
1514 errorLocation.row = errorLocation.col = 0;