HomeSort by relevance Sort by last modified time
    Searched refs:FrameSelection (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.h 56 class FrameSelection FINAL : public NoBaseWillBeGarbageCollectedFinalized<FrameSelection>, public VisibleSelection::ChangeObserver, private CaretBase {
57 WTF_MAKE_NONCOPYABLE(FrameSelection);
59 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FrameSelection);
61 static PassOwnPtrWillBeRawPtr<FrameSelection> create(LocalFrame* frame = 0)
63 return adoptPtrWillBeNoop(new FrameSelection(frame));
65 virtual ~FrameSelection();
155 // If this FrameSelection has a logical range which is still valid, this function return its clone. Otherwise,
219 explicit FrameSelection(LocalFrame*);
249 void caretBlinkTimerFired(Timer<FrameSelection>*);
    [all...]
FrameSelection.cpp 27 #include "core/editing/FrameSelection.h"
94 FrameSelection::FrameSelection(LocalFrame* frame)
99 , m_caretBlinkTimer(this, &FrameSelection::caretBlinkTimerFired)
110 FrameSelection::~FrameSelection()
114 // it is finalized as a part object of FrameSelection.
119 Element* FrameSelection::rootEditableElementOrDocumentElement() const
125 ContainerNode* FrameSelection::rootEditableElementOrTreeScopeRootNode() const
135 void FrameSelection::moveTo(const VisiblePosition &pos, EUserTriggered userTriggered, CursorAlignOnScroll align
    [all...]
EditorCommand.cpp 42 #include "core/editing/FrameSelection.h"
224 frame.selection().setSelectedRange(newRange.get(), affinity, FrameSelection::NonDirectional, FrameSelection::CloseTyping);
228 static TriState selectionListState(const FrameSelection& selection, const QualifiedName& tagName)
402 bool selected = frame.selection().setSelectedRange(unionDOMRanges(mark.get(), frame.editor().selectedRange().get()).get(), DOWNSTREAM, FrameSelection::NonDirectional, FrameSelection::CloseTyping);
642 frame.selection().modify(FrameSelection::AlterationMove, DirectionBackward, CharacterGranularity, UserTriggered);
648 frame.selection().modify(FrameSelection::AlterationExtend, DirectionBackward, CharacterGranularity, UserTriggered);
654 return frame.selection().modify(FrameSelection::AlterationMove, DirectionForward, LineGranularity, UserTriggered);
659 frame.selection().modify(FrameSelection::AlterationExtend, DirectionForward, LineGranularity, UserTriggered)
    [all...]
DOMSelection.cpp 42 #include "core/editing/FrameSelection.h"
178 FrameSelection& selection = m_frame->selection();
221 m_frame->selection().setSelectedRange(range.get(), DOWNSTREAM, m_frame->selection().isDirectional() ? FrameSelection::Directional : FrameSelection::NonDirectional);
291 FrameSelection::EAlteration alter;
293 alter = FrameSelection::AlterationExtend;
295 alter = FrameSelection::AlterationMove;
405 FrameSelection& selection = m_frame->selection();
446 FrameSelection& selection = m_frame->selection();
465 FrameSelection& selection = m_frame->selection()
    [all...]
TypingCommand.cpp 35 #include "core/editing/FrameSelection.h"
169 // FIXME: We shouldn't need to take selectionForInsertion. It should be identical to FrameSelection's current selection.
433 OwnPtrWillBeRawPtr<FrameSelection> selection = FrameSelection::create();
435 selection->modify(FrameSelection::AlterationExtend, DirectionBackward, granularity);
437 selection->modify(FrameSelection::AlterationExtend, DirectionBackward, CharacterGranularity);
464 selection->modify(FrameSelection::AlterationExtend, DirectionBackward, granularity);
535 OwnPtrWillBeRawPtr<FrameSelection> selection = FrameSelection::create();
537 selection->modify(FrameSelection::AlterationExtend, DirectionForward, granularity)
    [all...]
FrameSelectionTest.cpp 6 #include "core/editing/FrameSelection.h"
34 FrameSelection& selection() const;
63 FrameSelection& FrameSelectionTest::selection() const
87 // update FrameSelection with the selection.
SpellChecker.h 30 #include "core/editing/FrameSelection.h"
74 void respondToChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions);
Editor.h 34 #include "core/editing/FrameSelection.h"
216 void respondToChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions);
274 void changeSelectionAfterCommand(const VisibleSelection& newSelection, FrameSelection::SetSelectionOptions);
275 void notifyComponentsOnChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions);
Editor.cpp 236 FrameSelection& selection = frame().selection();
247 FrameSelection& selection = frame().selection();
543 void Editor::notifyComponentsOnChangedSelection(const VisibleSelection& oldSelection, FrameSelection::SetSelectionOptions options)
699 changeSelectionAfterCommand(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle);
715 changeSelectionAfterCommand(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle);
    [all...]
