/external/chromium_org/cc/resources/ |
D | picture_pile_impl_unittest.cc | 23 scoped_refptr<FakePicturePileImpl> pile = in TEST() local 34 pile->add_draw_rect_with_paint(gfx::Rect(0, 0, 400, 400), solid_paint); in TEST() 35 pile->RerecordPile(); in TEST() 42 pile->AnalyzeInRect(rect, 1.0, &analysis); in TEST() 49 pile->add_draw_rect_with_paint(gfx::Rect(50, 50, 1, 1), non_solid_paint); in TEST() 50 pile->RerecordPile(); in TEST() 53 pile->AnalyzeInRect(gfx::Rect(0, 0, 100, 100), 1.0, &analysis); in TEST() 56 pile->AnalyzeInRect(gfx::Rect(100, 0, 100, 100), 1.0, &analysis); in TEST() 62 pile->AnalyzeInRect(gfx::Rect(350, 0, 100, 100), 1.0, &analysis); in TEST() 67 pile->AnalyzeInRect(gfx::Rect(0, 350, 100, 100), 1.0, &analysis); in TEST() [all …]
|
D | picture_pile_impl_perftest.cc | 31 scoped_refptr<PicturePileImpl> pile = FakePicturePileImpl::CreateFilledPile( in RunAnalyzeTest() local 39 pile->AnalyzeInRect(content_rect, contents_scale, &analysis); in RunAnalyzeTest() 48 scoped_refptr<PicturePileImpl> pile = FakePicturePileImpl::CreateFilledPile( in RunRasterTest() local 60 pile->RasterToBitmap(&canvas, in RunRasterTest()
|
D | tile.h | 134 void set_picture_pile(scoped_refptr<PicturePileImpl> pile) { in set_picture_pile() argument 135 DCHECK(pile->CanRaster(contents_scale_, content_rect_)) in set_picture_pile() 139 picture_pile_ = pile; in set_picture_pile()
|
D | tile_manager_perftest.cc | 160 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { in SetupPendingTree() argument 167 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile); in SetupPendingTree()
|
D | picture_layer_tiling_set_unittest.cc | 364 const PicturePileImpl* pile) { in ValidateTiling() argument 376 EXPECT_EQ(tile->picture_pile(), pile); in ValidateTiling()
|
D | picture_layer_tiling.cc | 252 PicturePileImpl* pile = client_->GetPile(); in UpdateTilesToCurrentPile() local 254 it->second->set_picture_pile(pile); in UpdateTilesToCurrentPile()
|
D | tile_manager_unittest.cc | 560 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { in SetupPendingTree() argument 567 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile); in SetupPendingTree()
|
/external/chromium_org/cc/test/ |
D | fake_picture_pile_impl.cc | 22 scoped_refptr<FakePicturePileImpl> pile(new FakePicturePileImpl()); in CreateFilledPile() local 23 pile->tiling().SetTilingSize(layer_bounds); in CreateFilledPile() 24 pile->tiling().SetMaxTextureSize(tile_size); in CreateFilledPile() 25 pile->SetTileGridSize(ImplSidePaintingSettings().default_tile_size); in CreateFilledPile() 26 pile->recorded_viewport_ = gfx::Rect(layer_bounds); in CreateFilledPile() 27 pile->has_any_recordings_ = true; in CreateFilledPile() 28 for (int x = 0; x < pile->tiling().num_tiles_x(); ++x) { in CreateFilledPile() 29 for (int y = 0; y < pile->tiling().num_tiles_y(); ++y) in CreateFilledPile() 30 pile->AddRecordingAt(x, y); in CreateFilledPile() 32 return pile; in CreateFilledPile() [all …]
|
D | fake_picture_layer_impl.h | 22 LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile) { in CreateWithPile() argument 23 return make_scoped_ptr(new FakePictureLayerImpl(tree_impl, id, pile)); in CreateWithPile() 30 scoped_refptr<PicturePileImpl> pile, in CreateWithPartialPile() argument 33 new FakePictureLayerImpl(tree_impl, id, pile, layer_bounds)); in CreateWithPartialPile() 90 PicturePileImpl* pile() { return pile_.get(); } in pile() function 125 scoped_refptr<PicturePileImpl> pile); 128 scoped_refptr<PicturePileImpl> pile,
|
D | fake_picture_layer_impl.cc | 15 scoped_refptr<PicturePileImpl> pile) in FakePictureLayerImpl() argument 22 pile_ = pile; in FakePictureLayerImpl() 29 scoped_refptr<PicturePileImpl> pile, in FakePictureLayerImpl() argument 37 pile_ = pile; in FakePictureLayerImpl()
|
/external/openssl/crypto/engine/ |
D | eng_table.c | 189 static void int_unregister_cb_doall_arg(ENGINE_PILE *pile, ENGINE *e) in int_unregister_cb_doall_arg() argument 193 while((n = sk_ENGINE_find(pile->sk, e)) >= 0) in int_unregister_cb_doall_arg() 195 (void)sk_ENGINE_delete(pile->sk, n); in int_unregister_cb_doall_arg() 196 pile->uptodate = 0; in int_unregister_cb_doall_arg() 198 if(pile->funct == e) in int_unregister_cb_doall_arg() 201 pile->funct = NULL; in int_unregister_cb_doall_arg() 337 static void int_cb_doall_arg(ENGINE_PILE *pile, ENGINE_PILE_DOALL *dall) in int_cb_doall_arg() argument 339 dall->cb(pile->nid, pile->sk, pile->funct, dall->arg); in int_cb_doall_arg()
|
D | README | 137 pointers to ENGINEs that implement that particular 'nid'. Each "pile" uses some 140 a change is made to the pile, eg. perhaps an ENGINE was unloaded. The reason is 150 that is unset only if un/registration takes place on that pile. Ie. if 154 try to initialise from the "pile" will be those that are already initialised 164 or will have a single ENGING_PILE hashed to by the 'nid' 1 and that pile
|
/external/chromium_org/cc/layers/ |
D | picture_layer_unittest.cc | 67 EXPECT_EQ(gfx::Size(), layer_impl->pile()->tiling_size()); in TEST() 68 EXPECT_FALSE(layer_impl->pile()->HasRecordings()); in TEST() 75 PicturePile* pile = layer->GetPicturePileForTesting(); in TEST() local 78 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization()); in TEST() 82 pile->SetUnsuitableForGpuRasterizationForTesting(); in TEST() 83 EXPECT_FALSE(pile->is_suitable_for_gpu_rasterization()); in TEST()
|
D | picture_layer_impl_perftest.cc | 55 scoped_refptr<FakePicturePileImpl> pile = in SetupPendingTree() local 62 FakePictureLayerImpl::CreateWithPile(pending_tree, 7, pile); in SetupPendingTree()
|
D | picture_layer_impl_unittest.cc | 138 void SetupPendingTree(scoped_refptr<PicturePileImpl> pile) { in SetupPendingTree() argument 146 FakePictureLayerImpl::CreateWithPile(pending_tree, id_, pile); in SetupPendingTree() 173 PicturePileImpl* pile) { in VerifyAllTilesExistAndHavePile() argument 181 EXPECT_EQ(pile, iter->picture_pile()); in VerifyAllTilesExistAndHavePile() 1188 pending_layer_->pile()->set_is_mask(true); in TEST_F() 1189 active_layer_->pile()->set_is_mask(true); in TEST_F() 2554 static_cast<FakePicturePileImpl*>(pending_layer_->pile())->set_has_text(true); in TEST_F() 2555 static_cast<FakePicturePileImpl*>(active_layer_->pile())->set_has_text(true); in TEST_F() 4305 scoped_refptr<FakePicturePileImpl> pile = in TEST_F() local 4307 SetupPendingTree(pile); in TEST_F() [all …]
|
D | picture_layer_impl.h | 179 void UpdatePile(scoped_refptr<PicturePileImpl> pile);
|
D | picture_layer_impl.cc | 153 void PictureLayerImpl::UpdatePile(scoped_refptr<PicturePileImpl> pile) { in UpdatePile() argument 155 pile_.swap(pile); in UpdatePile()
|
/external/chromium_org/cc/output/ |
D | renderer_pixeltest.cc | 1913 scoped_refptr<FakePicturePileImpl> pile = in TYPED_TEST() local 1917 pile->add_draw_bitmap_with_paint(bitmap, gfx::Point(), paint); in TYPED_TEST() 1918 pile->RerecordPile(); in TYPED_TEST() 1934 PicturePileImpl::CreateFromOther(pile.get())); in TYPED_TEST() 2041 scoped_refptr<FakePicturePileImpl> pile = in TYPED_TEST() local 2047 pile->add_draw_rect_with_paint(iter.rect(), red_paint); in TYPED_TEST() 2052 pile->add_draw_rect_with_paint(blue_layer_rect1, blue_paint); in TYPED_TEST() 2053 pile->add_draw_rect_with_paint(blue_layer_rect2, blue_paint); in TYPED_TEST() 2054 pile->RerecordPile(); in TYPED_TEST() 2079 PicturePileImpl::CreateFromOther(pile.get())); in TYPED_TEST()
|
/external/openssl/crypto/dh/ |
D | generate | 24 a large pile of simultaneous equations and then solves them);
|
/external/chromium_org/cc/trees/ |
D | layer_tree_host_unittest.cc | 4773 PicturePile* pile = layer->GetPicturePileForTesting(); in BeginTest() local 4778 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization()); in BeginTest() 4829 PicturePile* pile = layer->GetPicturePileForTesting(); in BeginTest() local 4834 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization()); in BeginTest() 4844 pile->SetUnsuitableForGpuRasterizationForTesting(); in BeginTest() 4845 EXPECT_FALSE(pile->is_suitable_for_gpu_rasterization()); in BeginTest() 4894 PicturePile* pile = layer->GetPicturePileForTesting(); in BeginTest() local 4899 EXPECT_TRUE(pile->is_suitable_for_gpu_rasterization()); in BeginTest() 4909 pile->SetUnsuitableForGpuRasterizationForTesting(); in BeginTest() 4910 EXPECT_FALSE(pile->is_suitable_for_gpu_rasterization()); in BeginTest()
|
/external/chromium_org/third_party/icu/source/samples/ufortune/resources/ |
D | root.txt | 117 have turned into a pile of dust.",
|
/external/llvm/test/Transforms/InstCombine/ |
D | objsize.ll | 1 ; Test a pile of objectsize bounds checking.
|
/external/icu/icu4c/source/samples/ufortune/resources/ |
D | root.txt | 117 have turned into a pile of dust.",
|
/external/valgrind/main/docs/internals/ |
D | threads-syscalls-signals.txt | 210 enough to simply block it, because that will cause a pile of queued
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 356 pile-time options that do not correspond to anything in Perl: 556 pile(). It is used in the standard PCRE tests to check behaviour with
|