/external/chromium_org/win8/metro_driver/ime/ |
input_scope.cc | 33 void Initialize(const std::vector<InputScope>& input_scopes) { 34 input_scopes_ = input_scopes; 39 STDMETHOD(GetInputScopes)(InputScope** input_scopes, UINT* count) OVERRIDE { 40 if (!count || !input_scopes) 42 *input_scopes = static_cast<InputScope*>( 44 if (!input_scopes) { 48 std::copy(input_scopes_.begin(), input_scopes_.end(), *input_scopes); 74 CreteInputScope(const std::vector<InputScope>& input_scopes) { 83 object->Initialize(input_scopes);
|
input_scope.h | 16 // InputScope enumeration passed as |input_scopes|. 18 CreteInputScope(const std::vector<InputScope>& input_scopes);
|
text_service.h | 31 // Updates document type with |input_scopes| and caret/composition position 32 // with |character_bounds|. An empty |input_scopes| indicates that IMEs 33 // should be disabled until non-empty |input_scopes| is specified. 34 // Note: |input_scopes| is defined as std::vector<int32> here rather than 39 const std::vector<int32>& input_scopes,
|
text_service.cc | 77 // according to the given |input_scopes|. 166 bool IsPasswordField(const std::vector<InputScope>& input_scopes) { 167 return std::find(input_scopes.begin(), input_scopes.end(), IS_PASSWORD) != 168 input_scopes.end(); 229 const std::vector<InputScope>& input_scopes, 239 // Note: In our IPC protocol, an empty |input_scopes| is used to indicate 242 const bool use_null_text_store = input_scopes.empty(); 246 text_store = TextStore::Create(window_handle, input_scopes, delegate); 266 // If null-TextStore is used or |input_scopes| looks like a password field 356 OnDocumentTypeChanged(input_scopes); variable [all...] |
text_store.h | 221 const std::vector<InputScope>& input_scopes,
|
text_store.cc | 42 const std::vector<InputScope>& input_scopes, 61 CreteInputScope(input_scopes);
|
/external/chromium_org/ui/base/ime/win/ |
tsf_input_scope.cc | 18 void AppendNonTrivialInputScope(std::vector<InputScope>* input_scopes, 20 DCHECK(input_scopes); 25 if (std::find(input_scopes->begin(), input_scopes->end(), input_scope) != 26 input_scopes->end()) 29 input_scopes->push_back(input_scope); 34 explicit TSFInputScope(const std::vector<InputScope>& input_scopes) 35 : input_scopes_(input_scopes), 65 STDMETHOD(GetInputScopes)(InputScope** input_scopes, UINT* count) OVERRIDE { 66 if (!count || !input_scopes) 184 std::vector<InputScope> input_scopes; local [all...] |
tsf_input_scope_unittest.cc | 108 std::vector<InputScope> input_scopes = tsf_inputscope::GetInputScopes( local 111 EXPECT_EQ(test_case.expected_size, input_scopes.size()); 113 EXPECT_EQ(test_case.expected_input_scopes[i], input_scopes[i]);
|
/external/chromium_org/ui/base/ime/ |
remote_input_method_delegate_win.h | 27 // Note that an empty |input_scopes| represents that TextInputType is 29 // Caveats: |input_scopes| is defined as std::vector<int32> rather than 34 const std::vector<int32>& input_scopes,
|
remote_input_method_win.cc | 75 const std::vector<InputScope>& input_scopes = local 77 result.reserve(input_scopes.size()); 78 for (size_t i = 0; i < input_scopes.size(); ++i) 79 result.push_back(static_cast<int32>(input_scopes[i]));
|
remote_input_method_win_unittest.cc | 159 const std::vector<int32>& input_scopes() const { function in class:ui::__anon14773::MockRemoteInputMethodDelegateWin 178 const std::vector<int32>& input_scopes, 181 input_scopes_ = input_scopes; 332 ASSERT_EQ(1, mock_remote_delegate.input_scopes().size()); 333 EXPECT_EQ(IS_URL, mock_remote_delegate.input_scopes()[0]); 340 EXPECT_TRUE(mock_remote_delegate.input_scopes().empty()); 363 ASSERT_EQ(1, mock_remote_delegate.input_scopes().size()); 364 EXPECT_EQ(IS_URL, mock_remote_delegate.input_scopes()[0]); 371 EXPECT_TRUE(mock_remote_delegate.input_scopes().empty()); 446 ASSERT_EQ(1, mock_remote_delegate.input_scopes().size()) [all...] |
/external/chromium_org/ui/aura/ |
remote_root_window_host_win.h | 236 const std::vector<int32>& input_scopes,
|
remote_root_window_host_win.cc | 480 const std::vector<int32>& input_scopes, 493 input_scopes, character_bounds));
|
/external/chromium_org/win8/metro_driver/ |
chrome_app_view_ash.h | 103 const std::vector<int32>& input_scopes,
|
chrome_app_view_ash.cc | 264 const std::vector<int32>& input_scopes, 270 input_scopes, 848 const std::vector<int32>& input_scopes, 852 text_service_->OnDocumentChanged(input_scopes, character_bounds); [all...] |