Home
last modified time | relevance | path

Searched refs:onUpdate (Results 1 – 25 of 1157) sorted by relevance

12345678910>>...47

/dports/www/firefox-esr/firefox-91.8.0/browser/components/newtab/content-src/components/ContextMenu/
H A DContextMenuButton.jsx16 this.onUpdate = this.onUpdate.bind(this);
20 if (this.props.onUpdate) {
21 this.props.onUpdate(true);
41 onUpdate(showContextMenu) { method in ContextMenuButton
42 if (this.props.onUpdate) {
43 this.props.onUpdate(showContextMenu);
66 onUpdate: this.onUpdate,
/dports/lang/spidermonkey78/firefox-78.9.0/browser/components/newtab/content-src/components/ContextMenu/
H A DContextMenuButton.jsx16 this.onUpdate = this.onUpdate.bind(this);
20 if (this.props.onUpdate) {
21 this.props.onUpdate(true);
41 onUpdate(showContextMenu) { method in ContextMenuButton
42 if (this.props.onUpdate) {
43 this.props.onUpdate(showContextMenu);
66 onUpdate: this.onUpdate,
/dports/www/firefox/firefox-99.0/browser/components/newtab/content-src/components/ContextMenu/
H A DContextMenuButton.jsx16 this.onUpdate = this.onUpdate.bind(this);
20 if (this.props.onUpdate) {
21 this.props.onUpdate(true);
41 onUpdate(showContextMenu) { method in ContextMenuButton
42 if (this.props.onUpdate) {
43 this.props.onUpdate(showContextMenu);
66 onUpdate: this.onUpdate,
/dports/mail/thunderbird/thunderbird-91.8.0/browser/components/newtab/content-src/components/ContextMenu/
H A DContextMenuButton.jsx16 this.onUpdate = this.onUpdate.bind(this);
20 if (this.props.onUpdate) {
21 this.props.onUpdate(true);
41 onUpdate(showContextMenu) { method in ContextMenuButton
42 if (this.props.onUpdate) {
43 this.props.onUpdate(showContextMenu);
66 onUpdate: this.onUpdate,
/dports/lang/spidermonkey78/firefox-78.9.0/browser/components/newtab/test/unit/content-src/components/
H A DContextMenu.test.jsx10 onUpdate: () => {}, property in DEFAULT_PROPS
37 it("should call onUpdate when clicked", () => {
38 const onUpdate = sandbox.spy();
40 <ContextMenuButton onUpdate={onUpdate}>
45 assert.calledOnce(onUpdate);
48 const onUpdate = sandbox.spy();
50 <ContextMenuButton onUpdate={onUpdate}>
55 assert.calledOnce(onUpdate);
137 const onUpdate = sinon.spy();
142 onUpdate={onUpdate}
[all …]
/dports/www/firefox/firefox-99.0/browser/components/newtab/test/unit/content-src/components/
H A DContextMenu.test.jsx14 onUpdate: () => {}, property in DEFAULT_PROPS
49 it("should call onUpdate when clicked", () => {
50 const onUpdate = sandbox.spy();
52 <ContextMenuButton onUpdate={onUpdate}>
57 assert.calledOnce(onUpdate);
60 const onUpdate = sandbox.spy();
62 <ContextMenuButton onUpdate={onUpdate}>
67 assert.calledOnce(onUpdate);
155 const onUpdate = sinon.spy();
158 onUpdate,
[all …]
/dports/www/firefox-esr/firefox-91.8.0/browser/components/newtab/test/unit/content-src/components/
H A DContextMenu.test.jsx14 onUpdate: () => {}, property in DEFAULT_PROPS
52 it("should call onUpdate when clicked", () => {
53 const onUpdate = sandbox.spy();
55 <ContextMenuButton onUpdate={onUpdate}>
60 assert.calledOnce(onUpdate);
63 const onUpdate = sandbox.spy();
65 <ContextMenuButton onUpdate={onUpdate}>
70 assert.calledOnce(onUpdate);
158 const onUpdate = sinon.spy();
161 onUpdate,
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/browser/components/newtab/test/unit/content-src/components/
H A DContextMenu.test.jsx14 onUpdate: () => {}, property in DEFAULT_PROPS
52 it("should call onUpdate when clicked", () => {
53 const onUpdate = sandbox.spy();
55 <ContextMenuButton onUpdate={onUpdate}>
60 assert.calledOnce(onUpdate);
63 const onUpdate = sandbox.spy();
65 <ContextMenuButton onUpdate={onUpdate}>
70 assert.calledOnce(onUpdate);
158 const onUpdate = sinon.spy();
161 onUpdate,
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/robmorgan/phinx/src/Phinx/Db/Table/
H A DForeignKey.php63 protected $onUpdate; variable in Phinx\\Db\\Table\\ForeignKey
169 return $this->onUpdate;
175 * @param string $onUpdate
178 public function setOnUpdate($onUpdate) argument
180 $this->onUpdate = $this->normalizeAction($onUpdate);
/dports/games/aquaria/Aquaria-OSE-v1.002-22-g84366ad/Aquaria/
H A DAquariaMenuItem.h70 void onUpdate(float dt);
99 void onUpdate(float dt);
119 void onUpdate(float dt);
142 void onUpdate(float dt);
158 void onUpdate(float dt);
178 void onUpdate(float dt);
201 void onUpdate(float dt);
228 void onUpdate(float dt);
H A DGridRender.h36 void onUpdate(float dt);
64 void onUpdate(float dt);
103 void onUpdate(float dt);
126 void onUpdate(float dt);
136 void onUpdate(float dt);
H A DAquariaMenuItem.cpp306 Quad::onUpdate(dt); in update()
310 void AquariaGuiQuad::onUpdate(float dt) in onUpdate() function in AquariaGuiQuad
313 Quad::onUpdate(dt); in onUpdate()
332 void AquariaSlider::onUpdate(float dt) in onUpdate() function in AquariaSlider
338 RenderObject::onUpdate(dt); in onUpdate()
344 Slider::onUpdate(dt); in onUpdate()
422 RenderObject::onUpdate(dt); in onUpdate()
426 CheckBox::onUpdate(dt); in onUpdate()
555 RenderObject::onUpdate(dt); in onUpdate()
936 Quad::onUpdate(dt); in onUpdate()
[all …]
/dports/www/phalcon/cphalcon-3.4.5/phalcon/db/
H A Dreference.zep101 onDelete, onUpdate;
135 if fetch onUpdate, definition["onUpdate"] {
136 let this->_onUpdate = onUpdate;
151 onDelete, onUpdate;
164 fetch onUpdate, data["_onUpdate"];
172 "onUpdate" : onUpdate
/dports/www/grafana8/grafana-8.3.6/public/app/features/dashboard/components/AnnotationSettings/
H A DAnnotationSettingsEdit.tsx30 const onUpdate = (annotation: AnnotationQuery) => {
38 onUpdate({
45 onUpdate({
53 onUpdate({
60 onUpdate({
106 … <StandardAnnotationQueryEditor datasource={ds} annotation={annotation} onChange={onUpdate} />
108 …annotations && <AngularEditorLoader datasource={ds} annotation={annotation} onChange={onUpdate} />}
/dports/www/grafana8/grafana-8.3.6/public/app/features/dashboard/components/RowOptions/
H A DRowOptionsButton.tsx10 onUpdate: OnRowOptionsUpdate;
13 export const RowOptionsButton: FC<RowOptionsButtonProps> = ({ repeat, title, onUpdate }) => {
15 onUpdate(title, repeat);
26 …showModal(RowOptionsModal, { title, repeat, onDismiss: hideModal, onUpdate: onUpdateChange(hideMod…
H A DRowOptionsModal.tsx11 onUpdate: OnRowOptionsUpdate;
14 export const RowOptionsModal: FC<RowOptionsModalProps> = ({ repeat, title, onDismiss, onUpdate }) =…
18 <RowOptionsForm repeat={repeat} title={title} onCancel={onDismiss} onUpdate={onUpdate} />
/dports/www/phalcon4/cphalcon-4.1.1/phalcon/Db/
H A DReference.zep90 protected onUpdate { get };
98 referencedColumns, onDelete, onUpdate;
134 if fetch onUpdate, definition["onUpdate"] {
135 let this->onUpdate = onUpdate;
/dports/net/clash/clash-1.6.0/adapters/provider/
H A Dfetcher.go29 onUpdate func(interface{}) member
148 if f.onUpdate != nil {
149 f.onUpdate(elm)
170 func newFetcher(name string, interval time.Duration, vehicle Vehicle, parser parser, onUpdate func(…
182 onUpdate: onUpdate,
/dports/www/phalcon/cphalcon-3.4.5/ext/phalcon/db/
H A Dreference.zep.c190 …le = NULL, *referencedSchema = NULL, *referencedColumns = NULL, *onDelete = NULL, *onUpdate = NULL; in PHP_METHOD() local
243 ZEPHIR_OBS_VAR(onUpdate); in PHP_METHOD()
244 if (zephir_array_isset_string_fetch(&onUpdate, definition, SS("onUpdate"), 0 TSRMLS_CC)) { in PHP_METHOD()
245 zephir_update_property_this(getThis(), SL("_onUpdate"), onUpdate TSRMLS_CC); in PHP_METHOD()
261 …umns = NULL, *referencedColumns = NULL, *constraintName = NULL, *onDelete = NULL, *onUpdate = NULL; in PHP_METHOD() local
283 zephir_array_isset_string_fetch(&onUpdate, data, SS("_onUpdate"), 1 TSRMLS_CC); in PHP_METHOD()
292 zephir_array_update_string(&_0, SL("onUpdate"), &onUpdate, PH_COPY | PH_SEPARATE); in PHP_METHOD()
/dports/www/phalcon4/cphalcon-4.1.1/tests/tocheck-database/Db/Dialect/Helper/
H A DMysqlHelper.php13 string $onUpdate = '', argument
28 if ($onUpdate) {
29 $sql .= ' ON UPDATE ' . $onUpdate;
/dports/audio/rezound/rezound-0.13.1beta/src/frontend_fox/
H A DFXPopupHint.h49 long onUpdate(FXObject* sender,FXSelector sel,void* ptr){
50 FXWindow::onUpdate(sender,sel,ptr);
64 FXMAPFUNC(SEL_UPDATE,0,FXPopupHint::onUpdate),
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/testdata/
H A DQueryEditor.tsx61 const onUpdate = (query: TestDataQuery) => {
113 onUpdate(update);
128 onUpdate({ ...query, [name]: newValue });
139 onUpdate({ ...query, [field]: { ...(query as any)[field], [name]: newValue } });
143 onUpdate({ ...query, stringInput: value });
149 onUpdate({ ...query, usa });
153 onUpdate({ ...query, csvWave });
237 {scenarioId === 'live' && <GrafanaLiveEditor onChange={onUpdate} query={query} />}
238 {scenarioId === 'csv_file' && <CSVFileEditor onChange={onUpdate} query={query} />}
239 {scenarioId === 'csv_content' && <CSVContentEditor onChange={onUpdate} query={query} />}
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/monitoring/components/variables/
H A Dtext_field.vue24 onUpdate(event) {
35 @keyup.native.enter="onUpdate"
36 @blur.native="onUpdate"
/dports/www/phalcon4/cphalcon-4.1.1/ext/phalcon/db/
H A Dreference.zep.c220 … = NULL, columns, schema, referencedTable, referencedSchema, referencedColumns, onDelete, onUpdate; in PHP_METHOD() local
231 ZVAL_UNDEF(&onUpdate); in PHP_METHOD()
281 ZEPHIR_OBS_VAR(&onUpdate); in PHP_METHOD()
282 if (zephir_array_isset_string_fetch(&onUpdate, &definition, SL("onUpdate"), 0)) { in PHP_METHOD()
283 zephir_update_property_zval(this_ptr, ZEND_STRL("onUpdate"), &onUpdate); in PHP_METHOD()
/dports/www/oauth2-proxy/oauth2-proxy-7.2.0/
H A Dvalidator.go23 func NewUserMap(usersFile string, done <-chan bool, onUpdate func()) *UserMap {
31 onUpdate()
76 done <-chan bool, onUpdate func()) func(string) bool {
77 validUsers := NewUserMap(usersFile, done, onUpdate)

12345678910>>...47