Home
last modified time | relevance | path

Searched refs:is_on (Results 1 – 25 of 2223) sorted by relevance

12345678910>>...89

/dports/net/c3270/suite3270-4.0/Common/b3270/
H A Dstatus.c75 static bool is_on = false; in status_compose() local
77 if (on == is_on) { in status_compose()
80 is_on = on; in status_compose()
111 if (on == is_on) { in status_insert_mode()
114 is_on = on; in status_insert_mode()
231 if (on == is_on) { in status_reverse_mode()
234 is_on = on; in status_reverse_mode()
256 if (on == is_on) { in status_script()
259 is_on = on; in status_script()
396 if (on == is_on) { in status_typeahead()
[all …]
/dports/x11/x3270/suite3270-4.0/Common/b3270/
H A Dstatus.c75 static bool is_on = false; in status_compose() local
77 if (on == is_on) { in status_compose()
80 is_on = on; in status_compose()
111 if (on == is_on) { in status_insert_mode()
114 is_on = on; in status_insert_mode()
231 if (on == is_on) { in status_reverse_mode()
234 is_on = on; in status_reverse_mode()
256 if (on == is_on) { in status_script()
259 is_on = on; in status_script()
396 if (on == is_on) { in status_typeahead()
[all …]
/dports/biology/py-resdk/resdk-13.8.0/src/resdk/
H A Dresdk_logger.py103 def _configure_handler(handler, is_on=None, level=None): argument
116 if is_on is not None:
117 if isinstance(is_on, bool):
118 if is_on:
136 def log_to_stdout(is_on=None, level=None): argument
146 _configure_handler(STDOUT_HANDLER, is_on=is_on, level=level)
165 log_to_stdout(is_on=STDOUT_LOG_ON, level=logging_level or STDOUT_LOG_LEVEL)
/dports/multimedia/nordlicht/nordlicht-0.4.5/utils/
H A Dmpv-nordlicht.lua39 local was_on = is_on
90 if not is_on then
92 is_on = true
97 if is_on then
102 is_on = false
107 if is_on then
115 if not is_on then
126 local was_on = is_on
148 if absolute_mouse_y <= mh+height and is_on then
157 is_on = false
/dports/devel/libcwd/libcwd-1.0.6/utils/
H A Drcfile.cc99 bool warning_on = channels::dc::warning.is_on(); in M_determine_rcfile_name()
159 while (!debugChannel.is_on()); in M_process_channel()
198 Debug( while(!dc::rcfile.is_on()) dc::rcfile.on() ); in read()
206 M_malloc_on = libcwd::channels::dc::malloc.is_on(); in read()
208 M_bfd_on = libcwd::channels::dc::bfd.is_on(); in read()
231 Debug( if (dc::rcfile.is_on()) dc::rcfile.off() ); in read()
250 bool warning_on = channels::dc::warning.is_on(); in read()
278 if (debugChannel.is_on()) in read()
305 bool warning_on = channels::dc::warning.is_on(); in read()
319 while (!channels::dc::malloc.is_on()) in read()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/system/network/
H A Dnetwork_section_header_view.cc88 void NetworkSectionHeaderView::SetToggleState(bool toggle_enabled, bool is_on) { in SetToggleState() argument
91 toggle_->AnimateIsOn(is_on); in SetToggleState()
242 void MobileSectionHeaderView::OnToggleToggled(bool is_on) { in OnToggleToggled() argument
250 if (is_on && IsCellularSimLocked()) { in OnToggleToggled()
254 model()->SetNetworkTypeEnabledState(NetworkType::kCellular, is_on); in OnToggleToggled()
268 if (is_on && !waiting_for_tether_initialize_) in OnToggleToggled()
274 model()->SetNetworkTypeEnabledState(NetworkType::kTether, is_on); in OnToggleToggled()
306 join_button_->SetEnabled(toggle_enabled && is_on); in SetToggleState()
307 NetworkSectionHeaderView::SetToggleState(toggle_enabled, is_on); in SetToggleState()
314 void WifiSectionHeaderView::OnToggleToggled(bool is_on) { in OnToggleToggled() argument
[all …]
H A Dnetwork_section_header_view.h35 virtual void SetToggleState(bool toggle_enabled, bool is_on);
50 virtual void OnToggleToggled(bool is_on) = 0;
103 void OnToggleToggled(bool is_on) override;
126 void SetToggleState(bool toggle_enabled, bool is_on) override;
133 void OnToggleToggled(bool is_on) override;
/dports/games/trackballs/trackballs-1.3.3/src/
H A DmodPill.cc38 is_on = true; in ModPill()
74 if (!is_on) { in tick()
76 if (resurrecting > 0.0 && timeLeft < 0) is_on = true; in tick()
88 if (is_on && kind == MOD_NITRO) Ball::generateNitroDebris(t); in tick()
90 if (is_on) { in tick()
124 is_on = false; in tick()
132 is_on = false; in die()
/dports/www/ilias/ILIAS-5.4.25/src/UI/Implementation/Component/Button/
H A DToggle.php23 protected $is_on; variable in ILIAS\\UI\\Implementation\\Component\\Button\\Toggle
38 public function __construct($label, $action_on, $action_off, $is_on, Signal $click = null) argument
42 $this->checkBoolArg("is_on", $is_on);
61 $this->is_on = $is_on;
69 return $this->is_on;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/views/controls/button/
H A Dtoggle_button.cc63 (is_on ? thumb_on_color_ : thumb_off_color_) = thumb_color; in SetThumbColor()
66 base::Optional<SkColor> GetThumbColor(bool is_on) const { in GetThumbColor()
67 return is_on ? thumb_on_color_ : thumb_off_color_; in GetThumbColor()
143 void ToggleButton::AnimateIsOn(bool is_on) { in AnimateIsOn() argument
144 if (GetIsOn() == is_on) in AnimateIsOn()
146 if (is_on) in AnimateIsOn()
153 void ToggleButton::SetIsOn(bool is_on) { in SetIsOn() argument
154 if ((GetIsOn() == is_on) && !slide_animation_.is_animating()) in SetIsOn()
156 slide_animation_.Reset(is_on ? 1.0 : 0.0); in SetIsOn()
243 SkColor ToggleButton::GetTrackColor(bool is_on) const { in GetTrackColor()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/views/controls/button/
H A Dtoggle_button.cc62 (is_on ? thumb_on_color_ : thumb_off_color_) = thumb_color; in SetThumbColor()
65 base::Optional<SkColor> GetThumbColor(bool is_on) const { in GetThumbColor()
66 return is_on ? thumb_on_color_ : thumb_off_color_; in GetThumbColor()
142 void ToggleButton::AnimateIsOn(bool is_on) { in AnimateIsOn() argument
143 if (GetIsOn() == is_on) in AnimateIsOn()
145 if (is_on) in AnimateIsOn()
152 void ToggleButton::SetIsOn(bool is_on) { in SetIsOn() argument
153 if ((GetIsOn() == is_on) && !slide_animation_.is_animating()) in SetIsOn()
155 slide_animation_.Reset(is_on ? 1.0 : 0.0); in SetIsOn()
242 SkColor ToggleButton::GetTrackColor(bool is_on) const { in GetTrackColor()
[all …]
/dports/net-p2p/gtorrentviewer/GTorrentViewer-0.2b/src/
H A Dgbitarray.c265 gboolean is_on;
270 is_on = FALSE;
273 is_on = (bitarray->array[bit/8] & (0x01 << (8-1-(bit-((bit/8)*8)))))?TRUE:FALSE;
275 return is_on;
289 gboolean is_on;
294 is_on = FALSE;
303 is_on = state;
306 return is_on;
/dports/textproc/stardict3/stardict-3.0.6/dict/src/
H A Dtray.cpp27 void TrayBase::set_scan_mode(bool is_on) in set_scan_mode() argument
29 if (!hide_state_ && is_on == is_scan_on_) in set_scan_mode()
34 if (is_on) in set_scan_mode()
39 is_scan_on_ = is_on; in set_scan_mode()
/dports/emulators/qemu42/qemu-4.2.1/roms/u-boot/drivers/pinctrl/
H A Dpinctrl-at91.c87 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
117 bool is_on, bool val) in at91_mux_set_output() argument
120 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
164 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
168 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
170 if (is_on) in at91_mux_pio3_set_deglitch()
172 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
176 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
178 if (is_on) { in at91_mux_pio3_set_debounce()
188 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot/drivers/pinctrl/
H A Dpinctrl-at91.c87 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
117 bool is_on, bool val) in at91_mux_set_output() argument
120 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
164 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
168 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
170 if (is_on) in at91_mux_pio3_set_deglitch()
172 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
176 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
178 if (is_on) { in at91_mux_pio3_set_debounce()
188 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/drivers/pinctrl/
H A Dpinctrl-at91.c87 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
117 bool is_on, bool val) in at91_mux_set_output() argument
120 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
164 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
168 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
170 if (is_on) in at91_mux_pio3_set_deglitch()
172 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
176 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
178 if (is_on) { in at91_mux_pio3_set_debounce()
188 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot/drivers/pinctrl/
H A Dpinctrl-at91.c87 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
117 bool is_on, bool val) in at91_mux_set_output() argument
120 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
164 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
168 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
170 if (is_on) in at91_mux_pio3_set_deglitch()
172 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
176 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
178 if (is_on) { in at91_mux_pio3_set_debounce()
188 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/u-boot/drivers/pinctrl/
H A Dpinctrl-at91.c87 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
117 bool is_on, bool val) in at91_mux_set_output() argument
120 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
164 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
168 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
170 if (is_on) in at91_mux_pio3_set_deglitch()
172 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
176 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
178 if (is_on) { in at91_mux_pio3_set_debounce()
188 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/tcmalloc/chromium/src/
H A Dheap-profiler.cc169 static bool is_on = false; // If are on as a subsytem. variable
194 if (is_on) { in DoGetHeapProfileLocked()
224 RAW_DCHECK(is_on, ""); in DumpProfileLocked()
323 if (is_on) { in RecordAlloc()
332 if (is_on) { in RecordFree()
426 if (is_on) return; in HeapProfilerStart()
428 is_on = true; in HeapProfilerStart()
497 if (!is_on) return; in HeapProfilerStop()
532 is_on = false; in HeapProfilerStop()
537 if (is_on && !dumping) { in HeapProfilerDump()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/tcmalloc/vendor/src/
H A Dheap-profiler.cc169 static bool is_on = false; // If are on as a subsytem. variable
194 if (is_on) { in DoGetHeapProfileLocked()
224 RAW_DCHECK(is_on, ""); in DumpProfileLocked()
323 if (is_on) { in RecordAlloc()
332 if (is_on) { in RecordFree()
426 if (is_on) return; in HeapProfilerStart()
428 is_on = true; in HeapProfilerStart()
497 if (!is_on) return; in HeapProfilerStop()
532 is_on = false; in HeapProfilerStop()
537 if (is_on && !dumping) { in HeapProfilerDump()
[all …]
/dports/devel/google-perftools/gperftools-2.9.1/src/
H A Dheap-profiler.cc169 static bool is_on = false; // If are on as a subsytem. variable
194 if (is_on) { in DoGetHeapProfileLocked()
224 RAW_DCHECK(is_on, ""); in DumpProfileLocked()
323 if (is_on) { in RecordAlloc()
332 if (is_on) { in RecordFree()
426 if (is_on) return; in HeapProfilerStart()
428 is_on = true; in HeapProfilerStart()
497 if (!is_on) return; in HeapProfilerStop()
532 is_on = false; in HeapProfilerStop()
537 if (is_on && !dumping) { in HeapProfilerDump()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/gperftools-2.5/src/
H A Dheap-profiler.cc169 static bool is_on = false; // If are on as a subsytem. variable
194 if (is_on) { in DoGetHeapProfileLocked()
224 RAW_DCHECK(is_on, ""); in DumpProfileLocked()
321 if (is_on) { in RecordAlloc()
330 if (is_on) { in RecordFree()
424 if (is_on) return; in HeapProfilerStart()
426 is_on = true; in HeapProfilerStart()
495 if (!is_on) return; in HeapProfilerStop()
530 is_on = false; in HeapProfilerStop()
535 if (is_on && !dumping) { in HeapProfilerDump()
[all …]
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/drivers/pinctrl/
H A Dpinctrl-at91.c105 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
136 bool is_on, bool val) in at91_mux_set_output() argument
139 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
183 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
187 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
189 if (is_on) in at91_mux_pio3_set_deglitch()
191 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
195 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
197 if (is_on) { in at91_mux_pio3_set_debounce()
207 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/drivers/pinctrl/
H A Dpinctrl-at91.c105 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
136 bool is_on, bool val) in at91_mux_set_output() argument
139 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
183 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
187 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
189 if (is_on) in at91_mux_pio3_set_deglitch()
191 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
195 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
197 if (is_on) { in at91_mux_pio3_set_debounce()
207 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]
/dports/sysutils/u-boot-cubox-hummingboard/u-boot-2021.07/drivers/pinctrl/
H A Dpinctrl-at91.c105 void (*set_debounce)(struct at91_port *pio, u32 mask, bool is_on,
136 bool is_on, bool val) in at91_mux_set_output() argument
139 writel(mask, (is_on ? &pio->oer : &pio->odr)); in at91_mux_set_output()
183 writel(mask, (is_on ? &pio->ifer : &pio->ifdr)); in at91_mux_set_deglitch()
187 u32 mask, bool is_on) in at91_mux_pio3_set_deglitch() argument
189 if (is_on) in at91_mux_pio3_set_deglitch()
191 at91_mux_set_deglitch(pio, mask, is_on); in at91_mux_pio3_set_deglitch()
195 bool is_on, u32 div) in at91_mux_pio3_set_debounce() argument
197 if (is_on) { in at91_mux_pio3_set_debounce()
207 u32 mask, bool is_on) in at91_mux_pio3_set_pulldown() argument
[all …]

12345678910>>...89