OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:userDescription
(Results
1 - 13
of
13
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/win/
WebGrammarDetail.h
41
static PassRefPtr<WebGrammarDetail> create(int location, int length, ImmutableArray* guesses, const String&
userDescription
);
47
const String&
userDescription
() const { return m_grammarDetail.
userDescription
; }
52
WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String&
userDescription
);
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
)
55
m_grammarDetail.
userDescription
=
userDescription
;
/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
));
64
return toCopiedAPI(toImpl(grammarDetailRef)->
userDescription
());
WKGrammarDetail.h
36
WK_EXPORT WKGrammarDetailRef WKGrammarDetailCreate(int location, int length, WKArrayRef guesses, WKStringRef
userDescription
);
/external/webkit/Source/WebCore/platform/text/
TextCheckerClient.h
45
String
userDescription
;
/external/webkit/Source/WebKit/win/Interfaces/
IWebEditingDelegate.idl
74
HRESULT
userDescription
([out, retval] BSTR* value);
181
HRESULT updateSpellingUIWithGrammarString([in] BSTR string, [in] int location, [in] int length, [in] BSTR
userDescription
, [in] BSTR* guesses, [in] int guessesCount);
/external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.h
144
/* [in] */ BSTR
userDescription
,
/external/webkit/Source/WebCore/editing/
TextCheckingHelper.cpp
239
outGrammarDetail.
userDescription
= "";
380
badGrammarRange->startContainer(ec)->document()->markers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->
userDescription
);
410
outGrammarDetail.
userDescription
= "";
Editor.cpp
[
all
...]
/external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.cpp
693
if (FAILED(detailObj->
userDescription
(&userDesc)))
695
detail.
userDescription
= String(userDesc, SysStringLen(userDesc));
724
BString userDescriptionBSTR(detail.
userDescription
);
/external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm
267
detail.
userDescription
= [incomingDetail objectForKey:NSGrammarUserDescription];
357
NSString *grammarUserDescription = grammarDetail.
userDescription
;
/external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h
439
encoder->encode(detail.
userDescription
);
450
if (!decoder->decode(detail.
userDescription
))
/external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm
771
grammarDetail.
userDescription
= [detail objectForKey:NSGrammarUserDescription];
812
detail.
userDescription
= [incomingDetail objectForKey:NSGrammarUserDescription];
[
all
...]
Completed in 731 milliseconds