Home
last modified time | relevance | path

Searched refs:underline_attributes (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/chromeos/ime/
Dcomposition_text_unittest.cc27 std::vector<CompositionText::UnderlineAttribute>* underline_attributes = in TEST() local
29 underline_attributes->push_back(kSampleUnderlineAttribute1); in TEST()
30 underline_attributes->push_back(kSampleUnderlineAttribute2); in TEST()
31 underline_attributes->push_back(kSampleUnderlineAttribute3); in TEST()
39 EXPECT_EQ(text.underline_attributes().size(), in TEST()
40 text2.underline_attributes().size()); in TEST()
41 for (size_t i = 0; i < text.underline_attributes().size(); ++i) { in TEST()
42 EXPECT_EQ(text.underline_attributes()[i].type, in TEST()
43 text2.underline_attributes()[i].type); in TEST()
44 EXPECT_EQ(text.underline_attributes()[i].start_index, in TEST()
[all …]
Dcomposition_text.cc17 underline_attributes_ = obj.underline_attributes(); in CopyFrom()
Dcomposition_text.h38 const std::vector<UnderlineAttribute>& underline_attributes() const { in underline_attributes() function
/external/chromium_org/ui/base/ime/
Dinput_method_chromeos.cc602 underline_attributes = text.underline_attributes(); in ExtractCompositionText() local
603 if (!underline_attributes.empty()) { in ExtractCompositionText()
604 for (size_t i = 0; i < underline_attributes.size(); ++i) { in ExtractCompositionText()
605 const uint32 start = underline_attributes[i].start_index; in ExtractCompositionText()
606 const uint32 end = underline_attributes[i].end_index; in ExtractCompositionText()
614 if (underline_attributes[i].type == in ExtractCompositionText()
617 else if (underline_attributes[i].type == in ExtractCompositionText()
/external/chromium_org/chrome/browser/chromeos/input_method/
Dinput_method_engine_browsertests.cc557 composition_text.underline_attributes(); in IN_PROC_BROWSER_TEST_P()