Searched defs:guesses (Results 1 - 21 of 21) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebGrammarDetail.cpp35 PassRefPtr<WebGrammarDetail> WebGrammarDetail::create(int location, int length, ImmutableArray* guesses, const String& userDescription) argument
37 return adoptRef(new WebGrammarDetail(location, length, guesses, userDescription));
45 WebGrammarDetail::WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription) argument
50 size_t numGuesses = guesses->size();
51 m_grammarDetail.guesses.reserveCapacity(numGuesses);
53 m_grammarDetail.guesses.uncheckedAppend(guesses->at<WebString>(i)->string());
58 PassRefPtr<ImmutableArray> WebGrammarDetail::guesses() const function in class:WebKit::WebGrammarDetail
60 size_t numGuesses = m_grammarDetail.guesses.size();
63 wkGuesses[i] = WebString::create(m_grammarDetail.guesses[
[all...]
H A DTextCheckerWin.cpp125 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses) argument
127 WebTextChecker::shared()->client().guessesForWord(spellDocumentTag, word, guesses);
H A DWebTextCheckerClient.cpp148 void WebTextCheckerClient::guessesForWord(uint64_t tag, const String& word, Vector<String>& guesses) argument
156 guesses.append(wkGuesses->at<WebString>(i)->string());
/external/webkit/Source/WebCore/platform/text/
H A DTextCheckerClient.h44 Vector<String> guesses; member in struct:WebCore::GrammarDetail
73 virtual void getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) = 0;
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKGrammarDetail.cpp41 WKGrammarDetailRef WKGrammarDetailCreate(int location, int length, WKArrayRef guesses, WKStringRef userDescription) argument
43 RefPtr<WebGrammarDetail> detail = WebGrammarDetail::create(location, length, toImpl(guesses), toWTFString(userDescription));
59 return toAPI(toImpl(grammarDetailRef)->guesses().leakRef());
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DTextCheckerGtk.cpp103 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses) argument
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DTextCheckerQt.cpp104 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses) argument
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.h145 /* [in] */ BSTR *guesses,
159 /* [retval][out] */ IEnumSpellingGuesses **guesses) { return E_NOTIMPL; }
140 updateSpellingUIWithGrammarString( BSTR string, int location, int length, BSTR userDescription, BSTR *guesses, int guessesCount) argument
157 guessesForWord( BSTR word, IEnumSpellingGuesses **guesses) argument
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DTextCheckerClientEnchant.cpp140 void TextCheckerClientEnchant::getGuessesForWord(const String& word, const String& context, WTF::Vector<String>& guesses) argument
143 guesses.clear();
153 guesses.append(String::fromUTF8(suggestions[i]));
/external/webkit/Source/WebCore/page/
H A DContextMenuController.cpp840 Vector<String> guesses = frame->editor()->guessesForMisspelledOrUngrammaticalSelection(misspelling, badGrammar); local
842 size_t size = guesses.size();
852 const String &guess = guesses[i];
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.cpp468 void EditorClientHaiku::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.cpp238 outGrammarDetail.guesses.clear();
409 outGrammarDetail.guesses.clear();
513 Vector<String> guesses; local
519 return guesses;
524 return guesses;
535 m_client->textChecker()->getGuessesForWord(misspelledWord, String(), guesses);
538 return guesses;
543 return guesses;
554 for (unsigned k = 0; k < detail->guesses.size(); k++)
555 guesses
[all...]
H A DEditor.cpp1883 Vector<String> guesses; local
1884 // Ignore the result of isUngrammatical; we just want the guesses, whether or not there are any
1885 TextCheckingHelper(client(), frame()->selection()->toNormalizedRange()).isUngrammatical(guesses);
1886 return guesses;
1897 Vector<String> guesses; local
1899 textChecker()->getGuessesForWord(selectedString, String(), guesses);
1900 return guesses;
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DEditorClientEfl.cpp495 void EditorClientEfl::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.cpp630 void EditorClientQt::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp494 void EditorClientWinCE::getGuessesForWord(const String& word, const String& context, WTF::Vector<String>& guesses) argument
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp543 void EditorClientWx::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp438 void WebEditorClient::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
440 m_page->sendSync(Messages::WebPageProxy::GetGuessesForWord(word, context), Messages::WebPageProxy::GetGuessesForWord::Reply(guesses));
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp937 WTF::Vector<String>& guesses)
935 getGuessesForWord(const String& word, const String& context, WTF::Vector<String>& guesses) argument
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebEditorClient.cpp699 if (FAILED(detailObj->guesses(&enumGuessesObj)))
705 detail.guesses.append(String(guess, SysStringLen(guess)));
720 for (unsigned i = 0; i < detail.guesses.size(); i++) {
721 BString guess(detail.guesses[i]);
761 void WebEditorClient::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
763 guesses.clear();
778 guesses.append(String(guess, SysStringLen(guess)));
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2490 void WebPageProxy::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
2492 TextChecker::getGuessesForWord(spellDocumentTag(), word, context, guesses); local

Completed in 1830 milliseconds