OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:computed_size
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/thumbnails/
content_analysis_unittest.cc
288
// of adjusted_size should never be worse than that of
computed_size
.
291
gfx::Size
computed_size
(420, 200);
294
target_size, image_size,
computed_size
);
301
AspectDifference(target_size,
computed_size
));
303
EXPECT_EQ(
computed_size
, adjusted_size);
306
computed_size
.SetSize(600, 150);
308
target_size, image_size,
computed_size
);
315
AspectDifference(target_size,
computed_size
));
317
EXPECT_EQ(
computed_size
.width(), adjusted_size.width());
318
EXPECT_LE(
computed_size
.height(), adjusted_size.height())
[
all
...]
content_analysis.h
49
// |
computed_size
| is the size of a result of unconstrained segmentation.
54
const gfx::Size&
computed_size
);
content_analysis.cc
480
const gfx::Size&
computed_size
) {
490
int computed_width = std::max(
computed_size
.width(), target_size.width());
491
int computed_height = std::max(
computed_size
.height(), target_size.height());
623
gfx::Size
computed_size
= AdjustClippingSizeToAspectRatio(
local
636
computed_size
.height(),
654
computed_size
.width(),
/system/extras/ext4_utils/
ext4_utils.c
416
s64
computed_size
;
local
426
computed_size
= buf.st_size - reserve_len;
428
computed_size
= get_block_device_size(fd) - reserve_len;
430
computed_size
= 0;
432
if (
computed_size
< 0) {
434
computed_size
= 0;
437
return
computed_size
;
/external/chromium/base/
file_util_unittest.cc
378
int64
computed_size
= file_util::ComputeDirectorySize(temp_dir_.path());
local
379
EXPECT_EQ(size_f1 + size_f2 + 3,
computed_size
);
381
computed_size
=
383
EXPECT_EQ(size_f1,
computed_size
);
385
computed_size
= file_util::ComputeFilesSize(temp_dir_.path(), FPL("bla*"));
386
EXPECT_EQ(0,
computed_size
);
[
all
...]
/external/chromium_org/base/
file_util_unittest.cc
271
int64
computed_size
= ComputeDirectorySize(temp_dir_.path());
local
272
EXPECT_EQ(size_f1 + size_f2 + 3,
computed_size
);
[
all
...]
Completed in 255 milliseconds