HomeSort by relevance Sort by last modified time
    Searched defs:m_column (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/html/
HTMLDataGridColElement.h 57 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/
ScriptCallFrame.h 57 unsigned m_column; member in class:WebCore::ScriptCallFrame
  /external/webkit/Source/JavaScriptCore/wtf/text/
TextPosition.h 64 , 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/html/parser/
HTMLInputStream.h 130 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/WebCore/rendering/
RenderTableCell.h 46 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 423 milliseconds