Searched refs:Watcher (Results 1 – 8 of 8) sorted by relevance
/third_party/jsframework/runtime/main/reactivity/ |
D | watcher.js | 30 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 () {
|
D | state.js | 2 import Watcher from './watcher'; 93 const watcher = new Watcher(owner, getter, null, {
|
/third_party/jsframework/runtime/vdom/ |
D | Node.ts | 21 import Watcher from '../main/reactivity/watcher'; 70 protected _watchers: Watcher[]; 107 public set watchers(newWatchers: Watcher[]) {
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_hiSysEvent.js | 47 const Watcher = { variable 78 Watcher, property
|
D | ohos_fileio.js | 226 Watcher: WatcherMock, property
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_subprocess.py | 643 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/ |
D | pageLife.ts | 21 import Watcher from '../reactivity/watcher'; 258 const watcher = new Watcher(vm, calc, function(value, oldValue) {
|
D | directive.ts | 34 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) {
|