HomeSort by relevance Sort by last modified time
    Searched refs:pile (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/cc/test/
fake_picture_pile_impl.cc 22 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...]
fake_picture_layer_impl.h 20 // 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,
fake_picture_layer_impl.cc 16 scoped_refptr<PicturePileImpl> pile)
19 pile_ = pile;
20 CHECK(pile->tiling_rect().origin() == gfx::Point());
27 scoped_refptr<PicturePileImpl> pile,
30 pile_ = pile;
fake_picture_layer_tiling_client.h 35 scoped_refptr<PicturePileImpl> pile() { return pile_; } function in class:cc::FakePictureLayerTilingClient
36 const PicturePileImpl* pile() const { return pile_.get(); } function in class:cc::FakePictureLayerTilingClient
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
DequeMap.java 43 Deque<V> pile = mMap.get(key); local
44 if (pile == null) {
45 pile = Lists.newLinkedList();
46 mMap.put(key, pile);
48 pile.add(item);
61 final Deque<V> pile = mMap.get(key); local
62 if (pile == null) {
65 return pile.poll();
78 final Deque<V> pile = mMap.get(key); local
79 if (pile == null)
    [all...]
  /external/chromium_org/cc/resources/
picture_pile_impl_unittest.cc 23 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->AnalyzeInRect(gfx::Rect(0, 350, 100, 100), 1.0, &analysis)
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...]
picture_pile_impl_perftest.cc 31 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,
tile.h 111 void set_picture_pile(scoped_refptr<PicturePileImpl> pile) {
112 DCHECK(pile->CanRaster(contents_scale_, content_rect_));
113 picture_pile_ = pile;
picture_pile_impl.h 118 ClonesForDrawing(const PicturePileImpl* pile, int num_threads);
tile_manager_perftest.cc 154 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) {
161 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
picture_layer_tiling_set_unittest.cc 217 ValidateTiling(target_->tiling_at(i), target_client_.pile());
221 const PicturePileImpl* pile) const {
231 EXPECT_EQ(tile->picture_pile(), pile);
picture_pile_impl.cc 24 const PicturePileImpl* pile, int num_threads) {
27 PicturePileImpl::CreateCloneForDrawing(pile, i);
183 // - Compute the clip of each of the pile chunks,
tile_manager_unittest.cc 500 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) {
507 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile);
    [all...]
  /external/chromium_org/cc/layers/
picture_layer_unittest.cc 67 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());
picture_layer_impl_perftest.cc 44 scoped_refptr<FakePicturePileImpl> pile = local
51 FakePictureLayerImpl::CreateWithPile(pending_tree, 7, pile);
picture_image_layer_impl_unittest.cc 69 layer->pile_ = tiling_client_.pile();
picture_layer_impl_unittest.cc 133 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) {
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.
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_table.c 189 static void int_unregister_cb_doall_arg(ENGINE_PILE *pile, ENGINE *e)
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)
339 dall->cb(pile->nid, pile->sk, pile->funct, dall->arg)
    [all...]
  /external/openssl/crypto/engine/
eng_table.c 189 static void int_unregister_cb_doall_arg(ENGINE_PILE *pile, ENGINE *e)
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)
339 dall->cb(pile->nid, pile->sk, pile->funct, dall->arg)
    [all...]
  /external/chromium_org/cc/output/
renderer_pixeltest.cc 1976 scoped_refptr<FakePicturePileImpl> pile = local
2106 scoped_refptr<FakePicturePileImpl> pile = local
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_unittest.cc 4658 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4714 PicturePile* pile = layer->GetPicturePileForTesting(); variable
4779 PicturePile* pile = layer->GetPicturePileForTesting(); variable
    [all...]
layer_tree_host_impl_unittest.cc     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.core_2.2.0.v20100429.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.core_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.core_2.3.5.v20130525.jar 

Completed in 466 milliseconds