OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:border_size
(Results
1 - 7
of
7
) sorted by null
/external/chromium/chrome/browser/ui/views/bubble/
bubble_border.cc
37
gfx::Size
border_size
(contents_size);
40
border_size
.Enlarge(insets.left() + insets.right(),
63
x += w / 2 + arrow_offset -
border_size
.width() + 1;
73
x += kArrowOverlap -
border_size
.width();
78
x += w / 2 -
border_size
.width() / 2;
91
y += kArrowOverlap -
border_size
.height();
101
y += h / 2 + arrow_offset -
border_size
.height() + 1;
109
y += h / 2 -
border_size
.height() / 2;
113
return gfx::Rect(x, y,
border_size
.width(),
border_size
.height())
[
all
...]
/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
215
int BubbleBorder::GetArrowOffset(const gfx::Size&
border_size
) const {
217
border_size
.width() :
border_size
.height();
bubble_border.h
161
int GetArrowOffset(const gfx::Size&
border_size
) const;
/external/chromium_org/ash/wm/caption_buttons/
maximize_bubble_controller_bubble.cc
196
gfx::Size
border_size
(contents_size);
198
border_size
.Enlarge(insets.width(), insets.height());
201
int x = (anchor_size_.width() -
border_size
.width()) / 2;
208
return gfx::Rect(view_origin,
border_size
);
/external/chromium_org/ash/shelf/
overflow_bubble_view.cc
187
const int
border_size
=
local
190
const int arrow_offset =
border_size
+ kPadding + kShelfViewLeadingInset +
/external/chromium_org/ppapi/tests/
test_file_io.cc
782
const int32_t
border_size
= strlen(border);
local
787
std::vector<char> extended_buf_1(
border_size
* 2 + size_1);
788
char* buf_1 = &extended_buf_1[
border_size
];
789
memcpy(&extended_buf_1[0], border,
border_size
);
790
memcpy(buf_1 + size_1, border,
border_size
);
795
std::vector<char> extended_buf_2(
border_size
* 2 + size_2);
796
char* buf_2 = &extended_buf_2[
border_size
];
797
memcpy(&extended_buf_2[0], border,
border_size
);
798
memcpy(buf_2 + size_2, border,
border_size
);
[
all
...]
Completed in 1596 milliseconds