/third_party/cef/tests/ceftests/views/ |
D | textfield_unittest.cc | 47 EXPECT_EQ(CefRange(0, 0), textfield->GetSelectedRange()); in RunTextfieldContents() 68 CefRange(static_cast<int>(cursor_pos), static_cast<int>(cursor_pos)), in RunTextfieldContents() 70 textfield->SelectRange(CefRange(0, static_cast<int>(cursor_pos))); in RunTextfieldContents() 72 EXPECT_EQ(CefRange(0, static_cast<int>(cursor_pos)), in RunTextfieldContents() 92 EXPECT_EQ(CefRange(0, static_cast<int>(cursor_pos)), in RunTextfieldContents() 100 CefRange(static_cast<int>(cursor_pos), static_cast<int>(cursor_pos)), in RunTextfieldContents() 108 EXPECT_EQ(CefRange(0, static_cast<int>(cursor_pos)), in RunTextfieldContents() 169 textfield->ApplyTextColor(color, CefRange(0, 5)); in RunTextfieldStyle() 170 textfield->ApplyTextStyle(CEF_TEXT_STYLE_BOLD, true, CefRange(0, 5)); in RunTextfieldStyle()
|
/third_party/cef/include/views/ |
D | cef_textfield.h | 138 virtual CefRange GetSelectedRange() = 0; 144 virtual void SelectRange(const CefRange& range) = 0; 209 virtual void ApplyTextColor(cef_color_t color, const CefRange& range) = 0; 220 const CefRange& range) = 0;
|
/third_party/cef/libcef/browser/views/ |
D | textfield_impl.h | 41 CefRange GetSelectedRange() override; 42 void SelectRange(const CefRange& range) override; 51 void ApplyTextColor(cef_color_t color, const CefRange& range) override; 54 const CefRange& range) override;
|
D | textfield_impl.cc | 104 CefRange CefTextfieldImpl::GetSelectedRange() { in GetSelectedRange() 105 CEF_REQUIRE_VALID_RETURN(CefRange()); in GetSelectedRange() 107 return CefRange(range.start(), range.end()); in GetSelectedRange() 110 void CefTextfieldImpl::SelectRange(const CefRange& range) { in SelectRange() 156 const CefRange& range) { in ApplyTextColor() 166 const CefRange& range) { in ApplyTextStyle()
|
/third_party/cef/tests/cefclient/browser/ |
D | text_input_client_osr_mac.h | 27 CefRange composition_range_; 60 CefRange setMarkedTextReplacementRange_; 72 - (void)ChangeCompositionRange:(CefRange)range
|
D | osr_ime_handler_win.h | 68 void ChangeCompositionRange(const CefRange& selection_range, 107 CefRange composition_range_;
|
D | text_input_client_osr_mac.mm | 159 CefRange replacement_range(replacementRange.location, 161 CefRange selection_range(newSelRange.location, NSMaxRange(newSelRange)); 264 setMarkedTextReplacementRange_ = CefRange(UINT32_MAX, UINT32_MAX); 301 CefRange(UINT32_MAX, UINT32_MAX), 0); 312 CefRange(selectedRange_.location, NSMaxRange(selectedRange_))); 322 setMarkedTextReplacementRange_ = CefRange(UINT32_MAX, UINT32_MAX); 325 - (void)ChangeCompositionRange:(CefRange)range
|
D | client_handler_osr.h | 62 const CefRange& selection_range, 127 const CefRange& selection_range,
|
/third_party/cef/libcef_dll/ctocpp/views/ |
D | textfield_ctocpp.h | 49 CefRange GetSelectedRange() override; 50 void SelectRange(const CefRange& range) override; 59 void ApplyTextColor(cef_color_t color, const CefRange& range) override; 62 const CefRange& range) override;
|
/third_party/cef/libcef/browser/osr/ |
D | browser_platform_delegate_osr.h | 64 const CefRange& replacement_range, 65 const CefRange& selection_range) override; 67 const CefRange& replacement_range,
|
D | render_widget_host_view_osr.h | 254 const CefRange& replacement_range, 255 const CefRange& selection_range); 257 const CefRange& replacement_range,
|
/third_party/cef/libcef/browser/chrome/ |
D | chrome_browser_host_impl.h | 101 const CefRange& replacement_range, 102 const CefRange& selection_range) override; 104 const CefRange& replacement_range,
|
/third_party/cef/libcef_dll/ctocpp/ |
D | browser_host_ctocpp.h | 110 const CefRange& replacement_range, 111 const CefRange& selection_range) override; 113 const CefRange& replacement_range,
|
D | render_handler_ctocpp.h | 71 const CefRange& selected_range, 75 const CefRange& selected_range) override;
|
/third_party/cef/include/ |
D | cef_render_handler.h | 212 const CefRange& selected_range, in OnImeCompositionRangeChanged() 223 const CefRange& selected_range) {} in OnTextSelectionChanged()
|
D | cef_browser.h | 768 const CefRange& replacement_range, 769 const CefRange& selection_range) = 0; 782 const CefRange& replacement_range,
|
/third_party/cef/tests/ceftests/ |
D | print_unittest.cc | 34 page_ranges.push_back(CefRange(1, 3)); in TEST() 35 page_ranges.push_back(CefRange(5, 6)); in TEST()
|
/third_party/cef/libcef_dll/cpptoc/ |
D | render_handler_cpptoc.cc | 429 CefRange selected_rangeVal = selected_range ? *selected_range : CefRange(); in render_handler_on_ime_composition_range_changed() 463 CefRange selected_rangeVal = selected_range ? *selected_range : CefRange(); in render_handler_on_text_selection_changed()
|
D | print_settings_cpptoc.cc | 216 std::vector<CefRange> rangesList; in print_settings_set_page_ranges() 219 CefRange rangesVal = ranges[i]; in print_settings_set_page_ranges() 262 std::vector<CefRange> rangesList; in print_settings_get_page_ranges()
|
D | browser_host_cpptoc.cc | 969 CefRange replacement_rangeVal = in browser_host_ime_set_composition() 970 replacement_range ? *replacement_range : CefRange(); in browser_host_ime_set_composition() 972 CefRange selection_rangeVal = selection_range ? *selection_range : CefRange(); in browser_host_ime_set_composition() 999 CefRange replacement_rangeVal = in browser_host_ime_commit_text() 1000 replacement_range ? *replacement_range : CefRange(); in browser_host_ime_commit_text()
|
/third_party/cef/libcef/browser/ |
D | browser_platform_delegate.h | 312 const CefRange& replacement_range, 313 const CefRange& selection_range); 315 const CefRange& replacement_range,
|
D | print_settings_impl.cc | 77 const CefRange& cef_range = *it; in SetPageRanges() 99 ranges.push_back(CefRange(range.from, range.to)); in GetPageRanges()
|
D | browser_platform_delegate.cc | 270 const CefRange& replacement_range, in ImeSetComposition() 271 const CefRange& selection_range) { in ImeSetComposition() 277 const CefRange& replacement_range, in ImeCommitText()
|
/third_party/cef/include/internal/ |
D | cef_types_wrappers.h | 273 class CefRange : public CefStructBase<CefRangeTraits> { 277 CefRange() {} in CefRange() function 278 CefRange(const cef_range_t& r) : parent(r) {} in CefRange() function 279 CefRange(int from, int to) { Set(from, to); } in CefRange() function 284 inline bool operator==(const CefRange& a, const CefRange& b) { 288 inline bool operator!=(const CefRange& a, const CefRange& b) {
|
/third_party/cef/libcef_dll/cpptoc/views/ |
D | textfield_cpptoc.cc | 249 return CefRange(); in textfield_get_selected_range() 273 CefRange rangeVal = range ? *range : CefRange(); in textfield_select_range() 426 CefRange rangeVal = range ? *range : CefRange(); in textfield_apply_text_color() 449 CefRange rangeVal = range ? *range : CefRange(); in textfield_apply_text_style()
|