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

  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 103 static String selectMisspelledWord(const ContextMenu* defaultMenu, Frame* selectedFrame)
106 String misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace();
117 HitTestResult hitTestResult = selectedFrame->eventHandler()->
118 hitTestResultAtPoint(selectedFrame->page()->contextMenuController()->hitTestResult().point(), true);
126 WebFrameImpl::selectWordAroundPosition(selectedFrame, pos);
127 misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace();
133 selectedFrame->selection()->setSelection(VisibleSelection(pos));
136 selectedFrame->selection()->setSelection(VisibleSelection(pos));
153 Frame* selectedFrame = r.innerNonSharedNode()->document()->frame();
156 data.mousePosition = selectedFrame->view()->contentsToWindow(r.point())
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 97 Frame* selectedFrame = frameWithSelection(m_webPage->corePage());
103 if (selectedFrame)
104 selectedFrame->selection()->clear();
127 if (!(options & FindOptionsShowFindIndicator) || !updateFindIndicator(selectedFrame, shouldShowOverlay)) {
161 bool FindController::updateFindIndicator(Frame* selectedFrame, bool isShowingOverlay)
163 if (!selectedFrame)
166 IntRect selectionRect = enclosingIntRect(selectedFrame->selection()->bounds());
173 IntRect selectionRectInWindowCoordinates = selectedFrame->view()->contentsToWindow(selectionRect);
176 selectedFrame->selection()->getClippedVisibleTextRectangles(textRects);
186 paintRect.move(selectedFrame->view()->frameRect().x(), selectedFrame->view()->frameRect().y())
    [all...]
FindController.h 66 bool updateFindIndicator(WebCore::Frame* selectedFrame, bool isShowingOverlay);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLFunctionTraceViewer.java 316 int selectedFrame = mFrameSelectionScale.getSelection();
317 mFrameSelectionSpinner.setSelection(selectedFrame);
318 selectFrame(selectedFrame);
334 int selectedFrame = mFrameSelectionSpinner.getSelection();
335 mFrameSelectionScale.setSelection(selectedFrame);
336 selectFrame(selectedFrame);
350 private void selectFrame(int selectedFrame) {
351 mFrameSelectionScale.setSelection(selectedFrame);
352 mFrameSelectionSpinner.setSelection(selectedFrame);
356 GLFrame f = mTrace.getFrame(selectedFrame - 1)
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebView.h 301 @method selectedFrame
307 - (WebFrame *)selectedFrame;
WebView.mm     [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 298 NSView <WebDocumentView> *view = [[[m_webView selectedFrame] frameView] documentView];
390 NSArray *WebEditorClient::pasteboardTypesForSelection(Frame* selectedFrame)
392 WebFrame* frame = kit(selectedFrame);
    [all...]
  /external/v8/src/
debug-debugger.js 980 ExecutionState.prototype.selectedFrame = function() {
    [all...]

Completed in 225 milliseconds