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

/external/chromium_org/cc/test/
H A Dfake_picture_pile_impl.cc22 scoped_refptr<FakePicturePileImpl> pile(new FakePicturePileImpl());
23 pile->tiling().SetTilingSize(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));
90 PicturePileImpl* pile() { return pile_.get(); } function in class:cc::FakePictureLayerImpl
125 scoped_refptr<PicturePileImpl> pile);
128 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.cc15 scoped_refptr<PicturePileImpl> pile)
22 pile_ = pile;
29 scoped_refptr<PicturePileImpl> pile,
37 pile_ = pile;
13 FakePictureLayerImpl(LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile) argument
27 FakePictureLayerImpl(LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile, const gfx::Size& layer_bounds) argument
/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
821 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
60 pile->RasterToBitmap(&canvas,
H A Dtile.h134 void set_picture_pile(scoped_refptr<PicturePileImpl> pile) { argument
135 DCHECK(pile->CanRaster(contents_scale_, content_rect_))
139 picture_pile_ = pile;
H A Dtile_manager_perftest.cc160 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { argument
167 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
H A Dpicture_layer_tiling_set_unittest.cc364 const PicturePileImpl* pile) {
376 EXPECT_EQ(tile->picture_pile(), pile);
363 ValidateTiling(const PictureLayerTiling* tiling, const PicturePileImpl* pile) argument
H A Dpicture_layer_tiling.cc252 PicturePileImpl* pile = client_->GetPile(); local
254 it->second->set_picture_pile(pile);
763 // Tile holds a ref onto a picture pile. If the tile never gets invalidated
764 // and recreated, then that picture pile ref could exist indefinitely. To
765 // prevent this, ask the client to update the pile to its own ref. This
H A Dtile_manager_unittest.cc560 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { argument
567 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
/external/chromium_org/cc/layers/
H A Dpicture_layer_unittest.cc67 EXPECT_EQ(gfx::Size(), layer_impl->pile()->tiling_size());
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.cc55 scoped_refptr<FakePicturePileImpl> pile = local
62 FakePictureLayerImpl::CreateWithPile(pending_tree, 7, pile);
H A Dpicture_layer_impl.h179 void UpdatePile(scoped_refptr<PicturePileImpl> pile);
H A Dpicture_layer_impl_unittest.cc138 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { argument
146 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
173 PicturePileImpl* pile) {
181 EXPECT_EQ(pile, iter->picture_pile());
241 // Add 1x1 rects at the centers of each tile, then re-record pile contents
635 // Fill in some of active pile, but more of pending pile.
1188 pending_layer_->pile()->set_is_mask(true);
1189 active_layer_->pile()->set_is_mask(true);
1449 // Update properties with solid color pile shoul
171 VerifyAllTilesExistAndHavePile( const PictureLayerTiling* tiling, PicturePileImpl* pile) argument
4305 scoped_refptr<FakePicturePileImpl> pile = local
4341 PicturePile* pile = layer->GetPicturePileForTesting(); local
4417 PicturePile* pile = layer->GetPicturePileForTesting(); local
[all...]
H A Dpicture_layer_impl.cc153 void PictureLayerImpl::UpdatePile(scoped_refptr<PicturePileImpl> pile) { argument
155 pile_.swap(pile);
/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.cc1913 scoped_refptr<FakePicturePileImpl> pile = local
1917 pile->add_draw_bitmap_with_paint(bitmap, gfx::Point(), paint);
1918 pile->RerecordPile();
1934 PicturePileImpl::CreateFromOther(pile.get()));
2041 scoped_refptr<FakePicturePileImpl> pile = local
2047 pile->add_draw_rect_with_paint(iter.rect(), red_paint);
2052 pile->add_draw_rect_with_paint(blue_layer_rect1, blue_paint);
2053 pile->add_draw_rect_with_paint(blue_layer_rect2, blue_paint);
2054 pile->RerecordPile();
2079 PicturePileImpl::CreateFromOther(pile
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest.cc4773 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4778 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization());
4829 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4834 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization());
4844 pile->SetUnsuitableForGpuRasterizationForTesting();
4845 EXPECT_FALSE(pile->is_suitable_for_gpu_rasterization());
4849 // Since we are manually marking picture pile as unsuitable,
4894 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4899 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization());
4909 pile
[all...]
H A Dlayer_tree_host_impl_unittest.cc5750 scoped_refptr<FakePicturePileImpl> pile(FakePicturePileImpl::CreateFilledPile(
5754 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 299 milliseconds