Home
last modified time | relevance | path

Searched defs:observable (Results 1 – 25 of 399) sorted by relevance

12345678910>>...16

/dports/www/grafana8/grafana-8.3.6/public/test/matchers/
H A DtoEmitValues.test.ts9 const observable = (null as unknown) as Observable<number>; constant
18 const observable = (undefined as unknown) as Observable<number>; constant
27 const observable = (1 as unknown) as Observable<number>; constant
36 const observable = interval(10).pipe(take(3)); constant
45 const observable = interval(10).pipe(take(3)); constant
63 const observable = interval(600); constant
74 const observable = interval(10).pipe(take(3)); constant
81 const observable = interval(10).pipe( constant
95 const observable = interval(10).pipe( constant
109 const observable = (interval(10).pipe( constant
[all …]
H A DtoEmitValuesWith.test.ts10 const observable = (null as unknown) as Observable<number>; constant
24 const observable = (undefined as unknown) as Observable<number>; constant
38 const observable = (1 as unknown) as Observable<number>; constant
52 const observable = interval(10).pipe(take(3)); constant
66 const observable = interval(10).pipe(take(3)); constant
80 const observable = (interval(10).pipe(take(3)) as unknown) as Observable<string>; constant
94 const observable = interval(600); constant
110 const observable = interval(10).pipe(take(3)); constant
119 const observable = interval(10).pipe( constant
137 const observable = interval(10).pipe( constant
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/
H A DWidgetPropertiesTest.java103 IObservableValue<Image> observable = WidgetProperties.image().observe(button); in testImage_ObserveButton() local
115 IObservableValue<Image> observable = WidgetProperties.image().observe(label); in testImage_ObserveCLabel() local
127 IObservableValue<Image> observable = WidgetProperties.image().observe(label); in testImage_ObserveLabel() local
139 IObservableValue<String> observable = WidgetProperties.text().observe(button); in testText_ObserveButton() local
244 IObservableValue<Boolean> observable = WidgetProperties.enabled().observe(menu); in testEnabled_ObserveMenu() local
259 IObservableValue<Boolean> observable = WidgetProperties.enabled().observe(item); in testEnabled_ObserveMenuItem() local
275 IObservableValue<Boolean> observable = prop.observe(item); in testSelection_ObserveMenuItem() local
289 IObservableValue<Boolean> observable = WidgetProperties.enabled().observe(bar); in testEnabled_ObserveScrollBar() local
304 IObservableValue<Boolean> observable = WidgetProperties.enabled().observe(item); in testEnabled_ObserveToolItem() local
332 IObservableValue<Boolean> observable = WidgetProperties.editable() in testEditable_ObserveCCombo() local
[all …]
/dports/devel/libunit/unit-1.26.1/go/
H A Dobservable.go11 type observable struct { struct
12 sync.Mutex
13 observers []chan int
16 func (o *observable) attach(c chan int) {
23 func (o *observable) notify(e int) {
/dports/www/unit-java/unit-1.26.1/go/
H A Dobservable.go11 type observable struct { struct
12 sync.Mutex
13 observers []chan int
16 func (o *observable) attach(c chan int) {
23 func (o *observable) notify(e int) {
/dports/www/unit-php/unit-1.26.1/go/
H A Dobservable.go11 type observable struct { struct
12 sync.Mutex
13 observers []chan int
16 func (o *observable) attach(c chan int) {
23 func (o *observable) notify(e int) {
/dports/www/unit-python/unit-1.26.1/go/
H A Dobservable.go11 type observable struct { struct
12 sync.Mutex
13 observers []chan int
16 func (o *observable) attach(c chan int) {
23 func (o *observable) notify(e int) {
/dports/www/unit/unit-1.26.1/go/
H A Dobservable.go11 type observable struct { struct
12 sync.Mutex
13 observers []chan int
16 func (o *observable) attach(c chan int) {
23 func (o *observable) notify(e int) {
/dports/www/unit-perl/unit-1.26.1/go/
H A Dobservable.go11 type observable struct { struct
12 sync.Mutex
13 observers []chan int
16 func (o *observable) attach(c chan int) {
23 func (o *observable) notify(e int) {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/beans/
H A DPojoObservablesTest.java131 IObservableList observable = PojoObservables.observeList(Realm in testObserveListWithElementType_DoesNotAttachListeners() local
140 IObservableList observable = PojoObservables.observeList(Realm in testObserveList_ReturnsIBeanObservable() local
147 IObservableList observable = PojoObservables.observeList(Realm in testObserveList_DoesNotAttachListeners() local
165 IObservableSet observable = PojoObservables.observeSet(Realm in testObserveSetWithElementType_DoesNotAttachListeners() local
181 IObservableSet observable = PojoObservables.observeSet(Realm in testObserveSet_DoesNotAttachListeners() local
192 IObservableValue observable = (IObservableValue) factory in testValueFactory_DoesNotAttachListeners() local
204 IObservableList observable = (IObservableList) factory in testListFactory_DoesNotAttachListeners() local
216 IObservableSet observable = (IObservableSet) factory in testSetFactory_DoesNotAttachListeners() local
229 IObservableSet observable = (IObservableSet) factory in testSetFactoryWithElementType_DoesNotAttachListeners() local
H A DBeanPropertiesTest.java39 IObservable observable = BeanProperties.value(Bean.class, "value") in testValue_ValueFactory_ProducesIBeanObservable() local
46 IObservable observable = BeanProperties.set(Bean.class, "set") in testSet_SetFactory_ProducesIBeanObservable() local
53 IObservable observable = BeanProperties.list(Bean.class, "list") in testList_ListFactory_ProducesIBeanObservable() local
60 IObservable observable = BeanProperties.map(Bean.class, "map") in testMap_MapFactory_ProducesIBeanObservable() local
H A DPojoPropertiesTest.java39 IObservable observable = BeanProperties.value(Bean.class, "value") in testValue_ValueFactory_ProducesIBeanObservable() local
46 IObservable observable = BeanProperties.set(Bean.class, "set") in testSet_SetFactory_ProducesIBeanObservable() local
53 IObservable observable = BeanProperties.list(Bean.class, "list") in testList_ListFactory_ProducesIBeanObservable() local
60 IObservable observable = BeanProperties.map(Bean.class, "map") in testMap_MapFactory_ProducesIBeanObservable() local
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/beans/
H A DJavaBeanObservableValueTest.java85 IObservableValue observable = BeansObservables.observeValue(temp, in testSetValueThrowsExceptionThrownByBean() local
99 IObservableValue observable = BeansObservables.observeValue(temp, in testGetValueThrowsExceptionThrownByBean() local
128 IObservableValue observable = BeansObservables.observeValue(bean, in testConstructor_RegistersListeners() local
137 IObservableValue observable = PojoObservables.observeValue(bean, in testConstructor_SkipRegisterListeners() local
156 IObservableValue observable = BeansObservables.observeValue(bean, in testSetBeanProperty_CorrectForNullOldAndNewValues() local
170 IObservableValue observable = BeansObservables.observeValue(realm, in testSetBeanPropertyOutsideRealm_FiresEventInsideRealm() local
205 public void change(IObservable observable) { in change()
211 public Object getValueType(IObservableValue observable) { in getValueType()
216 public Object createValue(IObservableValue observable) { in createValue()
/dports/x11-fonts/py-defcon/defcon-0.6.0/Lib/defcon/tools/
H A Dnotifications.py52 def addObserver(self, observer, methodName, notification=None, observable=None): argument
86 def hasObserver(self, observer, notification, observable): argument
100 def removeObserver(self, observer, notification, observable=None): argument
120 def postNotification(self, notification, observable, data=None): argument
207 def holdNotifications(self, observable=None, notification=None, observer=None, note=None): argument
241 def releaseHeldNotifications(self, observable=None, notification=None, observer=None): argument
262 def areNotificationsHeld(self, observable=None, notification=None, observer=None): argument
287 def getHeldNotificationNotes(self, observable=None, notification=None, observer=None): argument
307 def disableNotifications(self, observable=None, notification=None, observer=None): argument
335 def enableNotifications(self, observable=None, notification=None, observer=None): argument
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/viewers/
H A DViewerInputObservableValueTest.java80 IObservableValue observable = ViewersObservables.observeInput(viewer); in testSetInputOnViewer_FiresChangeEventOnGetValue() local
105 IObservableValue observable = ViewersObservables.observeInput(viewer); in testGetSetValue_FiresChangeEvents() local
127 IObservableValue observable = ViewersObservables.observeInput(viewer); in testGetValueType_AlwaysNull() local
133 IObservableValue observable = ViewersObservables.observeInput(viewer); in testDispose() local
186 public void change(IObservable observable) { in change()
192 public Object createValue(IObservableValue observable) { in createValue()
197 public Object getValueType(IObservableValue observable) { in getValueType()
/dports/www/grafana8/grafana-8.3.6/public/app/features/annotations/
H A DstandardAnnotationSupport.test.ts61 const observable = getAnnotationsFromData([frame], { constant
118 const observable = getAnnotationsFromData([frame]); constant
155 const observable = getAnnotationsFromData([frame]); constant
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/swt/
H A DSpinnerObservableValueSelectionTest.java43 private IObservableValue observable; field in SpinnerObservableValueSelectionTest
111 public void change(IObservable observable) { in change()
118 public Object getValueType(IObservableValue observable) { in getValueType()
123 public Object createValue(IObservableValue observable) { in createValue()
127 private Integer createIntegerValue(IObservableValue observable) { in createIntegerValue()
H A DScaleObservableValueSelectionTest.java43 private IObservableValue observable; field in ScaleObservableValueSelectionTest
111 public void change(IObservable observable) { in change()
119 public Object getValueType(IObservableValue observable) { in getValueType()
124 public Object createValue(IObservableValue observable) { in createValue()
128 private Integer createIntegerValue(IObservableValue observable) { in createIntegerValue()
H A DScaleObservableValueMinTest.java43 private IObservableValue observable; field in ScaleObservableValueMinTest
111 public void change(IObservable observable) { in change()
117 public Object getValueType(IObservableValue observable) { in getValueType()
122 public Object createValue(IObservableValue observable) { in createValue()
126 private Integer createIntegerValue(IObservableValue observable) { in createIntegerValue()
H A DSpinnerObservableValueMaxTest.java43 private IObservableValue observable; field in SpinnerObservableValueMaxTest
111 public void change(IObservable observable) { in change()
117 public Object getValueType(IObservableValue observable) { in getValueType()
122 public Object createValue(IObservableValue observable) { in createValue()
126 private Integer createIntegerValue(IObservableValue observable) { in createIntegerValue()
H A DSpinnerObservableValueMinTest.java43 private IObservableValue observable; field in SpinnerObservableValueMinTest
111 public void change(IObservable observable) { in change()
117 public Object getValueType(IObservableValue observable) { in getValueType()
122 public Object createValue(IObservableValue observable) { in createValue()
126 private Integer createIntegerValue(IObservableValue observable) { in createIntegerValue()
H A DScaleObservableValueMaxTest.java43 private IObservableValue observable; field in ScaleObservableValueMaxTest
111 public void change(IObservable observable) { in change()
117 public Object getValueType(IObservableValue observable) { in getValueType()
122 public Object createValue(IObservableValue observable) { in createValue()
126 private Integer createIntegerValue(IObservableValue observable) { in createIntegerValue()
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkactionobserver.c76 GtkActionObservable *observable, in gtk_action_observer_action_added()
103 GtkActionObservable *observable, in gtk_action_observer_action_enabled_changed()
128 GtkActionObservable *observable, in gtk_action_observer_action_state_changed()
152 GtkActionObservable *observable, in gtk_action_observer_action_removed()
177 GtkActionObservable *observable, in gtk_action_observer_primary_accel_changed()
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkactionobserver.c72 GtkActionObservable *observable, in gtk_action_observer_action_added()
99 GtkActionObservable *observable, in gtk_action_observer_action_enabled_changed()
124 GtkActionObservable *observable, in gtk_action_observer_action_state_changed()
148 GtkActionObservable *observable, in gtk_action_observer_action_removed()
175 GtkActionObservable *observable, in gtk_action_observer_primary_accel_changed()
/dports/x11/gnome-shell/gnome-shell-41.1/src/
H A Dgtkactionobserver.c76 GtkActionObservable *observable, in gtk_action_observer_action_added()
103 GtkActionObservable *observable, in gtk_action_observer_action_enabled_changed()
128 GtkActionObservable *observable, in gtk_action_observer_action_state_changed()
152 GtkActionObservable *observable, in gtk_action_observer_action_removed()
177 GtkActionObservable *observable, in gtk_action_observer_primary_accel_changed()

12345678910>>...16