| /third_party/typescript/tests/baselines/reference/ |
| D | mappedTypeNestedGenericInstantiation.types | 8 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; }>
|
| D | mappedTypeNestedGenericInstantiation.symbols | 12 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))
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject2.js | 21 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; });
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject2.types | 32 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…
|
| D | jsFileImportPreservedWhenUsed.types | 9 …mapValues<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…
|
| D | jsFileImportPreservedWhenUsed.symbols | 17 …mapValues<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))
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject1.types | 32 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…
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject2.symbols | 52 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, …
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject1.js | 21 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; });
|
| D | mappedTypeNestedGenericInstantiation.js | 6 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();
|
| D | jsFileImportPreservedWhenUsed.js | 7 …mapValues<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++ }));
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject1.symbols | 52 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, …
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject2.errors.txt | 26 function mapValues<T, TResult>( 45 const wat = mapValues(foos, f => f.foo); 46 const result = foos == null ? {} : mapValues(foos, f => f.foo);
|
| D | jsdocTypeFromChainedAssignment3.types | 2 …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 …]
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject1.errors.txt | 26 function mapValues<T, TResult>( 45 const result = foos == null ? {} : mapValues(foos, f => f.foo);
|
| D | jsdocTypeFromChainedAssignment3.symbols | 2 …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/ |
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts | 20 function mapValues<T, TResult>( function 39 const wat = mapValues(foos, f => f.foo); 40 const result = foos == null ? {} : mapValues(foos, f => f.foo);
|
| D | mappedTypeNestedGenericInstantiation.ts | 5 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();
|
| D | jsFileImportPreservedWhenUsed.ts | 9 …mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul… method 26 vm.objects = _.mapValues(
|
| D | emptyObjectNotSubtypeOfIndexSignatureContainingObject1.ts | 20 function mapValues<T, TResult>( function 39 const result = foos == null ? {} : mapValues(foos, f => f.foo);
|
| /third_party/node/test/parallel/ |
| D | test-util-isDeepStrictEqual.js | 328 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()));
|
| D | test-assert-deep.js | 477 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()));
|
| D | test-util-inspect.js | 1272 const mapValues = map.values(); constant 1273 Object.defineProperty(mapValues, Symbol.toStringTag, { value: 'Foo' }); 1275 util.inspect(mapValues),
|
| /third_party/typescript/tests/cases/conformance/jsdoc/ |
| D | jsdocTypeFromChainedAssignment3.ts | 5 …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/ |
| D | RegisterCoalescer.cpp | 2384 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()
|