Home
last modified time | relevance | path

Searched refs:spots (Results 1 – 25 of 2705) sorted by relevance

12345678910>>...109

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/Test/System.Web.UI.WebControls/
H A DHotSpotCollectionTest.cs51 spots.Add(circle); in HotSpotCollection_Add()
60 spots.Add(new CircleHotSpot()); in HotSpotCollection_Insert()
61 spots.Add(new CircleHotSpot()); in HotSpotCollection_Insert()
64 spots.Insert(1,rect); in HotSpotCollection_Insert()
73 spots.Add(new CircleHotSpot()); in HotSpotCollection_Remove()
75 spots.Add(rect); in HotSpotCollection_Remove()
78 spots.Remove(rect); in HotSpotCollection_Remove()
87 spots.Add(circle1); in HotSpotCollection_RemoveAt()
89 spots.Add(rect); in HotSpotCollection_RemoveAt()
91 spots.Add(circle2); in HotSpotCollection_RemoveAt()
[all …]
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/ffs/ffs/cod/tests/
H A Dt5.c69 struct spot *spots; member
218 struct spot spots[2]; in main() local
245 spots[0].rate_section = 2; in main()
246 spots[0].length = 30; in main()
247 spots[0].bookend = 1; in main()
249 spots[0].end_date = 61701; in main()
264 spots[1].rate_section = 2; in main()
265 spots[1].length = 30; in main()
266 spots[1].bookend = 1; in main()
279 order.spots = (struct spot *)&spots; in main()
[all …]
/dports/devel/raylib/raylib-3.7.0/examples/shaders/
H A Dshaders_spotlight.c95 Spot spots[MAX_SPOTS]; in main() local
127 while ((fabs(spots[i].vel.x) + fabs(spots[i].vel.y)) < 2) in main()
136 SetShaderValue(shdrSpot, spots[i].posLoc, &spots[i].pos.x, SHADER_UNIFORM_VEC2); in main()
137 SetShaderValue(shdrSpot, spots[i].innerLoc, &spots[i].inner, SHADER_UNIFORM_FLOAT); in main()
138 SetShaderValue(shdrSpot, spots[i].radiusLoc, &spots[i].radius, SHADER_UNIFORM_FLOAT); in main()
165 spots[i].pos.x += spots[i].vel.x; in main()
166 spots[i].pos.y += spots[i].vel.y; in main()
168 if (spots[i].pos.x < 64) spots[i].vel.x = -spots[i].vel.x; in main()
169 if (spots[i].pos.x > (screenWidth - 64)) spots[i].vel.x = -spots[i].vel.x; in main()
170 if (spots[i].pos.y < 64) spots[i].vel.y = -spots[i].vel.y; in main()
[all …]
/dports/devel/raylib/raylib-3.7.0/examples/shaders/resources/shaders/glsl100/
H A Dspotlight.fs13 uniform Spot spots[MAX_SPOTS]; // Spotlight positions array
31 float dj = distance(pos, spots[j].pos) - spots[j].radius + spots[i].radius;
45 if (d > spots[0].radius) alpha = 1.0;
48 if (d < spots[0].inner) alpha = 0.0;
49 else alpha = (d - spots[0].inner)/(spots[0].radius - spots[0].inner);
54 if (d > spots[1].radius) alpha = 1.0;
57 if (d < spots[1].inner) alpha = 0.0;
58 else alpha = (d - spots[1].inner)/(spots[1].radius - spots[1].inner);
63 if (d > spots[2].radius) alpha = 1.0;
66 if (d < spots[2].inner) alpha = 0.0;
[all …]
/dports/graphics/art/ART-1.9.3/rtgui/
H A Dspot.cc177 spots = pp->spot.entries; in read()
193 pp->spot.entries = spots; in write()
199 if (!spots.empty()) { in resetPressed()
200 spots.clear(); in resetPressed()
284 int nbrEntry = spots.size(); in createGeometry()
371 …targetFeatherCircle.radius = float (spots.at (activeSpot).radius) * (1.f + spots.at (activeSpot).f… in updateGeometry()
459 activeSpot = spots.size() - 1; in addNewEntry()
485 spots.erase (i); in deleteSelectedEntry()
735spots.at (activeSpot).feather = LIM01<float> ((currPolar.radius - double (spots.at (activeSpot).ra… in drag1()
745spots.at (activeSpot).feather = LIM01<float> ((currPolar.radius - double (spots.at (activeSpot).ra… in drag1()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.UI.WebControls/
H A DImageMap.cs44 HotSpotCollection spots; field in System.Web.UI.WebControls.ImageMap
94 if (spots == null) {
95 spots = new HotSpotCollection ();
99 return spots;
106 if (spots != null) in TrackViewState()
107 ((IStateManager)spots).TrackViewState (); in TrackViewState()
113 object ob2 = spots != null ? ((IStateManager)spots).SaveViewState () : null; in SaveViewState()
148 if (spots != null && spots.Count > 0) in AddAttributesToRender()
156 if (spots != null && spots.Count > 0) { in Render()
161 for (int n=0; n<spots.Count; n++) { in Render()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL ()
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/gfortran.dg/
H A Dpr84523.f9015 type(t_spot), pointer :: spots(:) => NULL () component
27 allocate (rc%spots(nh))
33 if (associated (rc%spots)) then
34 if (size(rc%spots) .ne. nspots) stop 1
35 do k=1, size(rc% spots)
36 if (allocated (rc%spots(k)%vm)) stop 2 ! Would segfault in runtime.
38 deallocate (rc%spots)
40 nullify (rc%spots)
/dports/www/p5-HTML-FromText/HTML-FromText-2.07/lib/HTML/
H A DFromText.pm345 my %spots;
354 $spots{$key}++;
355 $spots{$spaces->{$pos}->{start}}++
357 $spots{$spaces->{$pos}->{end}}++
365 delete $spots{$spot};
369 if ( exists $spots{$space->{start}} && $spots{$space->{end}}) {
370 delete $spots{$spot};
377 my @spots = grep { $spots{$_} == @{$lines} } sort { $a <=> $b } keys %spots;
378 return @spots ? join( '', (
380 my $ret = 'A' . ( $spots[$_] - ( $_ == 0 ? 0 : $spots[$_ - 1] ) );
[all …]
/dports/devel/raylib/raylib-3.7.0/examples/shaders/resources/shaders/glsl330/
H A Dspotlight.fs20 uniform Spot spots[MAX_SPOTS]; // Spotlight positions array
38 float dj = distance(pos, spots[j].pos) - spots[j].radius + spots[i].radius;
52 if (d > spots[fi].radius) alpha = 1.0;
55 if (d < spots[fi].inner) alpha = 0.0;
56 else alpha = (d - spots[fi].inner) / (spots[fi].radius - spots[fi].inner);
/dports/deskutils/treeline/TreeLine/source/
H A Dtreeselection.py63 spots = self.selectedSpots()
64 spotSet = set(spots)
65 return treespotlist.TreeSpotList([spot for spot in spots if
216 def addToHistory(self, spots): argument
222 if spots and not self.restoreFlag and (not self.prevSpots or
223 spots != self.prevSpots[-1]):
224 self.prevSpots.append(spots)
233 for spots in histList:
234 spots[:] = [spot for spot in spots if spot.isValid()]
235 histList[:] = [spots for spots in histList if spots]

12345678910>>...109