Searched defs:isContentEditable (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/android/
H A DWebHitTestInfo.cpp74 bool WebHitTestInfo::isContentEditable() const function in class:WebKit::WebHitTestInfo
76 return m_private->isContentEditable();
/external/webkit/Source/WebKit2/Shared/
H A DEditorState.h38 , isContentEditable(false)
47 bool isContentEditable; member in struct:WebKit::EditorState
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe_p.h134 QWebHitTestResultPrivate() : isContentEditable(false), isContentSelected(false), isScrollBar(false) {}
149 bool isContentEditable; member in class:QWebHitTestResultPrivate
H A Dqwebframe.cpp1685 : isContentEditable(false)
1713 isContentEditable = hitTest.isContentEditable();
1911 bool QWebHitTestResult::isContentEditable() const function in class:QWebHitTestResult
1915 return d->isContentEditable;
H A Dqwebpage.cpp796 if (result.isContentEditable()) {
1443 if (frame->selection()->isContentEditable()) {
3173 if (isContentEditable() != editable) {
3189 bool QWebPage::isContentEditable() const function in class:QWebPage
/external/webkit/Source/WebCore/editing/
H A DVisibleSelection.cpp561 bool VisibleSelection::isContentEditable() const function in class:WebCore::VisibleSelection
H A DSelectionController.h68 bool isContentEditable() const { return m_selection.isContentEditable(); } function in class:WebCore::SelectionController
/external/webkit/Source/WebCore/rendering/
H A DHitTestResult.cpp517 // really isContentEditable(); it's more like needsEditingContextMenu(). In many ways, this
520 bool HitTestResult::isContentEditable() const function in class:WebCore::HitTestResult
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp153 bool WebNode::isContentEditable() const function in class:WebKit::WebNode
155 return m_private->isContentEditable();
/external/webkit/Source/WebCore/inspector/front-end/
H A DTextViewer.js240 if (!this._delegate.isContentEditable())
315 isContentEditable: function()
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.h251 bool canDelete() const { return hasSelectedRange() && isContentEditable(); }
253 bool isContentEditable() const { return m_editorState.isContentEditable; } function in class:WebKit::WebPageProxy
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h292 @property(readonly) BOOL isContentEditable AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
487 @property(readonly) BOOL isContentEditable; variable
/external/webkit/Source/WebCore/dom/
H A DNode.cpp765 bool Node::isContentEditable() const function in class:WebCore::Node
800 return isContentEditable();
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp1369 static bool isContentEditable(const WebCore::Node* node) function in namespace:android
1373 return node->isContentEditable();
1381 if (isContentEditable(node))
1485 if (!sc->contains(point) && (node->isContentEditable() || node->isTextNode()) && !result.isLiveLink()
1614 if (selection.isNone() || (!selection.isContentEditable() && isCaret)
1654 if (selection.isContentEditable()) {
3157 if (isContentEditable(focusNode)) {
3362 if (node->isContentEditable())
4253 if (selection.isContentEditable()) {

Completed in 2527 milliseconds