OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:applications_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/background/
background_application_list_model.cc
174
STLDeleteContainerPairSecondPointers(
applications_
.begin(),
175
applications_
.end());
216
if (
applications_
.size() >= IDC_MinimumLabelValue) {
222
applications_
[extension->id()] = application;
230
ApplicationMap::iterator found =
applications_
.find(extension->id());
231
if (found !=
applications_
.end()) {
233
applications_
.erase(found);
247
ApplicationMap::const_iterator found =
applications_
.find(id);
248
return (found ==
applications_
.end()) ? NULL : found->second;
255
ApplicationMap::iterator found =
applications_
.find(id)
[
all
...]
background_mode_manager.cc
65
:
applications_
(new BackgroundApplicationListModel(profile)),
87
applications_
->GetExtension(extension_index);
103
return
applications_
->size();
112
if (
applications_
->size() < 1) {
118
applications_
->begin();
119
cursor !=
applications_
->end();
121
const gfx::ImageSkia* icon =
applications_
->GetIcon(cursor->get());
122
DCHECK(position ==
applications_
->GetPosition(cursor->get()));
172
for (extensions::ExtensionList::const_iterator it =
applications_
->begin();
173
it !=
applications_
->end(); ++it)
[
all
...]
background_application_list_model.h
154
ApplicationMap
applications_
;
member in class:BackgroundApplicationListModel
background_mode_manager.h
125
scoped_ptr<BackgroundApplicationListModel>
applications_
;
member in class:BackgroundModeManager::BackgroundModeData
Completed in 298 milliseconds