Searched refs:pile (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/cc/test/
H A Dfake_picture_pile_impl.cc22 scoped_refptr<FakePicturePileImpl> pile(new FakePicturePileImpl());
23 pile->tiling().SetTilingRect(gfx::Rect(layer_bounds));
24 pile->tiling().SetMaxTextureSize(tile_size);
25 pile->SetTileGridSize(ImplSidePaintingSettings().default_tile_size);
26 pile->recorded_viewport_ = gfx::Rect(layer_bounds);
27 pile->has_any_recordings_ = true;
28 for (int x = 0; x < pile->tiling().num_tiles_x(); ++x) {
29 for (int y = 0; y < pile->tiling().num_tiles_y(); ++y)
30 pile->AddRecordingAt(x, y);
32 return pile;
[all...]
H A Dfake_picture_layer_impl.h20 // Create layer from a pile that covers the entire layer.
22 LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile) {
23 return make_scoped_ptr(new FakePictureLayerImpl(tree_impl, id, pile));
26 // Create layer from a pile that only covers part of the layer.
30 scoped_refptr<PicturePileImpl> pile,
33 new FakePictureLayerImpl(tree_impl, id, pile, layer_bounds));
74 PicturePileImpl* pile() { return pile_.get(); } function in class:cc::FakePictureLayerImpl
102 scoped_refptr<PicturePileImpl> pile);
105 scoped_refptr<PicturePileImpl> pile,
21 CreateWithPile( LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile) argument
27 CreateWithPartialPile( LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile, const gfx::Size& layer_bounds) argument
H A Dfake_picture_layer_impl.cc16 scoped_refptr<PicturePileImpl> pile)
19 pile_ = pile;
20 CHECK(pile->tiling_rect().origin() == gfx::Point());
27 scoped_refptr<PicturePileImpl> pile,
30 pile_ = pile;
13 FakePictureLayerImpl( LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile) argument
25 FakePictureLayerImpl(LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile, const gfx::Size& layer_bounds) argument
H A Dfake_picture_layer_tiling_client.h35 scoped_refptr<PicturePileImpl> pile() { return pile_; } function in class:cc::FakePictureLayerTilingClient
36 const PicturePileImpl* pile() const { return pile_.get(); } function in class:cc::FakePictureLayerTilingClient
/external/chromium_org/cc/resources/
H A Dpicture_pile_impl_unittest.cc23 scoped_refptr<FakePicturePileImpl> pile = local
34 pile->add_draw_rect_with_paint(gfx::Rect(0, 0, 400, 400), solid_paint);
35 pile->RerecordPile();
42 pile->AnalyzeInRect(rect, 1.0, &analysis);
49 pile->add_draw_rect_with_paint(gfx::Rect(50, 50, 1, 1), non_solid_paint);
50 pile->RerecordPile();
53 pile->AnalyzeInRect(gfx::Rect(0, 0, 100, 100), 1.0, &analysis);
56 pile->AnalyzeInRect(gfx::Rect(100, 0, 100, 100), 1.0, &analysis);
62 pile->AnalyzeInRect(gfx::Rect(350, 0, 100, 100), 1.0, &analysis);
67 pile
81 scoped_refptr<FakePicturePileImpl> pile = local
139 scoped_refptr<FakePicturePileImpl> pile = local
155 scoped_refptr<FakePicturePileImpl> pile = local
212 scoped_refptr<FakePicturePileImpl> pile = local
285 scoped_refptr<FakePicturePileImpl> pile = local
395 scoped_refptr<FakePicturePileImpl> pile = local
526 scoped_refptr<FakePicturePileImpl> pile = local
649 scoped_refptr<FakePicturePileImpl> pile = local
722 scoped_refptr<FakePicturePileImpl> pile = local
764 scoped_refptr<FakePicturePileImpl> pile = local
824 scoped_refptr<FakePicturePileImpl> pile = local
[all...]
H A Dpicture_pile_impl_perftest.cc31 scoped_refptr<PicturePileImpl> pile = FakePicturePileImpl::CreateFilledPile( local
39 pile->AnalyzeInRect(content_rect, contents_scale, &analysis);
48 scoped_refptr<PicturePileImpl> pile = FakePicturePileImpl::CreateFilledPile( local
61 pile->RasterToBitmap(&canvas,
H A Dtile.h111 void set_picture_pile(scoped_refptr<PicturePileImpl> pile) { argument
112 DCHECK(pile->CanRaster(contents_scale_, content_rect_));
113 picture_pile_ = pile;
H A Dpicture_pile_impl.h118 ClonesForDrawing(const PicturePileImpl* pile, int num_threads);
H A Dtile_manager_perftest.cc154 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { argument
161 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
H A Dpicture_layer_tiling_set_unittest.cc217 ValidateTiling(target_->tiling_at(i), target_client_.pile());
221 const PicturePileImpl* pile) const {
231 EXPECT_EQ(tile->picture_pile(), pile);
H A Dpicture_pile_impl.cc24 const PicturePileImpl* pile, int num_threads) {
27 PicturePileImpl::CreateCloneForDrawing(pile, i);
183 // - Compute the clip of each of the pile chunks,
23 ClonesForDrawing( const PicturePileImpl* pile, int num_threads) argument
H A Dtile_manager_unittest.cc500 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { argument
507 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
/external/chromium_org/cc/layers/
H A Dpicture_layer_unittest.cc67 EXPECT_TRUE(layer_impl->pile()->tiling_rect() == gfx::Rect());
68 EXPECT_FALSE(layer_impl->pile()->HasRecordings());
75 PicturePile* pile = layer->GetPicturePileForTesting(); local
78 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization());
82 pile->SetUnsuitableForGpuRasterizationForTesting();
83 EXPECT_FALSE(pile->is_suitable_for_gpu_rasterization());
H A Dpicture_layer_impl_perftest.cc44 scoped_refptr<FakePicturePileImpl> pile = local
51 FakePictureLayerImpl::CreateWithPile(pending_tree, 7, pile);
H A Dpicture_image_layer_impl_unittest.cc69 layer->pile_ = tiling_client_.pile();
H A Dpicture_layer_impl_unittest.cc133 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { argument
140 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
166 PicturePileImpl* pile) {
172 EXPECT_EQ(pile, iter->picture_pile());
232 // Add 1x1 rects at the centers of each tile, then re-record pile contents
645 // Fill in some of active pile, but more of pending pile.
1606 // This pile will create tilings, but has no recordings so will not create any
2640 // This pile will create tilings, but has no recordings so will not create any
164 VerifyAllTilesExistAndHavePile( const PictureLayerTiling* tiling, PicturePileImpl* pile) argument
/external/chromium_org/third_party/openssl/openssl/crypto/engine/
H A Deng_table.c189 static void int_unregister_cb_doall_arg(ENGINE_PILE *pile, ENGINE *e) argument
193 while((n = sk_ENGINE_find(pile->sk, e)) >= 0)
195 (void)sk_ENGINE_delete(pile->sk, n);
196 pile->uptodate = 0;
198 if(pile->funct == e)
201 pile->funct = NULL;
337 static void int_cb_doall_arg(ENGINE_PILE *pile, ENGINE_PILE_DOALL *dall) argument
339 dall->cb(pile->nid, pile->sk, pile
[all...]
/external/openssl/crypto/engine/
H A Deng_table.c189 static void int_unregister_cb_doall_arg(ENGINE_PILE *pile, ENGINE *e) argument
193 while((n = sk_ENGINE_find(pile->sk, e)) >= 0)
195 (void)sk_ENGINE_delete(pile->sk, n);
196 pile->uptodate = 0;
198 if(pile->funct == e)
201 pile->funct = NULL;
337 static void int_cb_doall_arg(ENGINE_PILE *pile, ENGINE_PILE_DOALL *dall) argument
339 dall->cb(pile->nid, pile->sk, pile
[all...]
/external/chromium_org/cc/output/
H A Drenderer_pixeltest.cc1976 scoped_refptr<FakePicturePileImpl> pile = local
1980 pile->add_draw_bitmap_with_paint(bitmap, gfx::Point(), paint);
1981 pile->RerecordPile();
1997 PicturePileImpl::CreateFromOther(pile));
2106 scoped_refptr<FakePicturePileImpl> pile = local
2112 pile->add_draw_rect_with_paint(iter.rect(), red_paint);
2117 pile->add_draw_rect_with_paint(blue_layer_rect1, blue_paint);
2118 pile->add_draw_rect_with_paint(blue_layer_rect2, blue_paint);
2119 pile->RerecordPile();
2144 PicturePileImpl::CreateFromOther(pile));
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest.cc4658 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4663 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization());
4714 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4719 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization());
4729 pile->SetUnsuitableForGpuRasterizationForTesting();
4730 EXPECT_FALSE(pile->is_suitable_for_gpu_rasterization());
4734 // Since we are manually marking picture pile as unsuitable,
4779 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4784 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization());
4794 pile
[all...]
H A Dlayer_tree_host_impl_unittest.cc5486 scoped_refptr<FakePicturePileImpl> pile(FakePicturePileImpl::CreateFilledPile(
5490 FakePictureLayerImpl::CreateWithPile(host_impl_->pending_tree(), 3, pile);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 409 milliseconds