Home
last modified time | relevance | path

Searched refs:userDescription (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/win/
DWebGrammarDetail.cpp35 …marDetail::create(int location, int length, ImmutableArray* guesses, const String& userDescription) in create() argument
37 return adoptRef(new WebGrammarDetail(location, length, guesses, userDescription)); in create()
45 …:WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription) in WebGrammarDetail() argument
55 m_grammarDetail.userDescription = userDescription; in WebGrammarDetail()
DWebGrammarDetail.h41 …arDetail> create(int location, int length, ImmutableArray* guesses, const String& userDescription);
47 const String& userDescription() const { return m_grammarDetail.userDescription; } in userDescription() function
52 …WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription);
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
DWKGrammarDetail.cpp41 …ef WKGrammarDetailCreate(int location, int length, WKArrayRef guesses, WKStringRef userDescription) in WKGrammarDetailCreate() argument
43 …detail = WebGrammarDetail::create(location, length, toImpl(guesses), toWTFString(userDescription)); in WKGrammarDetailCreate()
64 return toCopiedAPI(toImpl(grammarDetailRef)->userDescription()); in WKGrammarDetailCopyUserDescription()
DWKGrammarDetail.h36 …f WKGrammarDetailCreate(int location, int length, WKArrayRef guesses, WKStringRef userDescription);
/external/webkit/Source/WebCore/platform/text/
DTextCheckerClient.h45 String userDescription; member
/external/webkit/Source/WebCore/editing/
DTextCheckingHelper.cpp239 outGrammarDetail.userDescription = ""; in findFirstMisspellingOrBadGrammar()
380 …t()->markers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription); in findFirstGrammarDetail()
410 outGrammarDetail.userDescription = ""; in findFirstBadGrammar()
DEditor.cpp1829 …arkers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, grammarDetail.userDescription); in advanceToNextMisspelling()
2206 …t()->markers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription); in markAllMisspellingsAndBadGrammarInRanges()
/external/webkit/Source/WebKit/win/WebCoreSupport/
DWebEditorClient.cpp693 if (FAILED(detailObj->userDescription(&userDesc))) in checkGrammarOfString()
695 detail.userDescription = String(userDesc, SysStringLen(userDesc)); in checkGrammarOfString()
724 BString userDescriptionBSTR(detail.userDescription); in updateSpellingUIWithGrammarString()
/external/webkit/Source/WebKit/win/Interfaces/
DIWebEditingDelegate.idl74 HRESULT userDescription([out, retval] BSTR* value);
181 …ring([in] BSTR string, [in] int location, [in] int length, [in] BSTR userDescription, [in] BSTR* g…
/external/webkit/Tools/DumpRenderTree/win/
DEditingDelegate.h144 /* [in] */ BSTR userDescription, in updateSpellingUIWithGrammarString() argument
/external/webkit/Source/WebKit2/Shared/
DWebCoreArgumentCoders.h439 encoder->encode(detail.userDescription);
450 if (!decoder->decode(detail.userDescription))
/external/webkit/Source/WebKit2/UIProcess/mac/
DTextCheckerMac.mm267 detail.userDescription = [incomingDetail objectForKey:NSGrammarUserDescription];
357 NSString *grammarUserDescription = grammarDetail.userDescription;
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebEditorClient.mm771 grammarDetail.userDescription = [detail objectForKey:NSGrammarUserDescription];
812 detail.userDescription = [incomingDetail objectForKey:NSGrammarUserDescription];
880 NSString* grammarUserDescription = grammarDetail.userDescription;
/external/webkit/Source/WebKit2/
DChangeLog2247 (WebKit::WebGrammarDetail::userDescription):
/external/webkit/Source/WebKit/win/
DChangeLog-2009-06-1614367 * Interfaces/IWebEditingDelegate.idl: Add userDescription parameter.