/third_party/typescript/tests/baselines/reference/ |
D | underscoreMapFirst.types | 25 export function pluck<T extends {}>( 26 >pluck : <T extends {}>(list: Collection<T>, propertyName: string) => any[] 88 var allSeries: ISeries[][] = _.pluck(data, "series"); 90 >_.pluck(data, "series") : any[] 91 >_.pluck : <T extends {}>(list: _.Collection<T>, propertyName: string) => any[] 93 >pluck : <T extends {}>(list: _.Collection<T>, propertyName: string) => any[]
|
D | underscoreMapFirst.symbols | 47 export function pluck<T extends {}>( 48 >pluck : Symbol(pluck, Decl(underscoreMapFirst.ts, 13, 5)) 128 var allSeries: ISeries[][] = _.pluck(data, "series"); 131 >_.pluck : Symbol(_.pluck, Decl(underscoreMapFirst.ts, 13, 5)) 133 >pluck : Symbol(_.pluck, Decl(underscoreMapFirst.ts, 13, 5))
|
D | underscoreMapFirst.js | 16 export function pluck<T extends {}>( 44 var allSeries: ISeries[][] = _.pluck(data, "series"); 74 var allSeries = _.pluck(data, "series");
|
D | keyofAndIndexedAccess.js | 133 function pluck<T, K extends keyof T>(array: T[], key: K) { 138 let names = pluck(shapes, "name"); // string[] 139 let widths = pluck(shapes, "width"); // number[] 140 let nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[] 751 function pluck(array, key) { function 755 var names = pluck(shapes, "name"); // string[] 756 var widths = pluck(shapes, "width"); // number[] 757 var nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[] 1181 declare function pluck<T, K extends keyof T>(array: T[], key: K): T[K][];
|
D | underscoreTest1.js | 112 pluck(propertyName: string): any[]; 195 pluck(propertyName: string): any[]; 271 pluck(propertyName: string): ChainedArray<any>; 362 pluck(propertyName: string): ChainedArray<any>; 470 pluck(list: any[], propertyName: string): any[]; 471 pluck(list: Dictionary<any>, propertyName: string): any[]; 686 _.pluck(stooges, 'name'); 925 _.pluck(stooges, 'name');
|
D | underscoreTest1.errors.txt | 55 _.pluck(stooges, 'name'); 382 pluck(propertyName: string): any[]; 465 pluck(propertyName: string): any[]; 541 pluck(propertyName: string): ChainedArray<any>; 632 pluck(propertyName: string): ChainedArray<any>; 740 pluck(list: any[], propertyName: string): any[]; 741 pluck(list: Dictionary<any>, propertyName: string): any[];
|
D | keyofAndIndexedAccess.types | 441 function pluck<T, K extends keyof T>(array: T[], key: K) { 442 >pluck : <T, K extends keyof T>(array: T[], key: K) => T[K][] 462 let names = pluck(shapes, "name"); // string[] 464 >pluck(shapes, "name") : string[] 465 >pluck : <T, K extends keyof T>(array: T[], key: K) => T[K][] 469 let widths = pluck(shapes, "width"); // number[] 471 >pluck(shapes, "width") : number[] 472 >pluck : <T, K extends keyof T>(array: T[], key: K) => T[K][] 476 let nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[] 478 >pluck(shapes, cond ? "name" : "visible") : (string | boolean)[] [all …]
|
D | keyofAndIndexedAccess.symbols | 443 function pluck<T, K extends keyof T>(array: T[], key: K) { 444 >pluck : Symbol(pluck, Decl(keyofAndIndexedAccess.ts, 129, 1)) 467 let names = pluck(shapes, "name"); // string[] 469 >pluck : Symbol(pluck, Decl(keyofAndIndexedAccess.ts, 129, 1)) 472 let widths = pluck(shapes, "width"); // number[] 474 >pluck : Symbol(pluck, Decl(keyofAndIndexedAccess.ts, 129, 1)) 477 let nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[] 479 >pluck : Symbol(pluck, Decl(keyofAndIndexedAccess.ts, 129, 1))
|
D | underscoreTest1.types | 304 _.pluck(stooges, 'name'); 305 >_.pluck(stooges, 'name') : any[] 306 >_.pluck : { (list: any[], propertyName: string): any[]; (list: Dictionary<any>, propertyName: stri… 308 >pluck : { (list: any[], propertyName: string): any[]; (list: Dictionary<any>, propertyName: string… 2086 pluck(propertyName: string): any[]; 2087 >pluck : (propertyName: string) => any[] 2445 pluck(propertyName: string): any[]; 2446 >pluck : (propertyName: string) => any[] 2743 pluck(propertyName: string): ChainedArray<any>; 2744 >pluck : (propertyName: string) => ChainedArray<any> [all …]
|
D | underscoreTest1.symbols | 155 _.pluck(stooges, 'name'); 156 >_.pluck : Symbol(Underscore.Static.pluck, Decl(underscoreTest1_underscore.ts, 464, 81), Decl(under… 158 >pluck : Symbol(Underscore.Static.pluck, Decl(underscoreTest1_underscore.ts, 464, 81), Decl(undersc… 1506 pluck(propertyName: string): any[]; 1507 >pluck : Symbol(WrappedArray.pluck, Decl(underscoreTest1_underscore.ts, 107, 58)) 2045 pluck(propertyName: string): any[]; 2046 >pluck : Symbol(WrappedDictionary.pluck, Decl(underscoreTest1_underscore.ts, 190, 58)) 2538 pluck(propertyName: string): ChainedArray<any>; 2539 >pluck : Symbol(ChainedArray.pluck, Decl(underscoreTest1_underscore.ts, 266, 70)) 3189 pluck(propertyName: string): ChainedArray<any>; [all …]
|
/third_party/grpc/doc/core/ |
D | grpc-cq.md | 15 …in the queue are function pointers to callbacks. Also, neither next() nor pluck() can be called on… 18 - GRPC_CQ_NON_POLLING: Threads calling completion_queue_next/pluck do not do any polling 19 - GRPC_CQ_DEFAULT_POLLING: Threads calling completion_queue_next/pluck do polling 32 grpc_completion_queue_next(cq, deadline)/pluck(cq, deadline, tag) { 35 \\ (in case of pluck() dequeue only if the tag is the one we are interested in) 39 \\ 3. In case of pluck, add (tag, worker) pair to the tag<->worker map on the cq
|
/third_party/typescript/tests/cases/compiler/ |
D | underscoreMapFirst.ts | 15 export function pluck<T extends {}>( function 43 var allSeries: ISeries[][] = _.pluck(data, "series");
|
D | underscoreTest1.ts | 110 pluck(propertyName: string): any[]; method 193 pluck(propertyName: string): any[]; method 269 pluck(propertyName: string): ChainedArray<any>; method 360 pluck(propertyName: string): ChainedArray<any>; method 468 pluck(list: any[], propertyName: string): any[]; method 469 pluck(list: Dictionary<any>, propertyName: string): any[]; method 684 _.pluck(stooges, 'name');
|
/third_party/node/deps/npm/node_modules/jsprim/ |
D | README.md | 109 ### pluck(obj, key) 112 For example, `pluck(obj, "foo.bar.baz")` is roughly equivalent to 116 thrown. For example, `pluck({}, "foo.bar")` is just undefined. 119 `pluck({ 'foo.bar': 1 }, 'foo.bar')` is 1, not undefined. This is also 120 true recursively, so `pluck({ 'a': { 'foo.bar': 1 } }, 'a.foo.bar')` is
|
/third_party/node/deps/npm/node_modules/jsprim/lib/ |
D | jsprim.js | 20 exports.pluck = pluck; 143 function pluck(obj, key) function
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofAndIndexedAccess.ts | 135 function pluck<T, K extends keyof T>(array: T[], key: K) { function 140 let names = pluck(shapes, "name"); // string[] 141 let widths = pluck(shapes, "width"); // number[] 142 let nameOrVisibles = pluck(shapes, cond ? "name" : "visible"); // (string | boolean)[]
|
/third_party/boost/libs/gil/doc/html/_static/ |
D | underscore-1.3.1.js | 221 _.pluck = function(obj, key) { function 266 return _.pluck(_.map(obj, function(value, index, list) { 414 var length = _.max(_.pluck(args, 'length')); 416 for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
|
D | underscore.js | 14 …ll(arguments,2);return b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck= function 16 …()*(f+1)),b[f]=b[d],b[d]=a)});return b};b.sortBy=function(a,c,d){return b.pluck(b.map(a,function(a… 19 …function(){for(var a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.…
|
/third_party/boost/libs/python/doc/html/numpy/_static/ |
D | underscore-1.3.1.js | 221 _.pluck = function(obj, key) { function 266 return _.pluck(_.map(obj, function(value, index, list) { 414 var length = _.max(_.pluck(args, 'length')); 416 for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
|
D | underscore.js | 14 …ll(arguments,2);return b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck= function 16 …()*(f+1)),b[f]=b[d],b[d]=a)});return b};b.sortBy=function(a,c,d){return b.pluck(b.map(a,function(a… 19 …function(){for(var a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.…
|
/third_party/boost/libs/hof/doc/html/_static/ |
D | underscore-1.3.1.js | 221 _.pluck = function(obj, key) { function 266 return _.pluck(_.map(obj, function(value, index, list) { 414 var length = _.max(_.pluck(args, 'length')); 416 for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
|
D | underscore.js | 14 …ll(arguments,2);return b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck= function 16 …()*(f+1)),b[f]=b[d],b[d]=a)});return b};b.sortBy=function(a,c,d){return b.pluck(b.map(a,function(a… 19 …function(){for(var a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.…
|
/third_party/grpc/src/core/lib/surface/ |
D | completion_queue.cc | 210 grpc_event (*pluck)(grpc_completion_queue* cq, void* tag, member 1330 return cq->vtable->pluck(cq, tag, deadline, reserved);
|
/third_party/skia/third_party/externals/harfbuzz/perf/texts/ |
D | en-thelittleprince.txt | 885 neck and take it away with me. If I owned a flower, I could pluck that flower and take it away with 886 me. But you cannot pluck the stars from heaven...”
|
/third_party/harfbuzz/perf/texts/ |
D | en-thelittleprince.txt | 885 neck and take it away with me. If I owned a flower, I could pluck that flower and take it away with 886 me. But you cannot pluck the stars from heaven...”
|