Home
last modified time | relevance | path

Searched refs:m_inputMethodContext (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/ime/
DComposition.cpp44 m_inputMethodContext->ref(); in ref()
49 m_inputMethodContext->deref(); in deref()
58 : m_inputMethodContext(context) in Composition()
65 return m_inputMethodContext->compositionText(); in text()
70 return m_inputMethodContext->selectionStart(); in selectionStart()
75 return m_inputMethodContext->selectionEnd(); in selectionEnd()
80 return m_inputMethodContext->segments(); in getSegments()
DComposition.h58 InputMethodContext* m_inputMethodContext; variable
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementRareData.h143 bool hasInputMethodContext() const { return m_inputMethodContext; } in hasInputMethodContext()
146 if (!m_inputMethodContext) in ensureInputMethodContext()
147 m_inputMethodContext = InputMethodContext::create(element); in ensureInputMethodContext()
148 return m_inputMethodContext.get(); in ensureInputMethodContext()
187 OwnPtr<InputMethodContext> m_inputMethodContext; variable