Home | History | Annotate | Download | only in ime

Lines Matching refs:composition

180   // Reset the composition status and create IME windows.
199 // Retrieve the result string and its attributes of the ongoing composition
201 ui::CompositionText composition;
202 if (imm32_manager_.GetResult(window_handle, lparam, &composition.text)) {
204 GetTextInputClient()->InsertText(composition.text);
206 // Fall though and try reading the composition string.
208 // GCS_COMPSTR, which means an ongoing composition has been finished
209 // by the start of another composition.
211 // Retrieve the composition string and its attributes of the ongoing
212 // composition and send it to a renderer process.
213 if (imm32_manager_.GetComposition(window_handle, lparam, &composition) &&
215 GetTextInputClient()->SetCompositionText(composition);
262 // Though above line should confirm the client's composition text by sending
264 // inconsistent states, we check the client's composition state again.