Home
last modified time | relevance | path

Searched refs:is_selected (Results 1 – 25 of 1520) sorted by relevance

12345678910>>...61

/dports/www/firefox-legacy/firefox-52.8.0esr/testing/web-platform/tests/old-tests/webdriver/element_state/
H A Dselected_test.py14 self.assertEquals(element.is_selected(), True)
20 self.assertEquals(element.is_selected(), True)
26 self.assertEquals(element.is_selected(), True)
32 self.assertEquals(element.is_selected(), True)
38 self.assertEquals(element.is_selected(), True)
44 self.assertEquals(element.is_selected(), True)
50 self.assertEquals(element.is_selected(), True)
56 self.assertEquals(element.is_selected(), True)
62 self.assertEquals(element.is_selected(), True)
68 self.assertEquals(element.is_selected(), True)
[all …]
/dports/audio/ecasound/ecasound-2.9.3/libecasound/
H A Deca-control-objects.cpp110 DBC_REQUIRE(is_selected() == true); in remove_chainsetup()
203 is_selected() == false); in select_chainsetup()
330 if (is_selected() != true) { in edit_chainsetup()
386 DBC_REQUIRE(is_selected() == true); in set_chainsetup_processing_length_in_seconds()
406 DBC_REQUIRE(is_selected() == true); in set_chainsetup_processing_length_in_samples()
478 DBC_REQUIRE(is_selected()); in connect_chainsetup()
560 DBC_REQUIRE(is_selected()); in change_chainsetup_position()
589 DBC_REQUIRE(is_selected()); in change_chainsetup_position_samples()
615 DBC_REQUIRE(is_selected()); in set_chainsetup_position()
640 DBC_REQUIRE(is_selected()); in set_chainsetup_position_samples()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webdriver/pylib/test/selenium/webdriver/common/
H A Dform_handling_tests.py95 self.assertEqual(checkbox.is_selected(), False)
97 self.assertEqual(checkbox.is_selected(), True)
99 self.assertEqual(checkbox.is_selected(), False)
104 self.assertEqual(checkbox.is_selected(), False)
106 self.assertEqual(checkbox.is_selected(), True)
115 self.assertEqual(checkbox.is_selected(), True)
166 selected = option.is_selected()
235 self.assertEqual(True, cheese.is_selected())
236 self.assertEqual(False, peas.is_selected())
240 self.assertEqual(False, cheese.is_selected())
[all …]
H A Dselect_element_handling_tests.py31 self.assertTrue(one.is_selected())
32 self.assertFalse(two.is_selected())
35 self.assertFalse(one.is_selected())
36 self.assertTrue(two.is_selected())
44 if not option.is_selected():
49 self.assertTrue(option.is_selected(),
H A Dopacity_tests.py46 self.assertTrue(apples.is_selected())
47 self.assertFalse(oranges.is_selected())
50 self.assertFalse(apples.is_selected())
51 self.assertTrue(oranges.is_selected())
/dports/math/cgal/CGAL-5.3/include/CGAL/boost/graph/
H A Dselection.h37 IsFaceSelectedPMap is_selected, in extract_selection_boundary() argument
313 IsFaceSelectedPMap is_selected, in expand_face_selection() argument
382 IsFaceSelectedPMap is_selected, in reduce_face_selection() argument
505 IsSelectedMap is_selected, in regularize_face_selection_borders() argument
532 graph (mesh, is_selected, in regularize_face_selection_borders()
555 IsSelectedMap is_selected, in regularize_face_selection_borders() argument
576 IsSelectedMap is_selected, in regularize_face_selection_borders() argument
597 if (get(is_selected,f0) == get(is_selected,f1)) in regularize_face_selection_borders()
620 if (get(is_selected,selected) == get(is_selected,unselected)) in regularize_face_selection_borders()
644 if (get(is_selected,selected) == get(is_selected,unselected)) in regularize_face_selection_borders()
[all …]
/dports/games/simutrans/simutrans-121.0/
H A Dsimtool-dialogs.h62 bool is_selected() const OVERRIDE{ return win_get_magic(magic_mainhelp); } in is_selected() function
92 bool is_selected() const OVERRIDE{ return win_get_magic(magic_reliefmap); } in is_selected() function
230 bool is_selected() const OVERRIDE{ return win_get_magic(magic_jump); } in is_selected() function
245 bool is_selected() const OVERRIDE{ return win_get_magic(magic_load_t); } in is_selected() function
268 bool is_selected() const OVERRIDE{ return win_get_magic(magic_save_t); } in is_selected() function
282 bool is_selected() const OVERRIDE{ return win_get_magic(magic_load_t); } in is_selected() function
412 if (!is_selected()) { in init()
429 if (!is_selected()) { in init()
446 if (!is_selected()) { in init()
464 if (baum_t::get_count() > 0 && !is_selected()) { in init()
[all …]
/dports/devel/p5-Object-InsideOut/Object-InsideOut-4.05/t/
H A D35-add_class.t9 my %is_selected :Field;
11 sub is_selected
14 $is_selected{$$self} ||= 0;
15 return $is_selected{$$self} unless @_;
16 $is_selected{$$self} = shift;
41 can_ok('Bar', 'is_selected');
43 is($obj->is_selected(1), $obj, 'Returns self');
44 is($obj->is_selected(), 1, 'Selected');
/dports/devel/p5-Test-WWW-Selenium/Test-WWW-Selenium-1.36/t/
H A Dselenium-compat.t62 ok $sel->is_selected('id=foo', 'monkey');
67 ok !$sel->is_selected('id=foo', 'monkey');
72 ok $sel->is_selected('id=foo', 'label=monkey');
77 ok $sel->is_selected('id=foo', 'value=monkey');
82 ok $sel->is_selected('id=foo', 'id=monkey');
87 ok $sel->is_selected('id=foo', 'index=2');
92 ok !$sel->is_selected('id=foo', 'index=2');
98 throws_ok { $sel->is_selected('id=foo', 'value=monkey') }
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webdriver/pylib/selenium/webdriver/support/
H A Dexpected_conditions.py212 return self.element.is_selected()
221 return _find_element(driver, self.locator).is_selected()
228 def __init__(self, element, is_selected): argument
230 self.is_selected = is_selected
233 return self.element.is_selected() == self.is_selected
241 def __init__(self, locator, is_selected): argument
243 self.is_selected = is_selected
248 return element.is_selected() == self.is_selected
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webdriver/pylib/selenium/webdriver/support/
H A Dexpected_conditions.py212 return self.element.is_selected()
221 return _find_element(driver, self.locator).is_selected()
228 def __init__(self, element, is_selected): argument
230 self.is_selected = is_selected
233 return self.element.is_selected() == self.is_selected
241 def __init__(self, locator, is_selected): argument
243 self.is_selected = is_selected
248 return element.is_selected() == self.is_selected
/dports/accessibility/py-atspi/pyatspi-2.38.1/tests/dummyatk/
H A Dmy-atk-selection.c48 if (!self->is_selected[i]) in simple_selection_add_selection()
50 self->is_selected[i] = TRUE; in simple_selection_add_selection()
78 changed |= self->is_selected[i]; in simple_selection_clear_selection()
79 self->is_selected[i] = FALSE; in simple_selection_clear_selection()
105 if (self->is_selected[pos]) in simple_selection_ref_selection()
134 if (self->is_selected[i]) in simple_selection_get_selection_count()
154 return (self->is_selected[i]); in simple_selection_is_child_selected()
177 if (self->is_selected[pos]) in simple_selection_remove_selection()
181 self->is_selected[pos] = FALSE; in simple_selection_remove_selection()
212 changed |= !self->is_selected[i]; in simple_selection_select_all_selection()
[all …]
/dports/multimedia/qpwgraph/qpwgraph-71edb283e7b5d4429d5ef9951de6b740afb07790/src/
H A Dqpwgraph_connect.cpp214 const bool is_selected = value.toBool(); in itemChange() local
215 qpwgraph_item::setHighlight(is_selected); in itemChange()
217 m_port1->setSelectedEx(is_selected); in itemChange()
219 m_port2->setSelectedEx(is_selected); in itemChange()
241 setHighlightEx(port, is_selected); in setSelectedEx()
245 QGraphicsPathItem::setSelected(is_selected); in setSelectedEx()
246 if (is_selected) { in setSelectedEx()
248 m_port1->setSelectedEx(is_selected); in setSelectedEx()
250 m_port2->setSelectedEx(is_selected); in setSelectedEx()
253 if (!is_selected || (m_port1 && m_port2 in setSelectedEx()
[all …]
/dports/www/py-selenium/selenium-3.141.0/selenium/webdriver/support/
H A Dexpected_conditions.py329 return self.element.is_selected()
339 return _find_element(driver, self.locator).is_selected()
347 def __init__(self, element, is_selected): argument
349 self.is_selected = is_selected
352 return self.element.is_selected() == self.is_selected
361 def __init__(self, locator, is_selected): argument
363 self.is_selected = is_selected
368 return element.is_selected() == self.is_selected
/dports/games/tecnoballz/tecnoballz-0.93.1/src/
H A Dhandler_menu_events.cc225 is_selected = false; in check() local
229 is_selected = true; in check()
232 is_selected = true; in check()
293 return is_selected; in check()
316 is_selected = false; in check() local
321 is_selected = true; in check()
325 is_selected = true; in check()
405 is_selected = true; in check()
415 return is_selected; in check()
/dports/net/ryu/ryu-4.26/ryu/services/protocols/zebra/db/
H A Droute.py73 is_selected = Column(Boolean, default=False) variable in Route
118 is_selected=True): argument
162 if is_selected:
164 session, destination=destination, is_selected=True)
168 old_route.is_selected = False
178 is_selected=is_selected)
/dports/graphics/qgis/qgis-3.22.3/resources/function_help/json/
H A Dis_selected2 "name": "is_selected",
11 …"examples": [ { "expression": "is_selected()", "returns" : "True if the current feature in the cur…
17 …"examples": [ { "expression": "is_selected(@atlas_feature)", "returns": "True if the current atlas…
18 …{ "expression": "is_selected(get_feature('streets', 'name', 'Main St.')))", "returns": "True if th…
19 …{ "expression": "is_selected(get_feature_by_id('streets', 1))", "returns": "True if the feature wi…
26 …"examples": [ { "expression": "is_selected( 'streets', get_feature('streets', 'name', \"street_nam…
27 …{ "expression": "is_selected( 'streets', get_feature_by_id('streets', 1))", "returns": "True if th…
/dports/graphics/qgis-ltr/qgis-3.16.16/resources/function_help/json/
H A Dis_selected2 "name": "is_selected",
11 …"examples": [ { "expression": "is_selected()", "returns" : "True if the current feature in the cur…
17 …"examples": [ { "expression": "is_selected(@atlas_feature)", "returns": "True if a selected featur…
18 …{ "expression": "is_selected(get_feature(@layer, 'name', 'Main St.')))", "returns": "True if the u…
19 …{ "expression": "is_selected(get_feature_by_id(@layer, 1))", "returns": "True if the feature with …
26 …"examples": [ { "expression": "is_selected( 'streets', get_feature('streets', 'name', \"street_nam…
27 …{ "expression": "is_selected( 'streets', get_feature_by_id('streets', 1))", "returns": "True if th…
/dports/audio/lollypop/lollypop-5b2d95f4f8509d80fa86ab7d65b118326dc82a95/lollypop/
H A Dview_tracks.py211 if child.is_selected():
270 if row.is_selected():
283 is_selected = row.is_selected()
287 if children.is_selected() and not is_selected:
289 elif not children.is_selected() and is_selected:
298 if is_selected:
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/hats/
H A Dhats_finch_helper.cc147 bool is_selected = false; in CheckForDeviceSelection() local
149 is_selected = true; in CheckForDeviceSelection()
153 is_selected = is_selected && (trigger_id_.length() > 15); in CheckForDeviceSelection()
155 pref_service->SetBoolean(prefs::kHatsDeviceIsSelected, is_selected); in CheckForDeviceSelection()
156 device_is_selected_for_cycle_ = is_selected; in CheckForDeviceSelection()
/dports/www/p5-HTML-FillInForm/HTML-FillInForm-2.22/t/
H A D04_select.t41 my $is_selected = join(" ",map { m/selected/ ? "yes" : "no" } grep /option/, split ("\n",$output));
43 if ($is_selected eq "yes no no yes yes no no no no no yes no"){
46 print "Got unexpected is_seleced for select menus:\n$is_selected\n$output\n";
80 $is_selected = join(" ",map { m/selected/ ? "yes" : "no" } grep /option/, split ("\n",$output));
82 if ($is_selected eq "yes no no yes yes no no no no no yes no"){
85 print "Got unexpected is_selected for select menus:\n$is_selected\n$output\n";
/dports/www/p5-HTML-FillInForm-Lite/HTML-FillInForm-Lite-1.13/t/
H A D10compat.t41 my(%fdat, $hidden_form_in, $output, $fif, $is_checked, $is_selected, $html, $result);
173 $is_selected = join(" ",map { m/selected/ ? "yes" : "no" } grep /option/, split ("\n",$output));
175 is $is_selected, "yes no no yes yes no no no no no yes no",
207 $is_selected = join(" ",map { m/selected/ ? "yes" : "no" } grep /option/, split ("\n",$output));
209 is $is_selected, "yes no no yes yes no no no no no yes no",
260 $is_selected = join(" ",map { m/selected/ ? "yes" : "no" } grep /option/, split ("\n",$output));
262 is $is_selected, "no no no yes yes no no no no no yes no", "ignore_fields.t";
/dports/games/el/Eternal-Lands-1.9.5.9-1/
H A Dhud_statsbar_window.c171 statsinfo[watch_this_stats[i]-1].is_selected=0; in cm_statsbar_handler()
173 statsinfo[option].is_selected=1; in cm_statsbar_handler()
185 if (statsinfo[i].is_selected == 0) in cm_statsbar_handler()
194 statsinfo[next_free].is_selected =1 ; in cm_statsbar_handler()
320 if (last_selected[i] != statsinfo[i].is_selected) in recalc_exp_bar_text_len()
322 last_selected[i] = statsinfo[i].is_selected; in recalc_exp_bar_text_len()
353 statsinfo[watch_this_stats[0]-1].is_selected=1; in draw_exp_display()
630 statsinfo[stat-1].is_selected=1; in handle_stats_selection()
638 if (statsinfo[stat-1].is_selected==0) in handle_stats_selection()
642 statsinfo[stat-1].is_selected=1; in handle_stats_selection()
[all …]
/dports/math/gnumeric/gnumeric-1.12.50/src/
H A Dpattern.c59 gboolean const is_selected, GtkStyleContext *ctxt) in gnm_pattern_background_set() argument
63 g_return_val_if_fail (!is_selected || ctxt != NULL, FALSE); in gnm_pattern_background_set()
76 if (is_selected) { in gnm_pattern_background_set()
90 } else if (is_selected) { in gnm_pattern_background_set()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/System.Windows.Forms/
H A DListViewVirtualItemsSelectionRangeChangedEventArgs.cs33 private bool is_selected; field in System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs
42 this.is_selected = isSelected; in ListViewVirtualItemsSelectionRangeChangedEventArgs()
52 get { return this.is_selected; }

12345678910>>...61