Home
last modified time | relevance | path

Searched refs:isInPasswordField (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
DEditorState.h40 , isInPasswordField(false) in EditorState()
49 bool isInPasswordField; member
/external/webkit/Source/WebCore/editing/
DSelectionController.h129 bool isInPasswordField() const;
DEditor.cpp199 …return !m_frame->selection()->isInPasswordField() && !dispatchCPPEvent(eventNames().beforecutEvent… in canDHTMLCut()
204 …return !m_frame->selection()->isInPasswordField() && !dispatchCPPEvent(eventNames().beforecopyEven… in canDHTMLCopy()
241 return selection->isRange() && !selection->isInPasswordField(); in canCopy()
448 if (m_frame->selection()->isInPasswordField()) in tryDHTMLCopy()
461 if (m_frame->selection()->isInPasswordField()) in tryDHTMLCut()
DSelectionController.cpp1472 bool SelectionController::isInPasswordField() const in isInPasswordField() function in WebCore::SelectionController
/external/webkit/Source/WebCore/editing/mac/
DEditorMac.mm194 return selection->isRange() && !selection->isInPasswordField();
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DWKView.mm1401 if (_data->_page->editorState().isInPasswordField) {
1437 if (_data->_page->editorState().isInPasswordField)
2316 bool isInPasswordField = _data->_page->editorState().isInPasswordField;
2318 if (isInPasswordField) {
2328 _data->_inSecureInputState = isInPasswordField;
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.cpp334 result.isInPasswordField = frame->selection()->isInPasswordField(); in editorState()
/external/webkit/Source/WebCore/page/
DContextMenuController.cpp832 bool inPasswordField = selection->isInPasswordField(); in populate()
DEventHandler.cpp2804 && !m_frame->selection()->isInPasswordField(); in handleDrag()
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
DWebPageMac.mm314 …)->isNone() || !frame->selection()->isContentEditable() || frame->selection()->isInPasswordField())
/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.cpp2148 …bool couldChangeSecureInputState = m_editorState.isInPasswordField != editorState.isInPasswordFiel… in editorStateChanged()
/external/webkit/Source/WebKit/mac/WebView/
DWebHTMLView.mm3804 static BOOL isInPasswordField(Frame* coreFrame)
3806 return coreFrame && coreFrame->selection()->isInPasswordField();
3821 BOOL exposeInputContext = isTextInput(frame) && !isInPasswordField(frame);
5868 if (!isTextInput(coreFrame) || isInPasswordField(coreFrame)) {
6140 if (isInPasswordField(coreFrame)) {
6163 BOOL exposeInputContext = isTextInput(coreFrame) && !isInPasswordField(coreFrame);
/external/webkit/Source/WebKit/chromium/src/
DWebViewImpl.cpp1402 if (controller->isInPasswordField()) in textInputType()
/external/webkit/Source/WebKit/mac/
DChangeLog-2010-01-295328 (isInPasswordField): Moved here.
15611 (isInPasswordField): Factored out code to determine that the current selection is in
/external/webkit/Source/WebCore/
DChangeLog-2007-10-1461160 … changed in r17504, where canDHTML* now calls !selectionController::isInPasswordField instead of e…
61161 …thing else in r17503 that used to call mayCopy now calls (!)selectionController::isInPasswordField.
DChangeLog3875 (WebCore::FrameSelection::isInPasswordField):
50380 … (WebCore::SelectionController::isInPasswordField): Look for the shadow root from containerNode()
DChangeLog-2010-12-0653148 (WebCore::SelectionController::isInPasswordField): Use isPasswordField.