Home | History | Annotate | Download | only in ime

Lines Matching defs:text_input_client_

115         text_input_client_(NULL),
160 const bool text_input_client_changed = text_input_client_ != client;
161 text_input_client_ = client;
176 if (text_input_client_ != client)
182 return text_input_client_;
190 if (!text_input_client_)
192 text_input_client_->InsertChar(
199 if (text_input_client_) {
200 text_input_client_->InsertChar(event.key_code(),
211 if (!text_input_client_ || text_input_client_ != client)
224 if (!text_input_client_ || text_input_client_ != client)
261 return text_input_client_ ? text_input_client_->GetTextInputType()
266 return text_input_client_ ? text_input_client_->GetTextInputMode()
271 return text_input_client_ ? text_input_client_->CanComposeInline() : true;
303 if (!text_input_client_)
308 text_input_client_->OnCandidateWindowShown();
310 text_input_client_->OnCandidateWindowHidden();
323 if (!text_input_client_)
325 text_input_client_->SetCompositionText(composition_text);
329 if (!text_input_client_)
331 if (text_input_client_->GetTextInputType() == TEXT_INPUT_TYPE_NONE) {
336 text_input_client_->InsertChar(text[i], 0);
339 text_input_client_->InsertText(text);
344 return text_input_client_ &&
345 text_input_client_ == text_input_client &&
354 TextInputClient* text_input_client_;