Lines Matching refs:column
24 /// the column info and can help track where functions, blocks, inlined
45 /// Construct with file specification, and optional line and column.
55 /// @param[in] column
56 /// The column number that describes where this was declared.
57 /// Set to zero if there is no column number information.
59 Declaration (const FileSpec& file_spec, uint32_t line = 0, uint32_t column = 0) :
63 ,m_column (column)
98 /// Sets the file specification to be empty, and the line and column
116 /// line number and column numbers respectively.
147 /// Get accessor for the declaration column number.
150 /// Non-zero indicates a valid column number, zero indicates no
151 /// column information is available.
221 /// Set accessor for the declaration column number.
223 /// @param[in] column
224 /// Non-zero indicates a valid column number, zero indicates no
225 /// column information is available.
228 SetColumn (uint32_t column)
268 uint32_t m_column; ///< Non-zero values indicates a valid column number,
269 ///< zero indicates no column information is available.