OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:file_counts
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/media_galleries/
media_scan_manager_unittest.cc
186
const MediaGalleryScanResult&
file_counts
) {
188
expected_file_counts_ =
file_counts
;
237
const MediaGalleryScanResult&
file_counts
) OVERRIDE {
240
EXPECT_EQ(expected_file_counts_.audio_count,
file_counts
.audio_count);
241
EXPECT_EQ(expected_file_counts_.image_count,
file_counts
.image_count);
242
EXPECT_EQ(expected_file_counts_.video_count,
file_counts
.video_count);
299
MediaGalleryScanResult
file_counts
;
local
300
file_counts
.audio_count = 1;
301
file_counts
.image_count = 2;
302
file_counts
.video_count = 3
337
MediaGalleryScanResult
file_counts
;
local
384
MediaGalleryScanResult
file_counts
;
local
425
MediaGalleryScanResult
file_counts
;
local
475
MediaGalleryScanResult
file_counts
;
local
518
MediaGalleryScanResult
file_counts
;
local
607
MediaGalleryScanResult
file_counts
;
local
665
MediaGalleryScanResult
file_counts
;
local
709
MediaGalleryScanResult
file_counts
;
local
[
all
...]
media_scan_manager_observer.h
20
const MediaGalleryScanResult&
file_counts
) {}
media_scan_manager.cc
62
MediaGalleryScanResult
file_counts
;
member in struct:__anon8897::LocationInfo
80
all_locations.back().
file_counts
= it->second;
103
(*child_folders)[current.path] = current.
file_counts
;
162
MediaGalleryScanResult
file_counts
=
local
164
if (gallery.audio_count !=
file_counts
.audio_count ||
165
gallery.image_count !=
file_counts
.image_count ||
166
gallery.video_count !=
file_counts
.video_count) {
167
to_update[it->first] =
file_counts
;
192
MediaGalleryScanResult
file_counts
=
local
195
file_counts
.audio_count += it->second.audio_count
316
MediaGalleryScanResult
file_counts
;
local
541
MediaGalleryScanResult
file_counts
;
local
[
all
...]
/external/chromium_org/chrome/browser/extensions/api/media_galleries/
media_galleries_api.h
70
const MediaGalleryScanResult&
file_counts
) OVERRIDE;
media_galleries_api.cc
386
const MediaGalleryScanResult&
file_counts
) {
391
details.audio_count.reset(new int(
file_counts
.audio_count));
392
details.image_count.reset(new int(
file_counts
.image_count));
393
details.video_count.reset(new int(
file_counts
.video_count));
[
all
...]
Completed in 146 milliseconds