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

1 2

  /external/webkit/WebCore/bindings/objc/
ExceptionHandlers.h 45 class SelectionController;
  /sdk/traceview/src/com/android/traceview/
SelectionController.java 22 public class SelectionController extends Observable {
MainWindow.java 74 SelectionController selectionController = new SelectionController();
95 new TimeLineView(sashForm1, mReader, selectionController);
98 new ProfileView(sashForm1, mReader, selectionController);
ProfileView.java 55 private SelectionController mSelectionController;
62 SelectionController selectController) {
  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 257 frame->editor()->deleteWithDirection(SelectionController::BACKWARD,
262 frame->editor()->deleteWithDirection(SelectionController::FORWARD,
267 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE,
268 SelectionController::LEFT,
273 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE,
274 SelectionController::RIGHT,
279 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE
    [all...]
  /external/webkit/WebCore/editing/
SelectionController.cpp 27 #include "SelectionController.h"
65 SelectionController::SelectionController(Frame* frame, bool isDragCaretController)
68 , m_caretBlinkTimer(this, &SelectionController::caretBlinkTimerFired)
80 void SelectionController::moveTo(const VisiblePosition &pos, bool userTriggered)
85 void SelectionController::moveTo(const VisiblePosition &base, const VisiblePosition &extent, bool userTriggered)
90 void SelectionController::moveTo(const Position &pos, EAffinity affinity, bool userTriggered)
95 void SelectionController::moveTo(const Range *r, EAffinity affinity, bool userTriggered)
101 void SelectionController::moveTo(const Position &base, const Position &extent, EAffinity affinity, bool userTriggered)
106 void SelectionController::setSelection(const VisibleSelection& s, bool closeTyping, bool clearTypingStyle, bool userTrigger (…)
    [all...]
SelectionController.h 42 class SelectionController : public Noncopyable {
47 SelectionController(Frame* = 0, bool isDragCaretController = false);
164 void caretBlinkTimerFired(Timer<SelectionController>*);
172 Timer<SelectionController> m_caretBlinkTimer;
189 inline void SelectionController::notifyAccessibilityForSelectionChange()
198 void showTree(const WebCore::SelectionController&);
199 void showTree(const WebCore::SelectionController*);
EditorCommand.cpp 325 frame->editor()->deleteWithDirection(SelectionController::BACKWARD, CharacterGranularity, false, true);
332 frame->editor()->deleteWithDirection(SelectionController::BACKWARD, CharacterGranularity, false, true);
338 frame->editor()->deleteWithDirection(SelectionController::FORWARD, CharacterGranularity, false, true);
344 frame->editor()->deleteWithDirection(SelectionController::BACKWARD, LineBoundary, true, false);
350 frame->editor()->deleteWithDirection(SelectionController::BACKWARD, ParagraphBoundary, true, false);
358 frame->editor()->deleteWithDirection(SelectionController::FORWARD, LineBoundary, true, false);
366 frame->editor()->deleteWithDirection(SelectionController::FORWARD, ParagraphBoundary, true, false);
374 SelectionController* selection = frame->selection();
387 frame->editor()->deleteWithDirection(SelectionController::BACKWARD, WordGranularity, true, false);
393 frame->editor()->deleteWithDirection(SelectionController::FORWARD, WordGranularity, true, false)
    [all...]
TypingCommand.cpp 41 #include "SelectionController.h"
433 SelectionController selection;
435 selection.modify(SelectionController::EXTEND, SelectionController::BACKWARD, granularity);
437 selection.modify(SelectionController::EXTEND, SelectionController::BACKWARD, CharacterGranularity);
463 selection.modify(SelectionController::EXTEND, SelectionController::BACKWARD, granularity);
527 SelectionController selection;
529 selection.modify(SelectionController::EXTEND, SelectionController::FORWARD, granularity)
    [all...]
Editor.cpp 176 SelectionController* selection = m_frame->selection();
187 SelectionController* selection = m_frame->selection();
227 bool Editor::deleteWithDirection(SelectionController::EDirection direction, TextGranularity granularity, bool killRing, bool isTypingAction)
244 case SelectionController::FORWARD:
245 case SelectionController::RIGHT:
248 case SelectionController::BACKWARD:
249 case SelectionController::LEFT:
    [all...]
Editor.h 34 #include "SelectionController.h"
135 bool deleteWithDirection(SelectionController::EDirection, TextGranularity, bool killRing, bool isTypingAction);
  /external/webkit/WebCore/editing/gtk/
SelectionControllerGtk.cpp 21 #include "SelectionController.h"
31 void SelectionController::notifyAccessibilityForSelectionChange()
  /external/webkit/WebCore/page/
DOMSelection.cpp 38 #include "SelectionController.h"
182 SelectionController* selection = m_frame->selection();
269 SelectionController::EAlteration alter;
271 alter = SelectionController::EXTEND;
273 alter = SelectionController::MOVE;
277 SelectionController::EDirection direction;
279 direction = SelectionController::FORWARD;
281 direction = SelectionController::BACKWARD;
283 direction = SelectionController::LEFT;
285 direction = SelectionController::RIGHT
    [all...]
DragController.h 48 class SelectionController;
103 bool dragIsMove(SelectionController*);
Frame.h 39 #include "SelectionController.h"
95 SelectionController* selection() const;
229 // === to be moved into SelectionController
261 SelectionController* dragCaretController() const;
328 mutable SelectionController m_selectionController;
Page.h 71 class SelectionController;
139 SelectionController* dragCaretController() const { return m_dragCaretController.get(); }
254 OwnPtr<SelectionController> m_dragCaretController;
EventHandler.cpp 66 #include "SelectionController.h"
    [all...]
FocusController.cpp 50 #include "SelectionController.h"
281 SelectionController* s = oldFocusedFrame->selection();
Frame.cpp 357 SelectionController* Frame::selection() const
377 SelectionController* Frame::dragCaretController() const
656 SelectionController* dragCaretController = m_page->dragCaretController();
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebFrameInternal.h 36 #import <WebCore/SelectionController.h>
140 - (DOMRange *)_rangeByAlteringCurrentSelection:(WebCore::SelectionController::EAlteration)alteration direction:(WebCore::SelectionController::EDirection)direction granularity:(WebCore::TextGranularity)granularity;
WebTextCompletionController.mm 176 DOMRange *wholeWord = [frame _rangeByAlteringCurrentSelection:SelectionController::EXTEND
177 direction:SelectionController::BACKWARD granularity:WordGranularity];
  /external/webkit/WebCore/editing/mac/
SelectionControllerMac.mm 27 #import "SelectionController.h"
36 void SelectionController::notifyAccessibilityForSelectionChange()
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 400 frame->editor()->deleteWithDirection(SelectionController::BACKWARD,
404 frame->editor()->deleteWithDirection(SelectionController::FORWARD,
  /external/webkit/WebCore/accessibility/
AccessibilityRenderObject.cpp 72 #include "SelectionController.h"
    [all...]
  /external/webkit/WebCore/svg/
SVGTextContentElement.cpp 40 #include "SelectionController.h"
468 SelectionController* controller = document()->frame()->selection();

Completed in 221 milliseconds

1 2