HomeSort by relevance Sort by last modified time
    Searched refs:editorState (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 33 #import "EditorState.h"
538 BOOL isValidSendType = !sendType || ([PasteboardTypes::forSelection() containsObject:sendType] && !_data->_page->editorState().selectionIsNone);
542 else if ([PasteboardTypes::forEditing() containsObject:returnType] && _data->_page->editorState().isContentEditable) {
544 isValidReturnType = _data->_page->editorState().isContentRichlyEditable || [returnType isEqualToString:NSStringPboardType];
629 return _data->_page->editorState().isContentEditable;
633 return _data->_page->editorState().isContentEditable;
651 return _data->_page->editorState().isContentEditable;
657 return _data->_page->editorState().isContentEditable;
663 return _data->_page->editorState().isContentEditable;
669 return _data->_page->editorState().isContentEditable
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 32 #import "EditorState.h"
185 bool sendResult = WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::InterpretQueuedKeyEvent(editorState()),
224 void WebPage::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, EditorState& newState)
238 newState = editorState();
241 void WebPage::confirmComposition(EditorState& newState)
247 newState = editorState();
250 void WebPage::insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, bool& handled, EditorState& newState)
269 newState = editorState();
389 void WebPage::executeKeypressCommands(const Vector<WebCore::KeypressCommand>& commands, bool& handled, EditorState& newState)
392 newState = editorState();
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.cpp 29 #include "EditorState.h"
193 m_page->send(Messages::WebPageProxy::EditorStateChanged(m_page->editorState()));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 109 struct EditorState;
219 EditorState editorState() const;
324 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, EditorState& newState);
325 void confirmComposition(EditorState& newState);
326 void insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, bool& handled, EditorState& newState);
332 void executeKeypressCommands(const Vector<WebCore::KeypressCommand>&, bool& handled, EditorState& newState);
WebPage.cpp 324 EditorState WebPage::editorState() const
329 EditorState result;
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]
WebPageProxy.h 34 #include "EditorState.h"
100 struct EditorState;
250 const EditorState& editorState() const { return m_editorState; }
592 void editorStateChanged(const EditorState&);
610 void interpretQueuedKeyEvent(const EditorState&, bool& handled, Vector<WebCore::KeypressCommand>&);
    [all...]

Completed in 73 milliseconds