Home | History | Annotate | Download | only in Support

Lines Matching defs:Column

22 /// column we end up in after output, and how many line breaks are contained.
25 unsigned &Column = Position.first;
28 // Keep track of the current column and line by scanning the string for
31 ++Column;
36 Column = 0;
40 Column += (8 - (Column & 0x7)) & 0x7;
46 /// ComputePosition - Examine the current output and update line and column
54 // column.
63 /// PadToColumn - Align the output to some column number.
65 /// \param NewCol - The column to move to.
68 // Figure out what's in the buffer and add it to the column count.
71 // Output spaces until we reach the desired column.
77 // Figure out what's in the buffer and add it to the column count.