Home
last modified time | relevance | path

Searched refs:Watcher (Results 1 – 8 of 8) sorted by relevance

/third_party/jsframework/runtime/main/reactivity/
Dwatcher.js30 export default function Watcher (vm, expOrFn, cb, options) { class
62 Watcher.prototype.get = function () {
79 Watcher.prototype.addDep = function (dep) {
93 Watcher.prototype.cleanupDeps = function () {
115 Watcher.prototype.update = function (shallow) {
126 Watcher.prototype.run = function () {
145 Watcher.prototype.evaluate = function () {
153 Watcher.prototype.depend = function () {
163 Watcher.prototype.teardown = function () {
Dstate.js2 import Watcher from './watcher';
93 const watcher = new Watcher(owner, getter, null, {
/third_party/jsframework/runtime/vdom/
DNode.ts21 import Watcher from '../main/reactivity/watcher';
70 protected _watchers: Watcher[];
107 public set watchers(newWatchers: Watcher[]) {
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_hiSysEvent.js47 const Watcher = { variable
78 Watcher, property
Dohos_fileio.js226 Watcher: WatcherMock, property
/third_party/python/Lib/test/test_asyncio/
Dtest_subprocess.py643 Watcher = None variable in SubprocessWatcherMixin
651 watcher = self.Watcher()
666 Watcher = unix_events.ThreadedChildWatcher variable in SubprocessThreadedWatcherTests
673 Watcher = unix_events.MultiLoopChildWatcher variable in SubprocessMultiLoopWatcherTests
678 Watcher = unix_events.SafeChildWatcher variable in SubprocessSafeWatcherTests
683 Watcher = unix_events.FastChildWatcher variable in SubprocessFastWatcherTests
700 Watcher = unix_events.PidfdChildWatcher variable in SubprocessPidfdWatcherTests
/third_party/jsframework/runtime/main/model/
DpageLife.ts21 import Watcher from '../reactivity/watcher';
258 const watcher = new Watcher(vm, calc, function(value, oldValue) {
Ddirective.ts34 import Watcher from '../reactivity/watcher';
988 export function newWatch(vm: Vm, calc: Function, callback: Function): Watcher {
989 const watcher = new Watcher(vm, calc, function(value, oldValue) {
1006 const watcher = new Watcher(vm, calc, function(value, oldValue) {