HomeSort by relevance Sort by last modified time
    Searched defs:input_scopes (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/ui/base/ime/win/
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]);
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...]
  /external/chromium_org/ui/base/ime/
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 186 const std::vector<int32>& input_scopes() const { function in class:ui::__anon20526::MockRemoteInputMethodDelegateWin
205 const std::vector<int32>& input_scopes,
208 input_scopes_ = input_scopes;
374 ASSERT_EQ(1, mock_remote_delegate.input_scopes().size());
375 EXPECT_EQ(IS_URL, mock_remote_delegate.input_scopes()[0]);
382 EXPECT_TRUE(mock_remote_delegate.input_scopes().empty());
405 ASSERT_EQ(1, mock_remote_delegate.input_scopes().size());
406 EXPECT_EQ(IS_URL, mock_remote_delegate.input_scopes()[0]);
413 EXPECT_TRUE(mock_remote_delegate.input_scopes().empty());
520 ASSERT_EQ(1, mock_remote_delegate.input_scopes().size())
    [all...]
  /external/chromium_org/win8/metro_driver/ime/
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...]

Completed in 182 milliseconds