OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:download_items_
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/ui/webui/
downloads_dom_handler.cc
100
// errors between the UI and the
download_items_
list (we may wish to use
102
OrderedDownloads::iterator it = find(
download_items_
.begin(),
103
download_items_
.end(),
105
if (it ==
download_items_
.end())
107
const int id = static_cast<int>(it -
download_items_
.begin());
119
&
download_items_
);
local
120
sort(
download_items_
.begin(),
download_items_
.end(), DownloadItemSorter());
123
for (OrderedDownloads::iterator it =
download_items_
.begin();
124
it !=
download_items_
.end(); ++it)
[
all
...]
downloads_dom_handler.h
95
OrderedDownloads
download_items_
;
member in class:DownloadsDOMHandler
/external/chromium/chrome/browser/ui/gtk/download/
download_shelf_gtk.cc
158
for (std::vector<DownloadItemGtk*>::iterator iter =
download_items_
.begin();
159
iter !=
download_items_
.end(); ++iter) {
171
download_items_
.push_back(new DownloadItemGtk(this, download_model_));
205
while (i <
download_items_
.size()) {
206
DownloadItem* download =
download_items_
[i]->get_download();
212
RemoveDownloadItem(
download_items_
[i]);
264
find(
download_items_
.begin(),
download_items_
.end(), download_item);
265
DCHECK(i !=
download_items_
.end());
266
download_items_
.erase(i)
[
all
...]
download_shelf_gtk.h
132
std::vector<DownloadItemGtk*>
download_items_
;
member in class:DownloadShelfGtk
Completed in 427 milliseconds