OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:new_bottom
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/cc/base/
simple_enclosed_region.cc
94
int
new_bottom
= new_rect.bottom();
local
101
if (new_top <= top &&
new_bottom
>= bottom) {
107
if (new_top < top &&
new_bottom
>= top)
109
if (
new_bottom
> bottom && new_top <= bottom)
110
bottom =
new_bottom
;
111
} else if (top <= new_top && bottom >=
new_bottom
) {
119
if (bottom >
new_bottom
&& top <=
new_bottom
)
120
new_bottom
= bottom;
126
new_left, new_top, new_right - new_left,
new_bottom
- new_top)
[
all
...]
/external/chromium_org/pdf/pdfium/
pdfium_page.cc
443
int new_left, new_top, new_right,
new_bottom
;
local
457
rotation, right, bottom, &new_right, &
new_bottom
);
464
if (
new_bottom
< new_top)
465
std::swap(
new_bottom
, new_top);
468
new_left, new_top, new_right - new_left + 1,
new_bottom
- new_top + 1);
/external/chromium_org/cc/resources/
picture_layer_tiling.cc
514
int
new_bottom
= visible_rect_in_content_space.bottom();
local
527
extrapolation_multiplier * (old_bottom -
new_bottom
));
[
all
...]
Completed in 139 milliseconds