Lines Matching refs:textInputClient

188 on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClien…
199 | callback | (kbController: [KeyboardController](#keyboardcontroller), textInputClient: [TextInputC…
208 let textInputClient = textClient;
217 off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputCli…
228 | callback | (kbController: [KeyboardController](#keyboardcontroller), textInputClient: [TextInputC…
3824 inputMethodEngine.getInputMethodAbility().on('inputStart', (kbController, textInputClient) => {
3831 textInputClient.sendPrivateCommand(record).then(() => {
4162 textInputClient.getForward(length, (err: BusinessError, text: string) => {
4201 textInputClient.getForward(length).then((text: string) => {
4233 textInputClient.getBackward(length, (err: BusinessError, text: string) => {
4272 textInputClient.getBackward(length).then((text: string) => {
4304 textInputClient.deleteForward(length, (err: BusinessError, result: boolean) => {
4347 textInputClient.deleteForward(length).then((result: boolean) => {
4383 textInputClient.deleteBackward(length, (err: BusinessError, result: boolean) => {
4426 textInputClient.deleteBackward(length).then((result: boolean) => {
4461 textInputClient.sendKeyFunction(action, (err: BusinessError, result: boolean) => {
4504 textInputClient.sendKeyFunction(action).then((result: boolean) => {
4539 textInputClient.insertText('test', (err: BusinessError, result: boolean) => {
4581 textInputClient.insertText('test').then((result: boolean) => {
4615 textInputClient.getEditorAttribute((err: BusinessError, editorAttribute: inputMethodEngine.EditorAt…
4648 textInputClient.getEditorAttribute().then((editorAttribute: inputMethodEngine.EditorAttribute) => {