/external/webkit/Source/WebKit/gtk/tests/ |
D | testatk.c | 1107 gchar* selectedText = atk_text_get_selection(paragraph1, 0, &startOffset, &endOffset); in testWebkitAtkTextSelections() local 1110 g_assert_cmpstr(selectedText, ==, 0); in testWebkitAtkTextSelections() 1111 g_free (selectedText); in testWebkitAtkTextSelections() 1125 selectedText = atk_text_get_selection(paragraph1, 0, &startOffset, &endOffset); in testWebkitAtkTextSelections() 1128 g_assert_cmpstr(selectedText, ==, "agraph with plain te"); in testWebkitAtkTextSelections() 1129 g_free (selectedText); in testWebkitAtkTextSelections() 1138 selectedText = atk_text_get_selection(paragraph1, 0, &startOffset, &endOffset); in testWebkitAtkTextSelections() 1143 g_assert_cmpstr(selectedText, ==, 0); in testWebkitAtkTextSelections() 1144 g_free (selectedText); in testWebkitAtkTextSelections() 1154 selectedText = atk_text_get_selection(paragraph2, 0, &startOffset, &endOffset); in testWebkitAtkTextSelections() [all …]
|
/external/webkit/Source/WebKit/chromium/src/ |
D | ContextMenuClientImpl.cpp | 106 String misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace(); in selectMisspelledWord() 127 misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace(); in selectMisspelledWord() 221 data.selectedText = text; in getCustomMenuFromDefaultItems() 253 data.selectedText = selectedFrame->editor()->selectedText().stripWhiteSpace(); in getCustomMenuFromDefaultItems()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebview.h | 46 Q_PROPERTY(QString selectedText READ selectedText) 79 QString selectedText() const;
|
D | qwebpage.h | 74 Q_PROPERTY(QString selectedText READ selectedText) 275 QString selectedText() const;
|
D | qwebview.cpp | 597 QString QWebView::selectedText() const in selectedText() function in QWebView 600 return d->page->selectedText(); in selectedText()
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
D | WebContextMenuClient.cpp | 73 String searchString = frame->editor()->selectedText(); in searchWithGoogle()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebContextMenuData.h | 106 WebString selectedText; member
|
/external/chromium/webkit/glue/ |
D | context_menu.cc | 34 selection_text(data.selectedText), in ContextMenuParams()
|
/external/webkit/Source/WebCore/platform/wx/ |
D | PasteboardWx.cpp | 56 wxTheClipboard->SetData( new wxTextDataObject(frame->editor()->selectedText()) ); in writeSelection()
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebContextMenuClient.cpp | 113 String searchString = frame->editor()->selectedText(); in searchWithGoogle()
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | PasteboardGtk.cpp | 70 dataObject->setText(frame->editor()->selectedText()); in writeSelection()
|
D | ClipboardGtk.cpp | 312 m_dataObject->setText(frame->editor()->selectedText()); in writeRange()
|
/external/webkit/Source/WebCore/platform/haiku/ |
D | PasteboardHaiku.cpp | 97 BString string(frame->selectedText()); in writeSelection()
|
/external/webkit/Source/WebCore/platform/qt/ |
D | PasteboardQt.cpp | 63 QString text = frame->editor()->selectedText(); in writeSelection()
|
D | ClipboardQt.cpp | 332 QString text = frame->editor()->selectedText(); in writeRange()
|
/external/webkit/Source/WebCore/platform/chromium/ |
D | PasteboardChromium.cpp | 88 String plainText = frame->editor()->selectedText(); in writeSelection()
|
D | ClipboardChromium.cpp | 317 String str = frame->editor()->selectedText(); in writeRange()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | FontQt.cpp | 355 …QString selectedText = fromRawDataWithoutRef(sanitized, from, qMin(to - from, wholeText.length() -… in selectionRectForSimpleText() local 358 int width = QFontMetrics(font()).width(selectedText, -1, Qt::TextBypassShaping); in selectionRectForSimpleText()
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/ |
D | WebContextMenuClientMac.mm | 78 …String = selectionFrame->displayStringModifiedByEncoding(selectionFrame->editor()->selectedText());
|
/external/webkit/Source/WebCore/platform/wince/ |
D | PasteboardWinCE.cpp | 127 String str = frame->selectedText(); in writeSelection()
|
/external/webkit/Source/WebKit/qt/tests/qwebpage/ |
D | tst_qwebpage.cpp | 958 QString selectedText() { in selectedText() function in CursorTrackedPage 988 QCOMPARE(page->selectedText().trimmed(), QString::fromLatin1("The quick brown fox")); in cursorMovements() 1222 QCOMPARE(page->selectedText().trimmed(), QString::fromLatin1("The quick brown fox")); in textSelection() 2445 webPage.selectedText(); in crashTests_LazyInitializationOfMainFrame() 2673 QVERIFY(!m_page->selectedText().isEmpty()); in findText() 2676 QVERIFY(m_page->selectedText().isEmpty()); in findText() 2683 QCOMPARE(m_page->selectedText(), subString); in findText() 2686 QVERIFY(m_page->selectedText().isEmpty()); in findText() 2800 QVERIFY(!view.page()->selectedText().isEmpty()); in contextMenuCopy()
|
/external/webkit/Source/WebCore/platform/win/ |
D | PasteboardWin.cpp | 134 String str = frame->editor()->selectedText(); in writeSelection()
|
/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityRenderObject.h | 186 virtual String selectedText() const;
|
/external/webkit/Source/WebCore/page/ |
D | ContextMenuController.cpp | 279 ASSERT(frame->editor()->selectedText().length()); in contextMenuItemSelected() 768 … String selectedString = frame->displayStringModifiedByEncoding(frame->editor()->selectedText()); in populate() 894 … String selectedString = frame->displayStringModifiedByEncoding(frame->editor()->selectedText()); in populate()
|
/external/webkit/Source/WebCore/editing/ |
D | Editor.cpp | 1177 Pasteboard::generalPasteboard()->writePlainText(selectedText()); in cut() 1195 Pasteboard::generalPasteboard()->writePlainText(selectedText()); in copy() 1652 String text = selectedText(); in ignoreSpelling() 1668 String text = selectedText(); in learnSpelling() 1845 String selectedString = selectedText(); in isSelectionMisspelled() 1894 String selectedString = selectedText(); in guessesForMisspelledSelection() 2746 String Editor::selectedText() const in selectedText() function in WebCore::Editor
|