/third_party/flutter/skia/resources/lua/ |
D | slides.lua | 49 function drawSlide(canvas, slide, master_template) 51 if #slide == 1 then 53 canvas:drawText(slide[1].text, 320, 240, template[1]) 57 template = master_template.slide 63 if slide.blockstyle == "code" then 66 local height = #slide * (fm.descent - fm.ascent) 68 for i = 1, #slide do 69 local node = slide[i] 77 for i = 1, #slide do 78 local node = slide[i] [all …]
|
D | slides_utils.lua | 32 function pretty_print_slide(slide) 34 if slide.transition then 35 io.write(" transition = \"", slide.transition, "\",\n") 37 for i = 1, #slide do 38 local node = slide[i]
|
D | slides_content.lua | 3 < transition =slide>
|
D | slides_transitions.lua | 2 template = template.slide 203 slide = slide_transition,
|
/third_party/python/Doc/includes/ |
D | minidom-example.py | 37 for slide in slides: 38 handleSlide(slide) 40 def handleSlide(slide): argument 41 handleSlideTitle(slide.getElementsByTagName("title")[0]) 42 handlePoints(slide.getElementsByTagName("point")) 60 for slide in slides: 61 title = slide.getElementsByTagName("title")[0]
|
/third_party/ffmpeg/libavfilter/ |
D | f_drawgraph.c | 41 int slide; member 74 { "slide", "set slide mode", OFFSET(slide), AV_OPT_TYPE_INT, {.i64=0}, 0, 4, FLAGS, "slide" }, 75 … {"frame", "draw new frames", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "slide"}, 76 …{"replace", "replace old columns with new", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAG… 77 …{"scroll", "scroll from right to left", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "… 78 …{"rscroll", "scroll from left to right", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=3}, 0, 0, FLAGS, … 79 …{"picture", "display graph in single frame", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=4}, 0, 0, FLA… 112 if (s->slide == 4) { in init() 170 if (s->slide == 4 && s->nb_values >= s->values_size[0] / sizeof(float)) { in filter_frame() 194 if (s->slide != 4 || s->nb_values == 0) { in filter_frame() [all …]
|
D | vf_histogram.c | 37 int slide; member 361 if (s->slide == 2) { in filter_frame() 368 } else if (s->slide == 3) { in filter_frame() 466 if (s->thistogram && (s->slide == 4 || s->slide == 0)) { in filter_frame() 470 } else if (s->thistogram && s->slide == 4) { in filter_frame() 537 …{ "slide", "set slide mode", OFFSET(slide), AV_OPT_TYPE_INT, {.i64=1}, 0, 4,… 538 …{"frame", "draw new frames", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLA… 539 …{"replace", "replace old columns with new", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLA… 540 …{"scroll", "scroll from right to left", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLA… 541 …{"rscroll", "scroll from left to right", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=3}, 0, 0, FLA… [all …]
|
D | avf_ahistogram.c | 50 int slide; member 83 …{ "slide", "set sonogram sliding", OFFSET(slide), AV_OPT_TYPE_INT, {.i64=REPLACE}, 0, NB_SLIDES-1,… 353 if (s->slide == SCROLL) { in filter_frame() 363 if (s->slide == SCROLL || s->ypos >= s->h) in filter_frame()
|
/third_party/mindspore/mindspore/ccsrc/frontend/operator/ |
D | ops_front_infer_function.cc | 58 void CalcSlidePara(const AbstractBasePtrList &args_spec_list, SlideInfo *slide) { in CalcSlidePara() argument 85 slide->step = GetValue<int64_t>(arg_value); in CalcSlidePara() 86 slide->start = arg1; in CalcSlidePara() 87 slide->stop = arg2; in CalcSlidePara() 91 slide->start = arg1; in CalcSlidePara() 92 slide->stop = arg2; in CalcSlidePara() 96 slide->stop = arg1; in CalcSlidePara() 493 SlideInfo slide = {0, 1, 0}; in InferImplMakeRange() local 494 CalcSlidePara(args_spec_list, &slide); in InferImplMakeRange() 496 if (slide.step == 0) { in InferImplMakeRange() [all …]
|
/third_party/flutter/skia/tools/viewer/ |
D | SlideDir.cpp | 45 explicit SlideAdapter(sk_sp<Slide> slide) in SlideAdapter() argument 46 : fSlide(std::move(slide)) { in SlideAdapter() 96 SkMatrix SlideMatrix(const sk_sp<Slide>& slide, const SkRect& dst) { in SlideMatrix() argument 97 const auto slideSize = slide->getDimensions(); in SlideMatrix() 300 const auto& slide = fSlides[i]; in load() local 301 slide->load(winWidth, winHeight); in load() 303 const auto slideSize = slide->getDimensions(); in load() 310 auto slideMatrix = sksg::Matrix<SkMatrix>::Make(SlideMatrix(slide, slideRect)); in load() 311 auto adapter = sk_make_sp<SlideAdapter>(slide); in load() 317 slideGrp->addChild(MakeLabel(slide->getName(), in load() [all …]
|
D | Viewer.cpp | 81 static DEFINE_string(slide, "", "Start on this sample."); 637 if (auto slide = fact(name, path)) { in initSlides() local 638 dirSlides.push_back(slide); in initSlides() 639 fSlides.push_back(std::move(slide)); in initSlides() 681 sk_sp<Slide> slide(new GMSlide(std::move(gm))); in initSlides() local 682 fSlides.push_back(std::move(slide)); in initSlides() 693 sk_sp<Slide> slide(new SampleSlide(factory)); in initSlides() local 694 if (!CommandLineFlags::ShouldSkip(FLAGS_match, slide->getName().c_str())) { in initSlides() 695 fSlides.push_back(slide); in initSlides() 702 sk_sp<Slide> slide(new ParticlesSlide()); in initSlides() local [all …]
|
/third_party/skia/tools/viewer/ |
D | SlideDir.cpp | 58 explicit SlideAdapter(sk_sp<Slide> slide) in SlideAdapter() argument 59 : fSlide(std::move(slide)) { in SlideAdapter() 109 SkMatrix SlideMatrix(const sk_sp<Slide>& slide, const SkRect& dst) { in SlideMatrix() argument 110 const auto slideSize = slide->getDimensions(); in SlideMatrix() 310 const auto& slide = fSlides[i]; in load() local 311 slide->load(winWidth, winHeight); in load() 313 const auto slideSize = slide->getDimensions(); in load() 320 auto slideMatrix = sksg::Matrix<SkMatrix>::Make(SlideMatrix(slide, slideRect)); in load() 321 auto adapter = sk_make_sp<SlideAdapter>(slide); in load() 327 slideGrp->addChild(MakeLabel(slide->getName(), in load() [all …]
|
D | Viewer.cpp | 108 static DEFINE_string(slide, "", "Start on this sample."); 792 if (auto slide = fact(name, path)) { in initSlides() local 793 dirSlides.push_back(slide); in initSlides() 794 fSlides.push_back(std::move(slide)); in initSlides() 836 sk_sp<Slide> slide(new GMSlide(std::move(gm))); in initSlides() local 837 fSlides.push_back(std::move(slide)); in initSlides() 848 sk_sp<Slide> slide(new SampleSlide(factory)); in initSlides() local 849 if (!CommandLineFlags::ShouldSkip(FLAGS_match, slide->getName().c_str())) { in initSlides() 850 fSlides.push_back(slide); in initSlides() 857 sk_sp<Slide> slide(new ParticlesSlide()); in initSlides() local [all …]
|
/third_party/libnl/doc/stylesheets/ |
D | slidy.css | 95 div.slide { 121 div.slide.titlepage { 125 div.slide.titlepage.h1 { 129 div.slide h1 { 386 div.slide { 399 div.slide.hidden { display: block; visibility: visible } 407 body.single_slide div.slide { position: absolute } 415 div.slide pre { font-size: 60%; padding-left: 0.5em; } 420 div.slide { page-break-before: always } 422 div.slide.first-slide { page-break-before: avoid }
|
/third_party/flutter/skia/site/user/sample/ |
D | viewer.md | 25 …ll load only SKPs or slides matching that name; using `--slide <name>` will launch at that slide; … 27 …m slide to slide; up (↑) and down (↓) arrows to zoom in and out; clicking and draggi… 68 or `--slide` command-line options. The viewer will automatically bundle the
|
/third_party/ffmpeg/libavfilter/opencl/ |
D | xfade.cl | 91 void slide(__write_only image2d_t dst, 117 slide(dst, src1, src2, progress, direction); 126 slide(dst, src1, src2, progress, direction); 135 slide(dst, src1, src2, progress, direction); 144 slide(dst, src1, src2, progress, direction);
|
/third_party/skia/site/docs/user/sample/ |
D | viewer.md | 32 matching that name; using `--slide <name>` will launch at that slide; and you can start up 37 (→) arrows to move from slide to slide; up (↑) and down (↓) arrows to 38 zoom in and out; clicking and dragging will translate. Other display options and a slide
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | dismissible_test.dart | 152 await tester.pump(); // start the slide 153 await tester.pump(const Duration(seconds: 1)); // finish the slide and start shrinking... 171 await tester.pump(); // start the slide 187 await tester.pump(); // start the slide 598 await tester.pump(); // start the slide away 599 await tester.pump(const Duration(seconds: 1)); // finish the slide away 603 await tester.pump(); // start the slide away 604 …await tester.pump(const Duration(seconds: 1)); // finish the slide away (at which point the child …
|
/third_party/node/deps/npm/node_modules/slide/ |
D | README.md | 64 var asyncMap = require("slide").asyncMap 125 var chain = require("slide").chain
|
/third_party/ffmpeg/libavformat/ |
D | sbgdec.c | 55 int8_t in, out, slide; member 555 fade.slide = SBG_FADE_ADAPT; in parse_time_sequence() 1202 enum sbg_fade_type type = ev1->fade.slide | (ev1->fade.out & ev2->fade.in); in generate_transition() 1220 if (ev1->fade.slide) { in generate_transition() 1301 if (!ev1->fade.slide && ev1 >= ev2 && ev2->ts > INT64_MAX - period) in generate_intervals() 1304 ev1->ts_trans = ev1->fade.slide ? ev1->ts in generate_intervals() 1310 if (!ev1->fade.slide) { in generate_intervals()
|
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/ |
D | page_scaffold.dart | 34 /// If translucent, the main content may slide behind it. 52 /// Content can slide under the [navigationBar] when they're translucent.
|
/third_party/flutter/skia/site/dev/testing/ |
D | tests.md | 86 out/Debug/viewer --slide GM_newgmtest
|
/third_party/skia/site/docs/dev/testing/ |
D | tests.md | 79 out/Debug/viewer --slide GM_newgmtest
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | dismissible.dart | 59 /// to slide out of view. Following the slide animation, if [resizeDuration] is 71 /// the slide animation (if [resizeDuration] is null). If the Dismissible is a
|
/third_party/skia/site/docs/user/ |
D | tips.md | 24 out/Release/viewer --skps /tmp --slide layer_0.skp
|