Home
last modified time | relevance | path

Searched refs:mapValues (Results 1 – 25 of 27) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DmappedTypeNestedGenericInstantiation.types8 mapValues<U>(func: (v: T[keyof T]) => U): Chainable<{[k in keyof T]: U}>;
9 >mapValues : <U>(func: (v: T[keyof T]) => U) => Chainable<{ [k in keyof T]: U; }>
26 const v = chain({a: 1, b: 2}).mapValues(square).value();
28 >chain({a: 1, b: 2}).mapValues(square).value() : { a: number; b: number; }
29 >chain({a: 1, b: 2}).mapValues(square).value : () => { a: number; b: number; }
30 >chain({a: 1, b: 2}).mapValues(square) : Chainable<{ a: number; b: number; }>
31 >chain({a: 1, b: 2}).mapValues : <U>(func: (v: number) => U) => Chainable<{ a: U; b: U; }>
39 >mapValues : <U>(func: (v: number) => U) => Chainable<{ a: U; b: U; }>
DmappedTypeNestedGenericInstantiation.symbols12 mapValues<U>(func: (v: T[keyof T]) => U): Chainable<{[k in keyof T]: U}>;
13 >mapValues : Symbol(Chainable.mapValues, Decl(mappedTypeNestedGenericInstantiation.ts, 3, 13))
40 const v = chain({a: 1, b: 2}).mapValues(square).value();
42 >chain({a: 1, b: 2}).mapValues(square).value : Symbol(Chainable.value, Decl(mappedTypeNestedGeneric…
43 >chain({a: 1, b: 2}).mapValues : Symbol(Chainable.mapValues, Decl(mappedTypeNestedGenericInstantiat…
47 >mapValues : Symbol(Chainable.mapValues, Decl(mappedTypeNestedGenericInstantiation.ts, 3, 13))
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.js21 function mapValues<T, TResult>(
40 const wat = mapValues(foos, f => f.foo);
41 const result = foos == null ? {} : mapValues(foos, f => f.foo);
52 function mapValues(obj, callback) { function
56 var wat = mapValues(foos, function (f) { return f.foo; });
57 var result = foos == null ? {} : mapValues(foos, function (f) { return f.foo; });
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.types32 function mapValues<T, TResult>(
33 >mapValues : <T, TResult>(obj: Dictionary<T> | NumericDictionary<T> | null | undefined, callback: D…
68 const wat = mapValues(foos, f => f.foo);
70 >mapValues(foos, f => f.foo) : Dictionary<string>
71 >mapValues : <T, TResult>(obj: Dictionary<T> | NumericDictionary<T>, callback: DictionaryIterator<T…
79 const result = foos == null ? {} : mapValues(foos, f => f.foo);
81 >foos == null ? {} : mapValues(foos, f => f.foo) : Dictionary<string>
86 >mapValues(foos, f => f.foo) : Dictionary<string>
87 >mapValues : <T, TResult>(obj: Dictionary<T> | NumericDictionary<T>, callback: DictionaryIterator<T…
DjsFileImportPreservedWhenUsed.types9mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul…
10 >mapValues : <T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TRe…
49 vm.objects = _.mapValues(
50 >vm.objects = _.mapValues( obj, object => ({ ...object, [INDEX_FIELD]: index+…
54 >_.mapValues( obj, object => ({ ...object, [INDEX_FIELD]: index++ }), …
55 >_.mapValues : <T extends object, TResult>(obj: T | null | undefined, callback: (value: T[keyof T],…
57 >mapValues : <T extends object, TResult>(obj: T | null | undefined, callback: (value: T[keyof T], k…
DjsFileImportPreservedWhenUsed.symbols17mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul…
18 >mapValues : Symbol(LoDashStatic.mapValues, Decl(dash.d.ts, 2, 24))
64 vm.objects = _.mapValues(
66 >_.mapValues : Symbol(LoDashStatic.mapValues, Decl(dash.d.ts, 2, 24))
68 >mapValues : Symbol(LoDashStatic.mapValues, Decl(dash.d.ts, 2, 24))
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.types32 function mapValues<T, TResult>(
33 >mapValues : <T, TResult>(obj: Dictionary<T> | NumericDictionary<T> | null | undefined, callback: D…
68 const result = foos == null ? {} : mapValues(foos, f => f.foo);
70 >foos == null ? {} : mapValues(foos, f => f.foo) : Dictionary<string>
75 >mapValues(foos, f => f.foo) : Dictionary<string>
76 >mapValues : <T, TResult>(obj: Dictionary<T> | NumericDictionary<T>, callback: DictionaryIterator<T…
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.symbols52 function mapValues<T, TResult>(
53 >mapValues : Symbol(mapValues, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts, 16, …
104 const wat = mapValues(foos, f => f.foo);
106 >mapValues : Symbol(mapValues, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts, 16, …
113 const result = foos == null ? {} : mapValues(foos, f => f.foo);
116 >mapValues : Symbol(mapValues, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts, 16, …
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.js21 function mapValues<T, TResult>(
40 const result = foos == null ? {} : mapValues(foos, f => f.foo);
51 function mapValues(obj, callback) { function
55 var result = foos == null ? {} : mapValues(foos, function (f) { return f.foo; });
DmappedTypeNestedGenericInstantiation.js6 mapValues<U>(func: (v: T[keyof T]) => U): Chainable<{[k in keyof T]: U}>;
13 const v = chain({a: 1, b: 2}).mapValues(square).value();
19 var v = chain({ a: 1, b: 2 }).mapValues(square).value();
DjsFileImportPreservedWhenUsed.js7mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul…
24 vm.objects = _.mapValues(
43 vm.objects = _.mapValues(obj, object => ({ ...object, [INDEX_FIELD]: index++ }));
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.symbols52 function mapValues<T, TResult>(
53 >mapValues : Symbol(mapValues, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject1.ts, 16, …
104 const result = foos == null ? {} : mapValues(foos, f => f.foo);
107 >mapValues : Symbol(mapValues, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject1.ts, 16, …
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.errors.txt26 function mapValues<T, TResult>(
45 const wat = mapValues(foos, f => f.foo);
46 const result = foos == null ? {} : mapValues(foos, f => f.foo);
DjsdocTypeFromChainedAssignment3.types2 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
3 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
7 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
11 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
15 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
19 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
23 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
27 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
31 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
35 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
[all …]
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.errors.txt26 function mapValues<T, TResult>(
45 const result = foos == null ? {} : mapValues(foos, f => f.foo);
DjsdocTypeFromChainedAssignment3.symbols2 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
174 >exports.mapValues : Symbol(mapValues, Decl(a.js, 0, 1104))
175 >exports : Symbol(mapValues, Decl(a.js, 0, 1104))
176 >mapValues : Symbol(mapValues, Decl(a.js, 0, 1104))
/third_party/typescript/tests/cases/compiler/
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts20 function mapValues<T, TResult>( function
39 const wat = mapValues(foos, f => f.foo);
40 const result = foos == null ? {} : mapValues(foos, f => f.foo);
DmappedTypeNestedGenericInstantiation.ts5 mapValues<U>(func: (v: T[keyof T]) => U): Chainable<{[k in keyof T]: U}>; method
12 const v = chain({a: 1, b: 2}).mapValues(square).value();
DjsFileImportPreservedWhenUsed.ts9mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul… method
26 vm.objects = _.mapValues(
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.ts20 function mapValues<T, TResult>( function
39 const result = foos == null ? {} : mapValues(foos, f => f.foo);
/third_party/node/test/parallel/
Dtest-util-isDeepStrictEqual.js328 const mapValues = values.map((v) => [v, { a: 5 }]); constant
329 utilIsDeepStrict(new Map(mapValues), new Map(mapValues));
330 utilIsDeepStrict(new Map(mapValues), new Map(mapValues.reverse()));
Dtest-assert-deep.js477 const mapValues = values.map((v) => [v, { a: 5 }]); constant
478 assertDeepAndStrictEqual(new Map(mapValues), new Map(mapValues));
479 assertDeepAndStrictEqual(new Map(mapValues), new Map(mapValues.reverse()));
Dtest-util-inspect.js1272 const mapValues = map.values(); constant
1273 Object.defineProperty(mapValues, Symbol.toStringTag, { value: 'Foo' });
1275 util.inspect(mapValues),
/third_party/typescript/tests/cases/conformance/jsdoc/
DjsdocTypeFromChainedAssignment3.ts5 …ts.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSer…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DRegisterCoalescer.cpp2384 bool mapValues(JoinVals &Other);
2813 bool JoinVals::mapValues(JoinVals &Other) { in mapValues() function in JoinVals
3264 if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals)) { in joinSubRegRanges()
3361 if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals)) in joinVirtRegs()

12