Searched refs:list (Results 226 - 250 of 4308) sorted by path

1234567891011>>

/external/chromium_org/build/android/pylib/utils/
H A Dparallelizer_test.py99 self.assertTrue(isinstance(results, list))
153 self.assertTrue(isinstance(results, list))
/external/chromium_org/build/android/
H A Dsurface_stats.py31 merged_results = collections.defaultdict(list)
37 if isinstance(result.value, list):
90 help='Comma separated list of fields to display or "all".')
H A Dtombstones.py64 A list of lines
81 # The order of this list is significant to find the more specific match (e.g.,
93 tombstone_data: a list of strings of tombstone data.
136 """Resolve a list of tombstones.
140 tombstones: a list of tombstones.
155 """Returns a list of tombstones on a given device.
162 all_tombstones = list(_ListTombstones(device))
/external/chromium_org/build/
H A Dgn_helpers.py17 GN scope in a list, so this should be set to False for recursive calls."""
23 if isinstance(value, list):
H A Dgypi_to_gn.py116 if isinstance(values, list):
H A Dinstall-chroot.sh245 printf "to the chroot's sources.list (y/n)? "
311 # Reposition cursor to the top of the list of entries
372 # Set up a list of mount points that is specific to this
447 echo "Usage ${0##*/} [-h|--help] [-c|--clean] [-C|--clean-all] [-l|--list] [--] args" | wrap "Usage ${0##*/} "
449 echo " list: list all known chroot environments" | wrap " "
474 list() { function
493 -l|--list) shift; list;;
564 -r "/var/lib/chroot/${target}/etc/apt/sources.list" ]
[all...]
H A Dprecompile.h100 #include <list>
/external/chromium_org/build/util/lib/common/
H A Dperf_tests_results_helper.py29 """Returns a simple list without sub-lists."""
32 if isinstance(entry, list):
92 """Prints list of pages to stdout in the format required by perf tests."""
112 values: A list of numeric measured values. An N-dimensional list will be
113 flattened and treated as a simple list.
130 assert isinstance(values, list)
146 assert isinstance(values, list)
/external/chromium_org/cc/debug/
H A Dpicture_record_benchmark.cc34 base::ListValue* list = NULL;
35 value->GetAsList(&list);
36 if (!list)
39 for (base::ListValue::iterator it = list->begin(); it != list->end(); ++it) {
H A Drendering_stats.cc21 std::list<base::TimeDelta>::const_iterator iter;
H A Drendering_stats.h8 #include <list>
32 std::list<base::TimeDelta> values;
H A Drendering_stats_unittest.cc15 static std::string ToString(const RenderingStats::TimeDeltaList& list) { argument
19 list.AddToTracedValue(value.get());
/external/chromium_org/cc/layers/
H A Dlayer_impl.cc639 base::ListValue* list = new base::ListValue; local
640 list->AppendInteger(bounds().width());
641 list->AppendInteger(bounds().height());
642 result->Set("Bounds", list);
644 list = new base::ListValue;
645 list->AppendDouble(position_.x());
646 list->AppendDouble(position_.y());
647 result->Set("Position", list);
652 list = new base::ListValue;
654 list
[all...]
H A Dnine_patch_layer_impl.cc382 base::ListValue* list = new base::ListValue; local
383 list->AppendInteger(image_aperture_.origin().x());
384 list->AppendInteger(image_aperture_.origin().y());
385 list->AppendInteger(image_aperture_.size().width());
386 list->AppendInteger(image_aperture_.size().height());
387 result->Set("ImageAperture", list);
389 list = new base::ListValue;
390 list->AppendInteger(image_bounds_.width());
391 list->AppendInteger(image_bounds_.height());
392 result->Set("ImageBounds", list);
[all...]
H A Dtexture_layer_unittest.cc1116 TransferableResourceArray list; local
1117 provider->PrepareSendToParent(resource_ids_to_transfer, &list);
1125 TransferableResource::ReturnResources(list, &returned);
H A Dui_resource_layer_impl.cc155 base::ListValue* list = new base::ListValue; local
156 list->AppendDouble(vertex_opacity_[0]);
157 list->AppendDouble(vertex_opacity_[1]);
158 list->AppendDouble(vertex_opacity_[2]);
159 list->AppendDouble(vertex_opacity_[3]);
160 result->Set("VertexOpacity", list);
/external/chromium_org/cc/output/
H A Dbsp_tree.cc7 #include <list>
24 BspTree::BspTree(ScopedPtrDeque<DrawPolygon>* list) { argument
25 if (list->size() == 0)
28 root_ = scoped_ptr<BspNode>(new BspNode(list->take_front()));
29 BuildTree(root_.get(), list);
43 // We take in a list of polygons at this level of the tree, and have to
53 // or front of the list.
H A Dbsp_tree.h8 #include <list>
35 explicit BspTree(ScopedPtrDeque<DrawPolygon>* list);
50 void FromList(ScopedPtrVector<DrawPolygon>* list);
H A Dsoftware_renderer_unittest.cc59 scoped_ptr<SkBitmap> DrawAndCopyOutput(RenderPassList* list, argument
65 list->back()->copy_requests.push_back(
71 renderer()->DrawFrame(list,
130 RenderPassList list; local
131 list.push_back(root_render_pass.PassAs<RenderPass>());
136 DrawAndCopyOutput(&list, device_scale_factor, device_viewport_rect);
226 RenderPassList list; local
227 list.push_back(root_render_pass.PassAs<RenderPass>());
232 DrawAndCopyOutput(&list, device_scale_factor, device_viewport_rect);
300 RenderPassList list; local
337 RenderPassList list; local
392 RenderPassList list; local
[all...]
/external/chromium_org/cc/quads/
H A Dlist_container.cc34 // between capacity and size is the how many more elements this list can
37 // The number of elements have been put into this list.
146 InnerList* list = last_list_; local
147 list->capacity = list_size;
148 list->size = 0;
149 list->step = element_size_;
150 list->data.reset(new char[list->capacity * list->step]);
210 typename ListContainerCharAllocator::InnerList* list local
229 typename ListContainerCharAllocator::InnerList* list = local
[all...]
H A Dlist_container_unittest.cc68 ListContainer<DrawQuad> list(sizeof(kLargestDrawQuad));
72 list.AllocateAndConstruct<SimpleDrawQuadConstructMagicNumberOne>();
74 list.AllocateAndConstruct<SimpleDrawQuadConstructMagicNumberTwo>();
76 EXPECT_EQ(size, list.size());
77 EXPECT_EQ(dq_1, list.front());
78 EXPECT_EQ(dq_2, list.back());
85 ListContainer<DrawQuad> list(sizeof(kLargestDrawQuad));
88 MockDrawQuad* dq_1 = list.AllocateAndConstruct<MockDrawQuad>();
91 EXPECT_EQ(size, list.size());
92 EXPECT_EQ(dq_1, list
140 ListContainer<SharedQuadState> list; local
156 ListContainer<SharedQuadState> list; local
169 ListContainer<SharedQuadState> list; local
189 ListContainer<SharedQuadState> list; local
325 ListContainer<SharedQuadState> list; local
362 ListContainer<SharedQuadState> list; local
407 ListContainer<SharedQuadState> list; local
[all...]
/external/chromium_org/cc/resources/
H A Dpicture_pile_base.h9 #include <list>
H A Dpicture_pile_impl.h8 #include <list>
H A Dprioritized_resource_manager.h8 #include <list>
48 typedef std::list<PrioritizedResource::Backing*> BackingList;
106 // Unlink the list of contents textures' backings from their owning textures
219 // This list is always sorted in eviction order, with the exception the
225 // The list of backings that have been evicted, but may still be linked
H A Dresource_pool.h8 #include <list>
70 typedef std::list<ScopedResource*> ResourceList;

Completed in 297 milliseconds

1234567891011>>