/external/chromium_org/third_party/skia/src/core/ |
D | SkPictureStateTree.cpp | 15 , fStateStack(sizeof(Draw), 16) { in SkPictureStateTree() 24 *static_cast<Draw*>(fStateStack.push_back()) = fCurrentState; in SkPictureStateTree() 30 SkPictureStateTree::Draw* SkPictureStateTree::appendDraw(size_t offset) { in appendDraw() 31 Draw* draw = static_cast<Draw*>(fAlloc.allocThrow(sizeof(Draw))); in appendDraw() 38 *static_cast<Draw*>(fStateStack.push_back()) = fCurrentState; in appendSave() 43 *static_cast<Draw*>(fStateStack.push_back()) = fCurrentState; in appendSaveLayer() 62 fCurrentState = *static_cast<Draw*>(fStateStack.back()); in appendRestore() 144 Draw* draw = static_cast<Draw*>((*fDraws)[fPlaybackIndex]); in nextDraw()
|
D | SkRecordDraw.cpp | 11 for (SkRecords::Draw draw(canvas); draw.index() < record.count(); draw.next()) { in SkRecordDraw() 18 bool Draw::skip(const PairedPushCull& r) { in skip() 26 bool Draw::skip(const BoundedDrawPosTextH& r) { in skip() 31 template <> void Draw::draw(const NoOp&) {} in draw() 33 #define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; } 68 template <> void Draw::draw(const PairedPushCull& r) { this->draw(*r.base); } in draw() 69 template <> void Draw::draw(const BoundedDrawPosTextH& r) { this->draw(*r.base); } in draw()
|
D | SkPictureStateTree.h | 35 struct Draw { struct 39 bool operator<(const Draw& other) const { return fOffset < other.fOffset; } argument 50 Draw* appendDraw(size_t offset); 136 Draw fCurrentState;
|
D | SkRecordDraw.h | 20 class Draw : SkNoncopyable { 22 explicit Draw(SkCanvas* canvas) in Draw() function
|
D | SkBBoxHierarchyRecord.cpp | 25 SkPictureStateTree::Draw* draw = fStateTree->appendDraw(this->writeStream().bytesWritten()); in handleBBox() 110 SkPictureStateTree::Draw* draw = static_cast<SkPictureStateTree::Draw*>(data); in shouldRewind()
|
/external/skia/src/core/ |
D | SkPictureStateTree.cpp | 15 , fStateStack(sizeof(Draw), 16) { in SkPictureStateTree() 24 *static_cast<Draw*>(fStateStack.push_back()) = fCurrentState; in SkPictureStateTree() 30 SkPictureStateTree::Draw* SkPictureStateTree::appendDraw(size_t offset) { in appendDraw() 31 Draw* draw = static_cast<Draw*>(fAlloc.allocThrow(sizeof(Draw))); in appendDraw() 38 *static_cast<Draw*>(fStateStack.push_back()) = fCurrentState; in appendSave() 43 *static_cast<Draw*>(fStateStack.push_back()) = fCurrentState; in appendSaveLayer() 62 fCurrentState = *static_cast<Draw*>(fStateStack.back()); in appendRestore() 144 Draw* draw = static_cast<Draw*>((*fDraws)[fPlaybackIndex]); in nextDraw()
|
D | SkRecordDraw.cpp | 11 for (SkRecords::Draw draw(canvas); draw.index() < record.count(); draw.next()) { in SkRecordDraw() 18 bool Draw::skip(const PairedPushCull& r) { in skip() 26 bool Draw::skip(const BoundedDrawPosTextH& r) { in skip() 31 template <> void Draw::draw(const NoOp&) {} in draw() 33 #define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; } 68 template <> void Draw::draw(const PairedPushCull& r) { this->draw(*r.base); } in draw() 69 template <> void Draw::draw(const BoundedDrawPosTextH& r) { this->draw(*r.base); } in draw()
|
D | SkPictureStateTree.h | 35 struct Draw { struct 39 bool operator<(const Draw& other) const { return fOffset < other.fOffset; } argument 50 Draw* appendDraw(size_t offset); 136 Draw fCurrentState;
|
D | SkRecordDraw.h | 20 class Draw : SkNoncopyable { 22 explicit Draw(SkCanvas* canvas) in Draw() function
|
D | SkBBoxHierarchyRecord.cpp | 25 SkPictureStateTree::Draw* draw = fStateTree->appendDraw(this->writeStream().bytesWritten()); in handleBBox() 110 SkPictureStateTree::Draw* draw = static_cast<SkPictureStateTree::Draw*>(data); in shouldRewind()
|
/external/chromium_org/third_party/skia/samplecode/ |
D | SampleDraw.cpp | 87 class Draw : public SkRefCnt { class 89 Draw() : fFlags(0) {} in Draw() function in Draw 161 class RDraw : public Draw { 238 virtual Draw* create(const SkPoint&, const SkPoint&) = 0; 246 virtual Draw* create(const SkPoint& p0, const SkPoint& p1) { in create() 259 Draw* fDraw; 262 SkTDArray<Draw*> fList; 275 Draw* setDraw(Draw* d) { in setDraw() 284 Draw* hitTestList(SkScalar x, SkScalar y) const { in hitTestList() 285 Draw** first = fList.begin(); in hitTestList() [all …]
|
/external/skia/samplecode/ |
D | SampleDraw.cpp | 87 class Draw : public SkRefCnt { class 89 Draw() : fFlags(0) {} in Draw() function in Draw 161 class RDraw : public Draw { 238 virtual Draw* create(const SkPoint&, const SkPoint&) = 0; 246 virtual Draw* create(const SkPoint& p0, const SkPoint& p1) { in create() 259 Draw* fDraw; 262 SkTDArray<Draw*> fList; 275 Draw* setDraw(Draw* d) { in setDraw() 284 Draw* hitTestList(SkScalar x, SkScalar y) const { in hitTestList() 285 Draw** first = fList.begin(); in hitTestList() [all …]
|
/external/chromium_org/ui/compositor/test/ |
D | test_compositor_host_ozone.cc | 30 void Draw(); 65 void TestCompositorHostOzone::Draw() { in Draw() function in ui::TestCompositorHostOzone 67 compositor_->Draw(); in Draw()
|
D | test_compositor_host_x11.cc | 33 void Draw(); 86 void TestCompositorHostX11::Draw() { in Draw() function in ui::TestCompositorHostX11 88 compositor_->Draw(); in Draw()
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | vertical_gradient_view.mm | 26 // Draw gradient. 29 // Draw bottom stroke.
|
D | styled_text_field_cell.mm | 116 // Draw the outer stroke (over the background). 130 // Draw the shadow. For the rounded-rect case, the shadow needs to 149 // Draw optional bezel below bottom stroke. 164 // Draw the interior before the focus ring, to make sure nothing overlaps it. 167 // Draw the focus ring if needed.
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
D | SDL_BView.h | 73 Draw(bounds); in FrameResized() 84 virtual void Draw(BRect updateRect) { in Draw() function
|
/external/chromium_org/ui/aura/bench/ |
D | bench_main.cc | 117 Draw(); in OnCompositingEnded() 126 virtual void Draw() {} in Draw() function in __anon6097999b0111::BenchCompositorObserver 229 virtual void Draw() OVERRIDE { in Draw() function in __anon6097999b0111::WebGLBench 273 virtual void Draw() OVERRIDE { in Draw() function in __anon6097999b0111::SoftwareScrollBench
|
/external/chromium_org/mojo/examples/sample_app/ |
D | gles2_client_impl.cc | 72 cube_.Draw(); in HandleInputEvent() 113 cube_.Draw(); in DrawAnimationFrame()
|
/external/chromium_org/ui/gfx/image/ |
D | canvas_image_source.cc | 22 Draw(&canvas); in GetImageForScale()
|
D | canvas_image_source.h | 27 virtual void Draw(gfx::Canvas* canvas) = 0;
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
D | tab_strip_view.mm | 48 // Draw bottom border bitmap. Each tab is responsible for mimicking this bottom 75 // Draw the border bitmap, which is partially transparent. 96 // Draw drop-indicator arrow (if appropriate). 118 arrowTipPos.x = std::floor(arrowTipPos.x); // Draw on the pixel. 149 // Draw and fill the arrow.
|
/external/chromium_org/chrome/browser/ui/cocoa/download/ |
D | download_shelf_view.mm | 56 // Draw top stroke 63 // Draw the top highlight
|
/external/chromium_org/ppapi/examples/compositor/ |
D | spinning_cube.h | 20 void Draw();
|
/external/chromium_org/ppapi/examples/gles2_spinning_cube/ |
D | spinning_cube.h | 20 void Draw();
|