Searched defs:m_column (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLDataGridColElement.h57 DataGridColumn* column() const { return m_column.get(); }
58 void setColumn(PassRefPtr<DataGridColumn> col) { m_column = col; }
71 RefPtr<DataGridColumn> m_column; member in class:WebCore::HTMLDataGridColElement
/external/webkit/Source/WebCore/inspector/
H A DScriptCallFrame.h57 unsigned m_column; member in class:WebCore::ScriptCallFrame
/external/webkit/Source/WebCore/html/parser/
H A DHTMLInputStream.h130 m_column = m_inputStream->current().currentColumn();
134 m_inputStream->current().setCurrentPosition(m_line, m_column, 0);
144 m_inputStream->current().setCurrentPosition(m_line, m_column, unparsedRemainderLength);
151 WTF::ZeroBasedNumber m_column; member in class:WebCore::InsertionPointRecord
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DTextPosition.h64 , m_column(column)
69 bool operator==(const TextPosition& other) { return m_line == other.m_line && m_column == other.m_column; }
79 NUMBER m_column; member in class:WTF::TextPosition
132 return TextPosition0(position.m_line.convertToZeroBased(), position.m_column.convertToZeroBased());
137 return TextPosition1(position.m_line.convertToOneBased(), position.m_column.convertToOneBased());
/external/webkit/Source/WebCore/rendering/
H A DRenderTableCell.h46 int col() const { return m_column; }
47 void setCol(int col) { m_column = col; }
155 int m_column; member in class:WebCore::RenderTableCell

Completed in 210 milliseconds