HomeSort by relevance Sort by last modified time
    Searched refs:kMaxTooltipLength (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/ui/views/widget/
tooltip_manager.cc 16 const size_t kMaxTooltipLength = 1024;
35 // Clamp the tooltip length to kMaxTooltipLength so that we don't
37 if (text->length() > kMaxTooltipLength)
38 *text = text->substr(0, kMaxTooltipLength);
  /external/chromium_org/ui/views/corewm/
tooltip_controller.cc 58 const size_t kMaxTooltipLength = 1024;
360 // Clamp the tooltip length to kMaxTooltipLength so that we don't
362 if (text->length() > kMaxTooltipLength)
363 *text = text->substr(0, kMaxTooltipLength);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_gtk.cc 813 const int kMaxTooltipLength = 8 << 10;
814 // Clamp the tooltip length to kMaxTooltipLength so that we don't
820 kMaxTooltipLength);
    [all...]
render_widget_host_view_win.cc 77 const int kMaxTooltipLength = 1024;
707 // Clamp the tooltip length to kMaxTooltipLength so that we don't
711 l10n_util::TruncateString(tooltip_text, kMaxTooltipLength);
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_gtk.cc     [all...]
render_widget_host_view_win.cc 95 const int kMaxTooltipLength = 1024;
842 // Clamp the tooltip length to kMaxTooltipLength so that we don't
846 ui::TruncateString(tooltip_text, kMaxTooltipLength);
    [all...]

Completed in 2205 milliseconds