OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:border_size
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/profiles/
profile_avatar_icon_util.cc
113
int
border_size
= std::max(width_, height_);
local
115
x = (canvas_size_.width() -
border_size
) / 2;
116
y = (canvas_size_.height() -
border_size
) / 2;
128
SkFloatToScalar(x +
border_size
- 0.5f), // right
129
SkFloatToScalar(y +
border_size
- 0.5f)); // bottom
/external/chromium_org/ui/views/bubble/
tray_bubble_view.cc
119
gfx::Size
border_size
(contents_size);
121
border_size
.Enlarge(insets.width(), insets.height());
123
position_relative_to.width() / 2 -
border_size
.width() / 2;
125
const int y = position_relative_to.y() -
border_size
.height() +
127
return gfx::Rect(x, y,
border_size
.width(),
border_size
.height());
bubble_border.cc
216
int BubbleBorder::GetArrowOffset(const gfx::Size&
border_size
) const {
218
border_size
.width() :
border_size
.height();
bubble_border.h
168
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 308 milliseconds