Home
last modified time | relevance | path

Searched refs:oldValue (Results 1 – 25 of 94) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DnoCrashOnThisTypeUsage.types7 observe(handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean): void
8 >observe : (handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean) => void
9 >handler : (change: any, oldValue?: any) => void
11 >oldValue : any
33 const oldValue: any = null;
34 >oldValue : any
38 … type: "update", object: this, newValue, oldValue }) : void
41 …t: this, newValue, oldValue } : { type: string; object: this; newValu…
54 oldValue
55 >oldValue : any
[all …]
DnestedLoops.types29 this.aFunction((newValue, oldValue) => {
30 >this.aFunction((newValue, oldValue) => { let x = outer + inner + newValue; …
31 >this.aFunction : (func: (newValue: any, oldValue: any) => void) => void
33 >aFunction : (func: (newValue: any, oldValue: any) => void) => void
34 >(newValue, oldValue) => { let x = outer + inner + newValue; } : …
36 >oldValue : any
50 public aFunction(func: (newValue: any, oldValue: any) => void): void {
51 >aFunction : (func: (newValue: any, oldValue: any) => void) => void
52 >func : (newValue: any, oldValue: any) => void
54 >oldValue : any
DnoCrashOnThisTypeUsage.symbols9 observe(handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean): void
13 >oldValue : Symbol(oldValue, Decl(noCrashOnThisTypeUsage.ts, 2, 34))
41 const oldValue: any = null;
42 >oldValue : Symbol(oldValue, Decl(noCrashOnThisTypeUsage.ts, 13, 13))
58 oldValue
59 >oldValue : Symbol(oldValue, Decl(noCrashOnThisTypeUsage.ts, 17, 21))
67 observe(handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean) {}
71 >oldValue : Symbol(oldValue, Decl(noCrashOnThisTypeUsage.ts, 22, 34))
DnoCrashOnThisTypeUsage.js4 observe(handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean): void
15 const oldValue: any = null; constant
20 oldValue field
24 observe(handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean) {}
38 var oldValue = null;
43 oldValue: oldValue property
DnestedLoops.symbols23 this.aFunction((newValue, oldValue) => {
28 >oldValue : Symbol(oldValue, Decl(nestedLoops.ts, 8, 41))
40 public aFunction(func: (newValue: any, oldValue: any) => void): void {
44 >oldValue : Symbol(oldValue, Decl(nestedLoops.ts, 14, 42))
DnestedLoops.js10 this.aFunction((newValue, oldValue) => {
16 public aFunction(func: (newValue: any, oldValue: any) => void): void {
30 this_1.aFunction(function (newValue, oldValue) { argument
DperformanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.types6 filter(callback: (newValue: T, oldValue: T) => boolean): InterfaceA<T>;
7 >filter : (callback: (newValue: T, oldValue: T) => boolean) => InterfaceA<T>
8 >callback : (newValue: T, oldValue: T) => boolean
10 >oldValue : T
94 public filter(callback: (newValue: T, oldValue: T) => boolean): B<T> {
95 >filter : (callback: (newValue: T, oldValue: T) => boolean) => B<T>
96 >callback : (newValue: T, oldValue: T) => boolean
98 >oldValue : T
/third_party/icu/icu4c/source/test/cintltst/
Dchashtst.c172 int32_t oldValue = uhash_putiAllowZero(hash, (char *)"one", 1, &status); in TestAllowZero() local
174 if (U_FAILURE(status) || oldValue != 0 || !uhash_containsKey(hash, "one") || in TestAllowZero()
179 oldValue = uhash_putiAllowZero(hash, (char *)"zero", 0, &status); in TestAllowZero()
181 if (U_FAILURE(status) || oldValue != 0 || !uhash_containsKey(hash, "zero") || in TestAllowZero()
187 oldValue = uhash_putiAllowZero(hash, (char *)"one", 0, &status); in TestAllowZero()
189 if (U_FAILURE(status) || oldValue != 1 || !uhash_containsKey(hash, "one") || in TestAllowZero()
195 oldValue = uhash_puti(hash, (char *)"zero", 0, &status); in TestAllowZero()
197 if (U_FAILURE(status) || oldValue != 0 || uhash_containsKey(hash, "zero") || in TestAllowZero()
396 int32_t oldValue = in _put() local
400 key, u_errorName(status), oldValue); in _put()
[all …]
/third_party/typescript/tests/cases/compiler/
DnoCrashOnThisTypeUsage.ts5 observe(handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean): void
16 const oldValue: any = null; constant
21 oldValue
25 observe(handler: (change: any, oldValue?: any) => void, fireImmediately?: boolean) {}
DnestedLoops.ts10 this.aFunction((newValue, oldValue) => {
16 public aFunction(func: (newValue: any, oldValue: any) => void): void {
/third_party/jsframework/runtime/main/model/
Ddirective.ts989 const watcher = new Watcher(vm, calc, function(value, oldValue) {
990 if (typeof value !== 'object' && value === oldValue) {
1006 const watcher = new Watcher(vm, calc, function(value, oldValue) {
1007 if (typeof value !== 'object' && value === oldValue) {
1174 const oldValue = el.attr['value']; constant
1176 newValue = contentValue + oldValue;
1178 newValue = oldValue + contentValue;
1238 let oldValue = el.attr['value'];
1244 oldValue = oldValue.substr(1, oldValue.length);
1246 newValue = contentValue + oldValue;
[all …]
DpageLife.ts258 const watcher = new Watcher(vm, calc, function(value, oldValue) {
259 if (typeof value !== 'object' && value === oldValue) {
263 callback(value, oldValue);
266 vm._methods[callback](value, oldValue);
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DCacheValue.java142 V oldValue = ref.get(); in resetIfCleared() local
143 if (oldValue == null) { in resetIfCleared()
149 return oldValue; in resetIfCleared()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCacheValue.java139 V oldValue = ref.get(); in resetIfCleared() local
140 if (oldValue == null) { in resetIfCleared()
146 return oldValue; in resetIfCleared()
/third_party/skia/third_party/externals/angle2/src/common/
Dsystem_utils.cpp87 std::string oldValue = GetEnvironmentVar(variableName); in PrependPathToEnvironmentVar() local
90 if (oldValue.empty()) in PrependPathToEnvironmentVar()
98 buf += oldValue; in PrependPathToEnvironmentVar()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
DVulkanTester.cpp87 oldValue = ov; in set()
94 if(!oldValue.empty()) in restore()
96 putEnv((name + std::string("=") + oldValue).c_str()); in restore()
97 oldValue.clear(); in restore()
121 std::string oldValue; member in ScopedSetEnvVar
/third_party/icu/tools/unicode/c/genprops/
Demojipropsbuilder.cpp254 uint32_t oldValue = umutablecptrie_get(mutableCPTrie, start); in setBits() local
255 uint32_t newValue = (oldValue & ~mask) | value; in setBits()
256 if (newValue != oldValue) { in setBits()
262 uint32_t oldValue; in setBits() local
264 mutableCPTrie, start, UCPMAP_RANGE_NORMAL, 0, nullptr, nullptr, &oldValue); in setBits()
268 uint32_t newValue = (oldValue & ~mask) | value; in setBits()
269 if (newValue != oldValue) { in setBits()
/third_party/node/deps/icu-small/source/common/
Dunifiedcache.cpp316 void *oldValue = uhash_put(fHashtable, keyToAdopt, (void *) value, &status); in _putNew() local
317 U_ASSERT(oldValue == nullptr); in _putNew()
318 (void)oldValue; in _putNew()
420 const SharedObject *oldValue = (const SharedObject *) element->value.pointer; in _put() local
428 U_ASSERT(oldValue == fNoValue); in _put()
429 removeSoftRef(oldValue); in _put()
/third_party/skia/third_party/externals/icu/source/common/
Dunifiedcache.cpp316 void *oldValue = uhash_put(fHashtable, keyToAdopt, (void *) value, &status); in _putNew() local
317 U_ASSERT(oldValue == nullptr); in _putNew()
318 (void)oldValue; in _putNew()
420 const SharedObject *oldValue = (const SharedObject *) element->value.pointer; in _put() local
428 U_ASSERT(oldValue == fNoValue); in _put()
429 removeSoftRef(oldValue); in _put()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DInternal.java465 RealValue oldValue = realMap.put(key, valueConverter.doBackward(value)); in put() local
466 if (oldValue == null) { in put()
469 return valueConverter.doForward(oldValue); in put()
537 RealValue oldValue = realEntry.setValue(valueConverter.doBackward(value)); in setValue() local
538 if (oldValue == null) { in setValue()
541 return valueConverter.doForward(oldValue); in setValue()
/third_party/icu/icu4c/source/common/
Dunifiedcache.cpp316 void *oldValue = uhash_put(fHashtable, keyToAdopt, (void *) value, &status); in _putNew() local
317 U_ASSERT(oldValue == nullptr); in _putNew()
318 (void)oldValue; in _putNew()
420 const SharedObject *oldValue = (const SharedObject *) element->value.pointer; in _put() local
428 U_ASSERT(oldValue == fNoValue); in _put()
429 removeSoftRef(oldValue); in _put()
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DMetadataManager.java121 PhoneMetadata oldValue = map.putIfAbsent(key, metadata); in getMetadataFromMultiFilePrefix() local
122 return (oldValue != null) ? oldValue : metadata; in getMetadataFromMultiFilePrefix()
/third_party/node/deps/npm/node_modules/diff/lib/diff/
Dbase.js261 var oldValue = oldString[oldPos + i];
262 return oldValue.length > value.length ? oldValue : value;
/third_party/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
DStateAdapter.java207 final Object oldValue = stateItem.getTag(R.integer.value_tag_key); in onItemSelected() local
209 && oldValue != null && !stateValue.equals(oldValue)) { in onItemSelected()
/third_party/jsframework/runtime/main/reactivity/
Dwatcher.js134 const oldValue = this.value;
136 this.cb.call(this.vm, value, oldValue);

1234