Searched refs:list (Results 251 - 275 of 4308) sorted by path

<<11121314151617181920>>

/external/chromium_org/cc/resources/
H A Dresource_provider.cc1161 TransferableResourceArray* list) {
1173 list->push_back(resource);
1177 for (TransferableResourceArray::iterator it = list->begin();
1178 it != list->end();
1160 PrepareSendToParent(const ResourceIdArray& resources, TransferableResourceArray* list) argument
H A Dresource_provider_unittest.cc665 TransferableResourceArray list; local
667 &list);
668 ASSERT_EQ(4u, list.size());
669 EXPECT_NE(0u, list[0].mailbox_holder.sync_point);
670 EXPECT_NE(0u, list[1].mailbox_holder.sync_point);
671 EXPECT_EQ(list[0].mailbox_holder.sync_point,
672 list[1].mailbox_holder.sync_point);
673 EXPECT_NE(0u, list[2].mailbox_holder.sync_point);
674 EXPECT_EQ(list[0].mailbox_holder.sync_point,
675 list[
735 TransferableResourceArray list; local
814 TransferableResourceArray list; local
879 TransferableResourceArray list; local
942 TransferableResourceArray list; local
1001 TransferableResourceArray list; local
1044 TransferableResourceArray list; local
1110 TransferableResourceArray list; local
1186 TransferableResourceArray list; local
1233 TransferableResourceArray list; local
1288 TransferableResourceArray list; local
1318 TransferableResourceArray list; local
1382 TransferableResourceArray list; local
1412 TransferableResourceArray list; local
1487 TransferableResourceArray list; local
1539 TransferableResourceArray list; local
1570 TransferableResourceArray list; local
1727 TransferableResourceArray list; local
1849 TransferableResourceArray list; local
1900 TransferableResourceArray list; local
1964 TransferableResourceArray list; local
2018 TransferableResourceArray list; local
2037 TransferableResourceArray list; local
2094 TransferableResourceArray list; local
2144 TransferableResourceArray list; local
2163 TransferableResourceArray list; local
2228 TransferableResourceArray list; local
[all...]
/external/chromium_org/cc/test/
H A Dlayer_tree_json_parser.cc27 base::ListValue* list; local
28 success &= dict->GetList("Bounds", &list);
30 success &= list->GetInteger(0, &width);
31 success &= list->GetInteger(1, &height);
32 success &= dict->GetList("Position", &list);
34 success &= list->GetDouble(0, &position_x);
35 success &= list->GetDouble(1, &position_y);
46 success &= dict->GetList("ImageAperture", &list);
48 success &= list->GetInteger(0, &aperture_x);
49 success &= list
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_sorter.cc104 // Make a list of points that inside both layer quad projections.
347 // Finds and removes an edge from the list by doing a swap with the
348 // last element of the list.
350 std::vector<GraphEdge*>* list) {
352 std::find(list->begin(), list->end(), edge);
353 DCHECK(iter != list->end());
354 list->erase(iter);
357 // Sorts the given list of layers such that they can be painted in a
364 // the ordering of those layers as they were in the original list
349 RemoveEdgeFromList(GraphEdge* edge, std::vector<GraphEdge*>* list) argument
[all...]
H A Dlayer_sorter.h108 void RemoveEdgeFromList(GraphEdge* graph, std::vector<GraphEdge*>* list);
H A Dlayer_tree_host.h9 #include <list>
75 // Duplicate any modification to this list to RendererCapabilitiesImpl.
357 typedef std::list<UIResourceRequest> UIResourceRequestQueue;
H A Dlayer_tree_host_common_perftest.cc186 // In this case, all layers that exist in any 3D context are put into a list
191 // Here we'll move the layers into a LayerImpl list of their own to be
192 // sorted so we don't have a sorted list for every run after the first
201 void BuildLayerImplList(LayerImpl* layer, LayerImplList* list) { argument
203 list->push_back(layer);
207 BuildLayerImplList(layer->children()[i], list);
H A Dlayer_tree_host_impl.h8 #include <list>
400 size_t RenderPassListBegin(const RenderPassList& list) const { return 0; }
401 size_t RenderPassListEnd(const RenderPassList& list) const {
402 return list.size();
H A Dlayer_tree_impl.h8 #include <list>
61 typedef std::list<UIResourceRequest> UIResourceRequestQueue;
185 // Updates draw properties and render surface layer list, as well as tile
H A Dtree_synchronizer_unittest.cc38 void SetLayerImplDestructionList(std::vector<int>* list) { argument
39 layer_impl_destruction_list_ = list;
251 // We have to push properties to pick up the destruction list pointer.
299 // We have to push properties to pick up the destruction list pointer.
403 // We have to push properties to pick up the destruction list pointer.
460 // We have to push properties to pick up the destruction list pointer.
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
H A DAppMenu.java160 // list view.
332 ViewGroup list = mPopup.getListView();
333 for (int i = 0; i < list.getChildCount(); i++) {
334 View view = list.getChildAt(i);
/external/chromium_org/chrome/browser/
H A Dabout_flags.cc95 // Adds a |StringValue| to |list| for each platform where |bitmask| indicates
97 void AddOsStrings(unsigned bitmask, base::ListValue* list) { argument
111 list->Append(new base::StringValue(kBitsToOs[i].name));
509 // . MULTI_VALUE: a list of choices, the first of which should correspond to a
519 // When adding a new choice, add it to the end of the list.
559 "enable-display-list-2d-canvas",
1176 "enable-sync-app-list",
1439 "reset-app-list-install-state",
1451 "enable-app-list",
1468 "disable-app-list
[all...]
/external/chromium_org/chrome/browser/android/bookmarks/
H A Dbookmarks_bridge.cc440 std::list<const BookmarkNode*> folders;
445 for (std::list<const BookmarkNode*>::iterator folder_iter = folders.begin();
450 std::list<const BookmarkNode*>::iterator insert_iter = folder_iter;
H A Dpartner_bookmarks_shim.cc245 const base::ListValue* list = local
247 if (!list)
250 for (base::ListValue::const_iterator it = list->begin();
251 it != list->end(); ++it) {
278 base::ListValue list;
286 list.Append(dict);
288 prefs_->Set(prefs::kPartnerBookmarkMappings, list);
/external/chromium_org/chrome/browser/android/provider/
H A Dchrome_browser_provider.cc8 #include <list>
/external/chromium_org/chrome/browser/android/thumbnail/
H A Dthumbnail_store.h8 #include <list>
37 typedef std::list<TabId> TabIdList;
/external/chromium_org/chrome/browser/apps/
H A Dweb_view_browsertest.cc517 const MenuItem::List* list = menu_manager()->MenuItems(*i); local
518 result.insert(result.end(), list->begin(), list->end());
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_html_writer.h8 #include <list>
37 // Class that fetches favicons for list of bookmarks and
67 // Takes single url from bookmark_urls_ and removes it from the list.
80 // for each of them. After favicon is fetched top url is removed from list.
81 std::list<std::string> bookmark_urls_;
H A Dchrome_bookmark_client.cc83 const std::vector<const BookmarkNode*>& list) {
84 for (size_t i = 0; i < list.size(); ++i) {
85 if (IsDescendantOfManagedNode(list[i]))
82 HasDescendantsOfManagedNode( const std::vector<const BookmarkNode*>& list) argument
H A Dchrome_bookmark_client.h41 // Returns true if there is at least one managed node in the |list|.
43 const std::vector<const BookmarkNode*>& list);
H A Dchrome_bookmark_client_unittest.cc85 base::ListValue* list = new base::ListValue(); local
86 list->Append(CreateBookmark("Google", "http://google.com/"));
87 list->Append(CreateFolder("Folder", folder));
89 return list;
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_database_helper.cc50 const base::Callback<void(const std::list<DatabaseInfo>&)>& callback) {
185 const base::Callback<void(const std::list<DatabaseInfo>&)>& callback) {
189 std::list<DatabaseInfo> result;
H A Dbrowsing_data_database_helper.h8 #include <list>
53 const base::Callback<void(const std::list<DatabaseInfo>&)>& callback);
73 std::list<DatabaseInfo> database_info_;
76 base::Callback<void(const std::list<DatabaseInfo>&)> completion_callback_;
124 // Clear the list of canned databases.
133 // Returns the current list of web databases.
138 const base::Callback<void(const std::list<DatabaseInfo>&)>& callback)
H A Dbrowsing_data_database_helper_browsertest.cc69 void Callback(const std::list<BrowsingDataDatabaseHelper::DatabaseInfo>&
114 std::list<BrowsingDataDatabaseHelper::DatabaseInfo> result =
118 std::list<BrowsingDataDatabaseHelper::DatabaseInfo>::iterator info =
145 std::list<BrowsingDataDatabaseHelper::DatabaseInfo> result =
H A Dbrowsing_data_file_system_helper.cc30 // data from a given |filesystem_context| and returns a list of FileSystemInfo
38 void(const std::list<FileSystemInfo>&)>& callback) OVERRIDE;
44 // Enumerates all filesystem files, storing the resulting list into
66 // Holds the current list of file systems returned to the client after
72 std::list<FileSystemInfo> file_system_info_;
77 base::Callback<void(const std::list<FileSystemInfo>&)> completion_callback_;
98 const base::Callback<void(const std::list<FileSystemInfo>&)>& callback) {
209 for (std::list<FileSystemInfo>::iterator
244 const base::Callback<void(const std::list<FileSystemInfo>&)>& callback) {

Completed in 385 milliseconds

<<11121314151617181920>>