Home | History | Annotate | Download | only in ime

Lines Matching refs:cw

26 bool CandidateWindow::IsEqual(const CandidateWindow& cw) const {
27 if (page_size() != cw.page_size() ||
28 cursor_position() != cw.cursor_position() ||
29 is_cursor_visible() != cw.is_cursor_visible() ||
30 orientation() != cw.orientation() ||
31 show_window_at_composition() != cw.show_window_at_composition() ||
32 candidates_.size() != cw.candidates_.size())
37 const Entry& right = cw.candidates_[i];
48 void CandidateWindow::CopyFrom(const CandidateWindow& cw) {
49 SetProperty(cw.GetProperty());
51 candidates_ = cw.candidates_;