/third_party/typescript/tests/baselines/reference/ |
D | objectFreeze.symbols | 2 const f = Object.freeze(function foo(a: number, b: string) { return false; }); 4 >Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --… 6 >freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), … 18 const c = Object.freeze(C); 20 >Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --… 22 >freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), … 28 const a = Object.freeze([1, 2, 3]); 30 >Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --… 32 >freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), … 40 const o = Object.freeze({ a: 1, b: "string" }); [all …]
|
D | circularContextualReturnType.types | 4 Object.freeze({ 5 >Object.freeze({ foo() { return Object.freeze('a'); },}) : Readonly<{ foo(): string; }> 6 >Object.freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>… 8 >freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>; } 9 >{ foo() { return Object.freeze('a'); },} : { foo(): string; } 14 return Object.freeze('a'); 15 >Object.freeze('a') : string 16 >Object.freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>… 18 >freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>; }
|
D | circularContextualReturnType.symbols | 4 Object.freeze({ 5 >Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --… 7 >freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), … 12 return Object.freeze('a'); 13 >Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --… 15 >freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), …
|
D | objectFreeze.js | 2 const f = Object.freeze(function foo(a: number, b: string) { return false; }); 6 const c = Object.freeze(C); 9 const a = Object.freeze([1, 2, 3]); 12 const o = Object.freeze({ a: 1, b: "string" }); 17 var f = Object.freeze(function foo(a, b) { return false; }); 24 var c = Object.freeze(C); 26 var a = Object.freeze([1, 2, 3]); 28 var o = Object.freeze({ a: 1, b: "string" });
|
D | objectFreeze.types | 2 const f = Object.freeze(function foo(a: number, b: string) { return false; }); 4 >Object.freeze(function foo(a: number, b: string) { return false; }) : (a: number, b: string) => fa… 5 >Object.freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>… 7 >freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>; } 26 const c = Object.freeze(C); 28 >Object.freeze(C) : typeof C 29 >Object.freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>… 31 >freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>; } 39 const a = Object.freeze([1, 2, 3]); 41 >Object.freeze([1, 2, 3]) : readonly number[] [all …]
|
D | circularContextualReturnType.js | 4 Object.freeze({ 6 return Object.freeze('a'); 14 Object.freeze({ 16 return Object.freeze('a');
|
D | objectFromEntries.js | 6 const frozenArray = Object.freeze([['a', 1], ['b', 2], ['c', 3]]); 9 const frozenArray2: readonly [string, number][] = Object.freeze([['a', 1], ['b', 2], ['c', 3]]); 17 const frozenArray = Object.freeze([['a', 1], ['b', 2], ['c', 3]]); 19 const frozenArray2 = Object.freeze([['a', 1], ['b', 2], ['c', 3]]);
|
D | objectFromEntries.symbols | 23 const frozenArray = Object.freeze([['a', 1], ['b', 2], ['c', 3]]); 25 >Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --… 27 >freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), … 36 const frozenArray2: readonly [string, number][] = Object.freeze([['a', 1], ['b', 2], ['c', 3]]); 38 >Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --… 40 >freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), …
|
D | objectFreeze.errors.txt | 7 const f = Object.freeze(function foo(a: number, b: string) { return false; }); 11 const c = Object.freeze(C); 14 const a = Object.freeze([1, 2, 3]); 21 const o = Object.freeze({ a: 1, b: "string" });
|
D | objectFromEntries.types | 43 const frozenArray = Object.freeze([['a', 1], ['b', 2], ['c', 3]]); 45 >Object.freeze([['a', 1], ['b', 2], ['c', 3]]) : readonly (string | number)[][] 46 >Object.freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>… 48 >freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>; } 68 const frozenArray2: readonly [string, number][] = Object.freeze([['a', 1], ['b', 2], ['c', 3]]); 70 >Object.freeze([['a', 1], ['b', 2], ['c', 3]]) : readonly [string, number][] 71 >Object.freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>… 73 >freeze : { <T>(a: T[]): readonly T[]; <T extends Function>(f: T): T; <T>(o: T): Readonly<T>; }
|
/third_party/icu/icu4c/source/i18n/ |
D | regexst.cpp | 77 fUnescapeCharSet.addAll(UnicodeString(true, gUnescapeChars, -1)).freeze(); in RegexStaticSets() 78 … fPropSets[URX_ISWORD_SET].applyPattern(UnicodeString(true, gIsWordPattern, -1), *status).freeze(); in RegexStaticSets() 79 …PropSets[URX_ISSPACE_SET].applyPattern(UnicodeString(true, gIsSpacePattern, -1), *status).freeze(); in RegexStaticSets() 80 …PropSets[URX_GC_EXTEND].applyPattern(UnicodeString(TRUE, gGC_ExtendPattern, -1), *status).freeze(); in RegexStaticSets() 81 …opSets[URX_GC_CONTROL].applyPattern(UnicodeString(TRUE, gGC_ControlPattern, -1), *status).freeze(); in RegexStaticSets() 82 fPropSets[URX_GC_L].applyPattern(UnicodeString(TRUE, gGC_LPattern, -1), *status).freeze(); in RegexStaticSets() 83 fPropSets[URX_GC_V].applyPattern(UnicodeString(TRUE, gGC_VPattern, -1), *status).freeze(); in RegexStaticSets() 84 fPropSets[URX_GC_T].applyPattern(UnicodeString(TRUE, gGC_TPattern, -1), *status).freeze(); in RegexStaticSets() 85 fPropSets[URX_GC_LV].applyPattern(UnicodeString(TRUE, gGC_LVPattern, -1), *status).freeze(); in RegexStaticSets() 86 fPropSets[URX_GC_LVT].applyPattern(UnicodeString(TRUE, gGC_LVTPattern, -1), *status).freeze(); in RegexStaticSets() [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | regexst.cpp | 77 fUnescapeCharSet.addAll(UnicodeString(true, gUnescapeChars, -1)).freeze(); in RegexStaticSets() 78 … fPropSets[URX_ISWORD_SET].applyPattern(UnicodeString(true, gIsWordPattern, -1), *status).freeze(); in RegexStaticSets() 79 …PropSets[URX_ISSPACE_SET].applyPattern(UnicodeString(true, gIsSpacePattern, -1), *status).freeze(); in RegexStaticSets() 80 …PropSets[URX_GC_EXTEND].applyPattern(UnicodeString(TRUE, gGC_ExtendPattern, -1), *status).freeze(); in RegexStaticSets() 81 …opSets[URX_GC_CONTROL].applyPattern(UnicodeString(TRUE, gGC_ControlPattern, -1), *status).freeze(); in RegexStaticSets() 82 fPropSets[URX_GC_L].applyPattern(UnicodeString(TRUE, gGC_LPattern, -1), *status).freeze(); in RegexStaticSets() 83 fPropSets[URX_GC_V].applyPattern(UnicodeString(TRUE, gGC_VPattern, -1), *status).freeze(); in RegexStaticSets() 84 fPropSets[URX_GC_T].applyPattern(UnicodeString(TRUE, gGC_TPattern, -1), *status).freeze(); in RegexStaticSets() 85 fPropSets[URX_GC_LV].applyPattern(UnicodeString(TRUE, gGC_LVPattern, -1), *status).freeze(); in RegexStaticSets() 86 fPropSets[URX_GC_LVT].applyPattern(UnicodeString(TRUE, gGC_LVTPattern, -1), *status).freeze(); in RegexStaticSets() [all …]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | regexst.cpp | 77 fUnescapeCharSet.addAll(UnicodeString(true, gUnescapeChars, -1)).freeze(); in RegexStaticSets() 78 … fPropSets[URX_ISWORD_SET].applyPattern(UnicodeString(true, gIsWordPattern, -1), *status).freeze(); in RegexStaticSets() 79 …PropSets[URX_ISSPACE_SET].applyPattern(UnicodeString(true, gIsSpacePattern, -1), *status).freeze(); in RegexStaticSets() 80 …PropSets[URX_GC_EXTEND].applyPattern(UnicodeString(TRUE, gGC_ExtendPattern, -1), *status).freeze(); in RegexStaticSets() 81 …opSets[URX_GC_CONTROL].applyPattern(UnicodeString(TRUE, gGC_ControlPattern, -1), *status).freeze(); in RegexStaticSets() 82 fPropSets[URX_GC_L].applyPattern(UnicodeString(TRUE, gGC_LPattern, -1), *status).freeze(); in RegexStaticSets() 83 fPropSets[URX_GC_V].applyPattern(UnicodeString(TRUE, gGC_VPattern, -1), *status).freeze(); in RegexStaticSets() 84 fPropSets[URX_GC_T].applyPattern(UnicodeString(TRUE, gGC_TPattern, -1), *status).freeze(); in RegexStaticSets() 85 fPropSets[URX_GC_LV].applyPattern(UnicodeString(TRUE, gGC_LVPattern, -1), *status).freeze(); in RegexStaticSets() 86 fPropSets[URX_GC_LVT].applyPattern(UnicodeString(TRUE, gGC_LVTPattern, -1), *status).freeze(); in RegexStaticSets() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | objectFreeze.ts | 1 const f = Object.freeze(function foo(a: number, b: string) { return false; }); 5 const c = Object.freeze(C); 8 const a = Object.freeze([1, 2, 3]); 11 const o = Object.freeze({ a: 1, b: "string" });
|
D | circularContextualReturnType.ts | 5 Object.freeze({ 7 return Object.freeze('a');
|
/third_party/boost/libs/log/test/run/ |
D | util_stp_filter_parser.cpp | 43 values1.freeze(); in BOOST_AUTO_TEST_CASE() 47 values2.freeze(); in BOOST_AUTO_TEST_CASE() 70 values1.freeze(); in BOOST_AUTO_TEST_CASE() 74 values2.freeze(); in BOOST_AUTO_TEST_CASE() 78 values3.freeze(); in BOOST_AUTO_TEST_CASE() 82 values4.freeze(); in BOOST_AUTO_TEST_CASE() 152 values1.freeze(); in BOOST_AUTO_TEST_CASE() 156 values2.freeze(); in BOOST_AUTO_TEST_CASE() 160 values3.freeze(); in BOOST_AUTO_TEST_CASE() 164 values4.freeze(); in BOOST_AUTO_TEST_CASE() [all …]
|
D | attr_value_visitation.cpp | 115 values1.freeze(); in BOOST_AUTO_TEST_CASE() 139 values2.freeze(); in BOOST_AUTO_TEST_CASE() 170 values1.freeze(); in BOOST_AUTO_TEST_CASE() 191 values2.freeze(); in BOOST_AUTO_TEST_CASE() 214 values1.freeze(); in BOOST_AUTO_TEST_CASE() 234 values2.freeze(); in BOOST_AUTO_TEST_CASE()
|
D | filt_has_attr.cpp | 48 values1.freeze(); in BOOST_AUTO_TEST_CASE() 84 values1.freeze(); in BOOST_AUTO_TEST_CASE() 87 values2.freeze(); in BOOST_AUTO_TEST_CASE() 91 values3.freeze(); in BOOST_AUTO_TEST_CASE()
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | object-methods.js | 42 assert (Object.freeze(42) === 42); 43 assert (Object.freeze("a") === "a"); 44 assert (Object.freeze(undefined) === undefined); 45 assert (Object.freeze() === undefined);
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | StaticUnicodeSets.java | 145 return new UnicodeSet().addAll(get(k1)).addAll(get(k2)).freeze(); in computeUnion() 149 return new UnicodeSet().addAll(get(k1)).addAll(get(k2)).addAll(get(k3)).freeze(); in computeUnion() 154 unicodeSets.put(key, new UnicodeSet(unicodeSetPattern).freeze()); in saveSet() 240 unicodeSets.put(Key.EMPTY, new UnicodeSet("[]").freeze()); in unicodeSets.put() argument 244 new UnicodeSet("[[:Zs:][\\u0009][:Bidi_Control:][:Variation_Selector:]]").freeze()); in unicodeSets.put() 245 unicodeSets.put(Key.STRICT_IGNORABLES, new UnicodeSet("[[:Bidi_Control:]]").freeze()); in unicodeSets.put() argument 262 unicodeSets.put(Key.OTHER_GROUPING_SEPARATORS, otherGrouping.freeze()); in unicodeSets.put() argument 273 unicodeSets.put(Key.INFINITY_SIGN, new UnicodeSet("[∞]").freeze()); in unicodeSets.put() argument 281 unicodeSets.put(Key.DIGITS, new UnicodeSet("[:digit:]").freeze()); in unicodeSets.put() argument
|
/third_party/ltp/testcases/kernel/controllers/freezer/ |
D | README | 15 freeze tasks in cgroups before doing a suspend. 19 freeze self -- freeze the control group that the current process is 21 freeze cancellation -- freeze but then backout of the freeze processing
|
/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | es5.js | 8 freeze: Object.freeze, property 73 freeze: ObjectFreeze, property
|
/third_party/jsframework/runtime/main/page/ |
D | index.ts | 21 Object.freeze(Page); 22 Object.freeze(Page.prototype);
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
D | CollationFrozenMonkeyTest.java | 55 myCollator.freeze(); in TestCollationKey() 59 myPrimaryCollator.freeze(); in TestCollationKey() 63 mySecondaryCollator.freeze(); in TestCollationKey() 67 myTertiaryCollator.freeze(); in TestCollationKey() 141 myCollator.freeze(); in TestCompare() 145 myPrimaryCollator.freeze(); in TestCompare() 149 mySecondaryCollator.freeze(); in TestCompare() 153 myTertiaryCollator.freeze(); in TestCompare()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | ThaiBreakEngine.java | 72 fThaiWordSet.freeze(); in fThaiWordSet.freeze() 73 fMarkSet.freeze(); in fMarkSet.freeze() 74 fEndWordSet.freeze(); in fEndWordSet.freeze() 75 fBeginWordSet.freeze(); in fBeginWordSet.freeze() 76 fSuffixSet.freeze(); in fSuffixSet.freeze()
|