OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:image_count
(Results
1 - 5
of
5
) sorted by null
/external/chromium/chrome/browser/chromeos/login/
default_images_view.cc
126
size_t
image_count
= default_images_.size();
local
127
int rows_count = (
image_count
+ kColumnsCount - 1) / kColumnsCount;
177
size_t
image_count
= default_images_.size();
local
178
int rows_count = (
image_count
+ kColumnsCount - 1) / kColumnsCount;
184
if (current_image <
image_count
) {
209
if (current_image >=
image_count
)
/external/chromium_org/ash/shell/
window_watcher.cc
100
static int
image_count
= 0;
local
112
image_count
== 0 ? 255 : 0,
113
image_count
== 1 ? 255 : 0,
114
image_count
== 2 ? 255 : 0);
115
image_count
= (
image_count
+ 1) % 3;
/external/opencv/cv/include/
cvcompat.h
584
CV_INLINE void cvCalibrateCamera( int
image_count
, int* _point_counts,
590
CvMat point_counts = cvMat(
image_count
, 1, CV_32SC1, _point_counts );
594
CvMat rotation_matrices = cvMat(
image_count
, 9, CV_32FC1, _rotation_matrices );
595
CvMat translation_vectors = cvMat(
image_count
, 3, CV_32FC1, _translation_vectors );
597
for( i = 0; i <
image_count
; i++ )
609
CV_INLINE void cvCalibrateCamera_64d( int
image_count
, int* _point_counts,
615
CvMat point_counts = cvMat(
image_count
, 1, CV_32SC1, _point_counts );
619
CvMat rotation_matrices = cvMat(
image_count
, 9, CV_64FC1, _rotation_matrices );
620
CvMat translation_vectors = cvMat(
image_count
, 3, CV_64FC1, _translation_vectors );
622
for( i = 0; i <
image_count
; i++
[
all
...]
/external/chromium_org/ui/gfx/
icon_util.cc
470
size_t
image_count
= bitmap_count + (png_bytes.get() ? 1 : 0);
local
486
icon_dir->idCount = static_cast<WORD>(
image_count
);
488
size_t icon_dir_count =
image_count
- 1;
/external/chromium_org/ash/system/chromeos/network/
network_icon.cc
333
int
image_count
= NumImagesForType(image_type) - 1;
local
334
int index = animation * nextafter(static_cast<float>(
image_count
), 0);
335
index = std::max(std::min(index,
image_count
- 1), 0);
Completed in 85 milliseconds