InputMethodController.cpp 313 frame().selection().setSelectedRange(selectedRange.get(), DOWNSTREAM, FrameSelection::NonDirectional, NotUserTriggered);
390 return frame().selection().setSelectedRange(range.get(), VP_DEFAULT_AFFINITY, FrameSelection::NonDirectional, FrameSelection::CloseTyping);
SpellChecker.cpp 425 frame().selection().modify(FrameSelection::AlterationMove, DirectionForward, CharacterGranularity);
643 frame().selection().modify(FrameSelection::AlterationMove, DirectionForward, CharacterGranularity);
647 frame().selection().modify(FrameSelection::AlterationMove, DirectionForward, CharacterGranularity);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.h 52 class FrameSelection;
103 FrameSelection& selection() const;
178 const OwnPtrWillBeMember<FrameSelection> m_selection;
214 inline FrameSelection& LocalFrame::selection() const
LocalFrame.cpp 36 #include "core/editing/FrameSelection.h"
99 , m_selection(FrameSelection::create(this))
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.h 45 class FrameSelection;
91 bool dragIsMove(FrameSelection&, DragData*);
DragController.cpp 43 #include "core/editing/FrameSelection.h"
191 bool DragController::dragIsMove(FrameSelection& selection, DragData* dragData)
    [all...]
FocusController.cpp 40 #include "core/editing/FrameSelection.h"
657 FrameSelection& selection = oldFocusedFrame->selection();
    [all...]
EventHandler.cpp 44 #include "core/editing/FrameSelection.h"
321 static void setSelectionIfNeeded(FrameSelection& selection, const VisibleSelection& newSelection)
758 FrameSelection::AdjustEndpointsAtBidiBoundary);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElementTest.cpp 10 #include "core/editing/FrameSelection.h"
116 FrameSelection& frameSelection = document().frame()->selection();
118 LayoutRect oldCaretRect = frameSelection.absoluteCaretBounds();
123 LayoutRect newCaretRect = frameSelection.absoluteCaretBounds();
127 oldCaretRect = frameSelection.absoluteCaretBounds();
132 newCaretRect = frameSelection.absoluteCaretBounds();
218 document().frame()->selection().setSelection(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle | FrameSelection::DoNotUpdateAppearance)
    [all...]
HTMLTextFormControlElement.cpp 38 #include "core/editing/FrameSelection.h"
386 frame->selection().setSelection(newSelection, FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle | (selectionOption == ChangeSelectionAndFocus ? 0 : FrameSelection::DoNotSetFocus));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BlockPainter.cpp 9 #include "core/editing/FrameSelection.h"
218 static inline bool hasCursorCaret(const FrameSelection& selection, const RenderBlock* block, bool caretBrowsing)
232 FrameSelection& selection = m_renderBlock.frame()->selection();
  /external/chromium_org/third_party/WebKit/Source/web/
WebLocalFrameImpl.cpp 105 #include "core/editing/FrameSelection.h"
    [all...]
WebViewImpl.cpp 44 #include "core/editing/FrameSelection.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 75 #include "core/editing/FrameSelection.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 270 third_party/WebKit/Source/core/editing/FrameSelection.cpp \
    [all...]
webcore_remaining.target.darwin-arm64.mk 270 third_party/WebKit/Source/core/editing/FrameSelection.cpp \
    [all...]

Completed in 583 milliseconds

1 2