Home
last modified time | relevance | path

Searched refs:add_selection (Results 1 – 25 of 234) sorted by relevance

12345678910

/dports/devel/p5-Form-Sensible/Form-Sensible-0.20023/t/fields/
H A Dselect.t53 $select_field->add_selection('white');
57 $select_field->add_selection('white', 'sour');
85 $select_field->add_selection('foo_five');
91 $select_field->add_selection('foo_good');
93 is_deeply($select_field->value(), [ 'foo_five', 'foo_good' ], "all values added via add_selection a…
101 is_deeply($select_field->value(), [ 'foo_good', 'foo_are' ], "add_selection / set_selection can cop…
103 $select_field->add_selection('foo_good');
105 is_deeply($select_field->value(), [ 'foo_good', 'foo_are' ], "add_selection prevents option duplica…
107 $select_field->add_selection('foo_very', 'foo_very', 'foo_very');
109 is_deeply($select_field->value(), [ 'foo_good', 'foo_are', 'foo_very' ], "add_selection prevents op…
/dports/graphics/py-altair/altair-4.1.0/altair/examples/
H A Dmultiple_interactions.py45 filter_year = base.add_selection(
55 filter_genres = base.add_selection(
69 highlight_ratings = base.add_selection(
84 budget_sizing = base.add_selection(
H A Dseattle_weather_interactive.py36 ).add_selection(
51 ).add_selection(
H A Dinteractive_brush.py19 ).add_selection(brush)
/dports/graphics/py-altair/altair-4.1.0/altair/vegalite/v4/tests/
H A Dtest_api.py369 chart = alt.Chart().add_selection(single)
370 chart = chart.add_selection(multi, interval)
571 .add_selection(selections[0])
572 .add_selection(selections[1], selections[2])
581 chart1 = base.add_selection(selection).repeat(list("ABC"))
589 chart1 = base.add_selection(selection).facet("val:Q")
590 chart2 = base.facet("val:Q").add_selection(selection)
597 chart1 = alt.layer(base.add_selection(selection), base)
598 chart2 = alt.layer(base, base).add_selection(selection)
606 chart1 = charttype(base.add_selection(selection), base.add_selection(selection))
[all …]
/dports/graphics/py-altair/altair-4.1.0/altair/vegalite/v3/tests/
H A Dtest_api.py370 chart = alt.Chart().add_selection(single)
371 chart = chart.add_selection(multi, interval)
542 .add_selection(selections[0])
543 .add_selection(selections[1], selections[2])
552 chart1 = base.add_selection(selection).repeat(list("ABC"))
560 chart1 = base.add_selection(selection).facet("val:Q")
561 chart2 = base.facet("val:Q").add_selection(selection)
568 chart1 = alt.layer(base.add_selection(selection), base)
569 chart2 = alt.layer(base, base).add_selection(selection)
577 chart1 = charttype(base.add_selection(selection), base.add_selection(selection))
[all …]
/dports/accessibility/atkmm/atkmm-2.28.0/atk/atkmm/
H A Dselection.cc90 klass->add_selection = &add_selection_vfunc_callback; in iface_init_function()
135 if(base && base->add_selection) in add_selection_vfunc_callback()
136 return (*base->add_selection)(self, i); in add_selection_vfunc_callback()
474 bool Selection::add_selection(int i) in add_selection() function in Atk::Selection
534 if(base && base->add_selection) in add_selection_vfunc()
536 bool retval((*base->add_selection)(gobj(),i)); in add_selection_vfunc()
/dports/graphics/py-altair/altair-4.1.0/altair/vegalite/v3/
H A Dapi.py1721 def add_selection(self, *selections): member in Chart
1757 return self.add_selection(
1847 def add_selection(self, *selections): member in RepeatChart
1852 copy.spec = copy.spec.add_selection(*selections)
1900 def add_selection(self, *selections): member in ConcatChart
1936 def add_selection(self, *selections): member in HConcatChart
1972 def add_selection(self, *selections): member in VConcatChart
2046 def add_selection(self, *selections): member in LayerChart
2051 copy.layer[0] = copy.layer[0].add_selection(*selections)
2091 def add_selection(self, *selections): member in FacetChart
[all …]
/dports/accessibility/atkmm/atkmm-2.28.0/atk/src/
H A Dselection.hg52 _WRAP_METHOD(bool add_selection(int i), atk_selection_add_selection)
63 _WRAP_VFUNC(bool add_selection(int i), add_selection)
/dports/games/el/Eternal-Lands-1.9.5.9-1/
H A Dselect.cpp35 bool add_selection = false; variable
225 read_selection = add_selection; in reset_under_the_mouse()
226 add_selection = read_mouse_now; in reset_under_the_mouse()
404 if (add_selection && (object_type != UNDER_MOUSE_NOTHING) && in anything_under_the_mouse()
/dports/devel/p5-Form-Sensible/Form-Sensible-0.20023/lib/Form/Sensible/Field/
H A DSelect.pm88 return $self->add_selection(@_);
91 sub add_selection { method in Form::Sensible::Field::Select
/dports/graphics/py-altair/altair-4.1.0/altair/vegalite/v4/
H A Dapi.py1986 def add_selection(self, *selections): member in Chart
2022 return self.add_selection(
2112 def add_selection(self, *selections): member in RepeatChart
2117 copy.spec = copy.spec.add_selection(*selections)
2165 def add_selection(self, *selections): member in ConcatChart
2201 def add_selection(self, *selections): member in HConcatChart
2237 def add_selection(self, *selections): member in VConcatChart
2311 def add_selection(self, *selections): member in LayerChart
2316 copy.layer[0] = copy.layer[0].add_selection(*selections)
2356 def add_selection(self, *selections): member in FacetChart
[all …]
/dports/accessibility/atk/atk-2.36.0/atk/
H A Datkselection.c120 if (iface->add_selection) in atk_selection_add_selection()
121 return (iface->add_selection) (obj, i); in atk_selection_add_selection()
/dports/www/castor/castor-0.8.16/cargo-crates/atk-0.8.0/src/auto/
H A Dselection.rs28 fn add_selection(&self, i: i32) -> bool; in add_selection() method
46 fn add_selection(&self, i: i32) -> bool { in add_selection() method
/dports/x11/squeekboard/squeekboard-d49ce45de0956432cef9b957f806d9377fee4bc0/cargo-crates/atk-0.7.0/src/auto/
H A Dselection.rs28 fn add_selection(&self, i: i32) -> bool; in add_selection() method
46 fn add_selection(&self, i: i32) -> bool { in add_selection() method
/dports/net-im/fractal/fractal-4.4.0/vendor/atk/src/auto/
H A Dselection.rs28 fn add_selection(&self, i: i32) -> bool; in add_selection() method
46 fn add_selection(&self, i: i32) -> bool { in add_selection() method
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/atk-0.14.0/src/auto/
H A Dselection.rs28 fn add_selection(&self, i: i32) -> bool; in add_selection() method
54 fn add_selection(&self, i: i32) -> bool { in add_selection() method
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/atk-0.14.0/src/auto/
H A Dselection.rs28 fn add_selection(&self, i: i32) -> bool; in add_selection() method
54 fn add_selection(&self, i: i32) -> bool { in add_selection() method
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/atk-0.14.0/src/auto/
H A Dselection.rs28 fn add_selection(&self, i: i32) -> bool; in add_selection() method
54 fn add_selection(&self, i: i32) -> bool { in add_selection() method
/dports/x11/sirula/sirula-1.0.0/cargo-crates/atk-0.14.0/src/auto/
H A Dselection.rs28 fn add_selection(&self, i: i32) -> bool; in add_selection() method
54 fn add_selection(&self, i: i32) -> bool { in add_selection() method
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/accessibility/gtk/
H A DAtkSelectionIface.java20 public long add_selection; field in AtkSelectionIface
H A DAtkTextIface.java46 public long add_selection; field in AtkTextIface
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/internal/accessibility/gtk/
H A DAtkSelectionIface.java20 public long add_selection; field in AtkSelectionIface
H A DAtkTextIface.java46 public long add_selection; field in AtkTextIface
/dports/devel/p5-Test-WWW-Selenium/Test-WWW-Selenium-1.36/util/
H A Dtest_function.pl16 $sel->add_selection('name=order', '100 lbs. blueberries');

12345678910