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

  /external/chromium_org/chrome/browser/profiles/
profile_avatar_icon_util.cc 111 int border_size = std::max(width_, height_); local
113 x = (canvas_size_.width() - border_size) / 2;
114 y = (canvas_size_.height() - border_size) / 2;
126 SkFloatToScalar(x + border_size - 0.5f), // right
127 SkFloatToScalar(y + border_size - 0.5f)); // bottom
  /external/chromium_org/ui/views/bubble/
tray_bubble_view.cc 117 gfx::Size border_size(contents_size);
119 border_size.Enlarge(insets.width(), insets.height());
121 position_relative_to.width() / 2 - border_size.width() / 2;
123 const int y = position_relative_to.y() - border_size.height() +
125 return gfx::Rect(x, y, border_size.width(), border_size.height());
bubble_border.cc 190 int BubbleBorder::GetArrowOffset(const gfx::Size& border_size) const {
192 border_size.width() : border_size.height();
bubble_border.h 196 int GetArrowOffset(const gfx::Size& border_size) const;
  /external/chromium_org/ash/shelf/
overflow_bubble_view.cc 182 const int border_size = local
185 const int arrow_offset = border_size + kPadding + kShelfViewLeadingInset +
  /external/chromium_org/ppapi/tests/
test_file_io.cc 784 const int32_t border_size = strlen(border); local
789 std::vector<char> extended_buf_1(border_size * 2 + size_1);
790 char* buf_1 = &extended_buf_1[border_size];
791 memcpy(&extended_buf_1[0], border, border_size);
792 memcpy(buf_1 + size_1, border, border_size);
797 std::vector<char> extended_buf_2(border_size * 2 + size_2);
798 char* buf_2 = &extended_buf_2[border_size];
799 memcpy(&extended_buf_2[0], border, border_size);
800 memcpy(buf_2 + size_2, border, border_size);
    [all...]

Completed in 270 milliseconds