HomeSort by relevance Sort by last modified time
    Searched full:guesses (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/webkit/Source/WebKit2/UIProcess/win/
WebGrammarDetail.cpp 35 PassRefPtr<WebGrammarDetail> WebGrammarDetail::create(int location, int length, ImmutableArray* guesses, const String& userDescription)
37 return adoptRef(new WebGrammarDetail(location, length, guesses, userDescription));
45 WebGrammarDetail::WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription)
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[i])
    [all...]
WebGrammarDetail.h 41 static PassRefPtr<WebGrammarDetail> create(int location, int length, ImmutableArray* guesses, const String& userDescription);
46 PassRefPtr<ImmutableArray> guesses() const;
52 WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription);
TextCheckerWin.cpp 125 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
127 WebTextChecker::shared()->client().guessesForWord(spellDocumentTag, word, guesses);
WebTextCheckerClient.h 54 void guessesForWord(uint64_t tag, const String& word, Vector<String>& guesses);
WebTextCheckerClient.cpp 148 void WebTextCheckerClient::guessesForWord(uint64_t tag, const String& word, Vector<String>& guesses)
156 guesses.append(wkGuesses->at<WebString>(i)->string());
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKGrammarDetail.cpp 41 WKGrammarDetailRef WKGrammarDetailCreate(int location, int length, WKArrayRef guesses, WKStringRef userDescription)
43 RefPtr<WebGrammarDetail> detail = WebGrammarDetail::create(location, length, toImpl(guesses), toWTFString(userDescription));
59 return toAPI(toImpl(grammarDetailRef)->guesses().leakRef());
WKGrammarDetail.h 36 WK_EXPORT WKGrammarDetailRef WKGrammarDetailCreate(int location, int length, WKArrayRef guesses, WKStringRef userDescription);
  /external/webkit/Source/WebCore/manual-tests/autocorrection/
dismiss-multiple-guesses.html 33 <title>Dismiss Multiple Guesses Test</title>
36 <div><p>This test verifies that pressing ESC key diusmisses multiple guesses panel correctly</p>
select-from-multiple-guesses.html 33 <title>Select From Multiple Guesses Test</title>
36 <div><p>This test verifies that multiple guesses on mispelled word is working correctly</p>
  /external/webkit/Source/WebCore/platform/text/
TextCheckerClient.h 44 Vector<String> guesses; member in struct:WebCore::GrammarDetail
73 virtual void getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) = 0;
  /external/android-clat/
icmp.h 24 // Guesses the number of hops a received packet has traversed based on its TTL.
  /external/webkit/Source/WebKit/win/Interfaces/
IWebEditingDelegate.idl 75 HRESULT guesses([out, retval] IEnumSpellingGuesses** guesses);
181 HRESULT updateSpellingUIWithGrammarString([in] BSTR string, [in] int location, [in] int length, [in] BSTR userDescription, [in] BSTR* guesses, [in] int guessesCount);
185 HRESULT guessesForWord([in] BSTR word, [out, retval] IEnumSpellingGuesses** guesses);
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 268 NSArray *guesses = [incomingDetail objectForKey:NSGrammarCorrections];
269 for (NSString *guess in guesses)
270 detail.guesses.append(String(guess));
351 for (size_t i = 0; i < grammarDetail.guesses.size(); ++i) {
352 NSString *guess = grammarDetail.guesses[i];
363 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
379 guesses.append(guess);
  /external/webkit/Source/WebCore/editing/
TextCheckingHelper.cpp 238 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.append(detail->guesses[k])
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
TextCheckerClientEnchant.cpp 140 void TextCheckerClientEnchant::getGuessesForWord(const String& word, const String& context, WTF::Vector<String>& guesses)
143 guesses.clear();
153 guesses.append(String::fromUTF8(suggestions[i]));
TextCheckerClientEnchant.h 51 virtual void getGuessesForWord(const WTF::String& word, const WTF::String& context, WTF::Vector<WTF::String>& guesses);
  /external/chromium/chrome/browser/
spellchecker_mac.mm 250 NSArray* guesses =
255 for (int i = 0; i < static_cast<int>([guesses count]); i++) {
258 [guesses objectAtIndex:i]));
  /external/webkit/Source/WebKit2/UIProcess/
TextChecker.h 73 static void getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses);
  /external/webkit/Source/WebKit2/UIProcess/gtk/
TextCheckerGtk.cpp 103 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
  /external/webkit/Source/WebKit2/UIProcess/qt/
TextCheckerQt.cpp 104 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 772 NSArray *guesses = [detail objectForKey:NSGrammarCorrections];
773 for (NSString *guess in guesses)
774 grammarDetail.guesses.append(String(guess));
813 NSArray *guesses = [incomingDetail objectForKey:NSGrammarCorrections];
814 for (NSString *guess in guesses)
815 detail.guesses.append(String(guess));
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.h 145 /* [in] */ BSTR *guesses,
159 /* [retval][out] */ IEnumSpellingGuesses **guesses) { return E_NOTIMPL; }
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 699 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)
763 guesses.clear();
778 guesses.append(String(guess, SysStringLen(guess)));
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 115 virtual void getGuessesForWord(const String&, const String& context, WTF::Vector<String>& guesses);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 114 virtual void getGuessesForWord(const String& word, const String& context, WTF::Vector<String>& guesses);

Completed in 535 milliseconds

1 2 3 4 5 6