Home
last modified time | relevance | path

Searched refs:TextInputController (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Tools/DumpRenderTree/chromium/
DTextInputController.cpp47 TestShell* TextInputController::testShell = 0;
49 TextInputController::TextInputController(TestShell* shell) in TextInputController() function in TextInputController
56 bindMethod("attributedSubstringFromRange", &TextInputController::attributedSubstringFromRange); in TextInputController()
57 bindMethod("characterIndexForPoint", &TextInputController::characterIndexForPoint); in TextInputController()
58 bindMethod("conversationIdentifier", &TextInputController::conversationIdentifier); in TextInputController()
59 bindMethod("doCommand", &TextInputController::doCommand); in TextInputController()
60 bindMethod("firstRectForCharacterRange", &TextInputController::firstRectForCharacterRange); in TextInputController()
61 bindMethod("hasMarkedText", &TextInputController::hasMarkedText); in TextInputController()
62 bindMethod("insertText", &TextInputController::insertText); in TextInputController()
63 bindMethod("makeAttributedString", &TextInputController::makeAttributedString); in TextInputController()
[all …]
DTextInputController.h46 class TextInputController : public CppBoundClass {
48 TextInputController(TestShell*);
DTestShell.h198 OwnPtr<TextInputController> m_textInputController;
DTestShell.cpp117 m_textInputController.set(new TextInputController(this)); in TestShell()
/external/webkit/Tools/DumpRenderTree/qt/
DTextInputControllerQt.cpp37 TextInputController::TextInputController(QWebPage* parent) in TextInputController() function in TextInputController
42 void TextInputController::doCommand(const QString& command) in doCommand()
133 void TextInputController::setMarkedText(const QString& string, int start, int end) in setMarkedText()
142 void TextInputController::insertText(const QString& string) in insertText()
150 QVariantList TextInputController::selectedRange() in selectedRange()
155 QVariantList TextInputController::firstRectForCharacterRange(int location, int length) in firstRectForCharacterRange()
DTextInputControllerQt.h38 class TextInputController : public QObject {
41 TextInputController(QWebPage* parent);
DDumpRenderTreeQt.h61 class TextInputController; variable
93 TextInputController *textInputController() const { return m_textInputController; } in textInputController()
154 TextInputController *m_textInputController;
DDumpRenderTreeQt.cpp467 m_textInputController = new TextInputController(m_page); in DumpRenderTree()
/external/webkit/Tools/DumpRenderTree/
DDumpRenderTree.gypi38 'chromium/TextInputController.cpp',
39 'chromium/TextInputController.h',
/external/webkit/Tools/DumpRenderTree/mac/
DTextInputController.h35 @interface TextInputController : NSObject
DTextInputController.m30 #import "TextInputController.h"
43 @interface TextInputController (DumpRenderTreeInputMethodHandler) interface in DumpRenderTreeInputMethodHandler
59 TextInputController *tic = [obj valueForKey:@"textInputController"];
65 @implementation NSMutableAttributedString (TextInputController) category
155 @implementation TextInputController implementation
DFrameLoadDelegate.mm43 #import "TextInputController.h"
297 TextInputController *tic = [[TextInputController alloc] initWithWebView:webView];
/external/webkit/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/
Dproject.pbxproj110 …9B024900114369 /* TextInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B3A0C9…
111 …9B02C400114369 /* TextInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B480C9…
288TextInputController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcec…
289TextInputController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcec…
455 BCA18B3A0C9B024900114369 /* TextInputController.h */,
456 BCA18B480C9B02C400114369 /* TextInputController.m */,
645 BCA18B3C0C9B024900114369 /* TextInputController.h in Headers */,
837 BCA18B490C9B02C400114369 /* TextInputController.m in Sources */,
/external/webkit/Tools/
DGNUmakefile.am89 Tools/DumpRenderTree/gtk/TextInputController.h \
90 Tools/DumpRenderTree/gtk/TextInputController.cpp \
DChangeLog-2009-06-162091 * DumpRenderTree/mac/TextInputController.m:
2097 * DumpRenderTree/mac/TextInputController.m:
2106 * DumpRenderTree/mac/TextInputController.m:
2107 (-[TextInputController characterIndexForPointX:Y:]):
12444 (TextInputController::doCommand):
12475 (TextInputController::doCommand):
12487 (TextInputController::TextInputController):
12488 (TextInputController::doCommand):
14476 * DumpRenderTree/TextInputController.h: Removed.
14477 * DumpRenderTree/TextInputController.m: Removed.
[all …]
DChangeLog-2011-02-161061 [GTK] DRT's TextInputController is unimplemented on GTK
1064 Initial implementation of TextInputController for GTK port.
1068 * DumpRenderTree/gtk/TextInputController.cpp: Added.
1076 * DumpRenderTree/gtk/TextInputController.h: Added.
5457 TextInputController to call corresponding methods of WebKit::WebView
5465 * DumpRenderTree/chromium/TextInputController.cpp:
5466 (TextInputController::insertText):
5467 (TextInputController::setMarkedText):
5468 (TextInputController::unmarkText):
13179 * DumpRenderTree/chromium/TextInputController.cpp:
[all …]
DChangeLog-2010-05-243957 (TextInputController::setMarkedText):
3958 (TextInputController::insertText):
3959 (TextInputController::selectedRange):
3960 (TextInputController::firstRectForCharacterRange):
6244 * DumpRenderTree/chromium/TextInputController.cpp:
7664 * DumpRenderTree/chromium/TextInputController.cpp:
7665 (TextInputController::markedRange):
7666 (TextInputController::selectedRange):
13236 [DRT/Chromium] Add PlainTextController and TextInputController
13239 Add PlainTextController and TextInputController classes, which are going
[all …]
/external/webkit/Source/WebKit/gtk/
DNEWS121 Bug 52997 - [GTK] DRT's TextInputController is unimplemented on GTK (Carlos Garcia Campos)
DChangeLog1179 [GTK] DRT's TextInputController is unimplemented on GTK
1187 TextInputController.
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-162741 TextInputController and chromium browser.
8068 [chromium] Implement TextInputController::firstRectForCharacterRange
8071 Implemented TextInputController::firstRectForCharacterRange for chromium platform.
/external/webkit/Source/WebKit/mac/
DChangeLog5873 …ew/WebFramePrivate.h: Added [WebFrame hasSpellingMarker:length:] so TextInputController can use it.