| /third_party/protobuf/js/experimental/benchmarks/code_size/apps_jspb/ |
| D | all_types_proto2.js | 31 [true].forEach((e) => msgPackedTypes.addPackedBool(e)); 33 [true].forEach((e) => msgAllTypes.addRepeatedBool(e)); 35 ['1'].forEach((e) => msgAllTypes.addRepeatedBytes(e)); 37 [1.0].forEach((e) => msgPackedTypes.addPackedDouble(e)); 39 [1.0].forEach((e) => msgAllTypes.addRepeatedDouble(e)); 41 [1].forEach((e) => msgPackedTypes.addPackedFixed32(e)); 43 [1].forEach((e) => msgAllTypes.addRepeatedFixed32(e)); 45 [1].forEach((e) => msgPackedTypes.addPackedFixed64(e)); 47 [1].forEach((e) => msgAllTypes.addRepeatedFixed64(e)); 49 [1.0].forEach((e) => msgPackedTypes.addPackedFloat(e)); [all …]
|
| D | all_types_proto3.js | 31 [true].forEach((e) => msgPackedTypes.addPackedBool(e)); 33 [true].forEach((e) => msgAllTypes.addRepeatedBool(e)); 35 ['1'].forEach((e) => msgAllTypes.addRepeatedBytes(e)); 37 [1.0].forEach((e) => msgPackedTypes.addPackedDouble(e)); 39 [1.0].forEach((e) => msgAllTypes.addRepeatedDouble(e)); 41 [1].forEach((e) => msgPackedTypes.addPackedFixed32(e)); 43 [1].forEach((e) => msgAllTypes.addRepeatedFixed32(e)); 45 [1].forEach((e) => msgPackedTypes.addPackedFixed64(e)); 47 [1].forEach((e) => msgAllTypes.addRepeatedFixed64(e)); 49 [1.0].forEach((e) => msgPackedTypes.addPackedFloat(e)); [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | covariantCallbacks.types | 51 forEach(cb: (item: A) => void): void; 52 >forEach : (cb: (item: A) => void) => void 58 forEach(cb: (item: B) => void): void; 59 >forEach : (cb: (item: B) => void) => void 81 forEach(cb: (item: A) => boolean): void; 82 >forEach : (cb: (item: A) => boolean) => void 88 forEach(cb: (item: A) => void): void; 89 >forEach : (cb: (item: A) => void) => void 111 forEach(cb: (item: A) => void): void; 112 >forEach : (cb: (item: A) => void) => void [all …]
|
| D | covariantCallbacks.symbols | 64 forEach(cb: (item: A) => void): void; 65 >forEach : Symbol(AList1.forEach, Decl(covariantCallbacks.ts, 19, 18)) 74 forEach(cb: (item: B) => void): void; 75 >forEach : Symbol(BList1.forEach, Decl(covariantCallbacks.ts, 23, 18)) 100 forEach(cb: (item: A) => boolean): void; 101 >forEach : Symbol(AList2.forEach, Decl(covariantCallbacks.ts, 32, 18)) 110 forEach(cb: (item: A) => void): void; 111 >forEach : Symbol(BList2.forEach, Decl(covariantCallbacks.ts, 36, 18)) 136 forEach(cb: (item: A) => void): void; 137 >forEach : Symbol(AList3.forEach, Decl(covariantCallbacks.ts, 45, 18)) [all …]
|
| D | covariantCallbacks.errors.txt | 6 Types of property 'forEach' are incompatible. 12 Types of property 'forEach' are incompatible. 16 Types of property 'forEach' are incompatible. 20 Types of property 'forEach' are incompatible. 55 forEach(cb: (item: A) => void): void; 59 forEach(cb: (item: B) => void): void; 67 !!! error TS2322: Types of property 'forEach' are incompatible. 75 forEach(cb: (item: A) => boolean): void; 79 forEach(cb: (item: A) => void): void; 87 !!! error TS2322: Types of property 'forEach' are incompatible. [all …]
|
| D | autoLift2.symbols | 24 [1, 2].forEach((p) => this.foo); 25 >[1, 2].forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --)) 26 >forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --)) 30 [1, 2].forEach((p) => this.bar); 31 >[1, 2].forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --)) 32 >forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --))
|
| D | contextualTypingOfGenericFunctionTypedArguments1.symbols | 23 forEach<T>(c: Collection<T>, f: (x: T) => Date): void; 24 >forEach : Symbol(Combinators.forEach, Decl(contextualTypingOfGenericFunctionTypedArguments1.ts, 6,… 51 var r5 = _.forEach<number>(c2, f); 53 >_.forEach : Symbol(Combinators.forEach, Decl(contextualTypingOfGenericFunctionTypedArguments1.ts, … 55 >forEach : Symbol(Combinators.forEach, Decl(contextualTypingOfGenericFunctionTypedArguments1.ts, 6,… 59 var r6 = _.forEach<number>(c2, (x) => { return x.toFixed() }); 61 >_.forEach : Symbol(Combinators.forEach, Decl(contextualTypingOfGenericFunctionTypedArguments1.ts, … 63 >forEach : Symbol(Combinators.forEach, Decl(contextualTypingOfGenericFunctionTypedArguments1.ts, 6,…
|
| D | contextualTypingOfGenericFunctionTypedArguments1.types | 16 forEach<T>(c: Collection<T>, f: (x: T) => Date): void; 17 >forEach : <T>(c: Collection<T>, f: (x: T) => Date) => void 39 var r5 = _.forEach<number>(c2, f); 41 >_.forEach<number>(c2, f) : void 42 >_.forEach : <T>(c: Collection<T>, f: (x: T) => Date) => void 44 >forEach : <T>(c: Collection<T>, f: (x: T) => Date) => void 48 var r6 = _.forEach<number>(c2, (x) => { return x.toFixed() }); 50 >_.forEach<number>(c2, (x) => { return x.toFixed() }) : void 51 >_.forEach : <T>(c: Collection<T>, f: (x: T) => Date) => void 53 >forEach : <T>(c: Collection<T>, f: (x: T) => Date) => void
|
| D | covariantCallbacks.js | 22 forEach(cb: (item: A) => void): void; 26 forEach(cb: (item: B) => void): void; 35 forEach(cb: (item: A) => boolean): void; 39 forEach(cb: (item: A) => void): void; 48 forEach(cb: (item: A) => void): void; 52 forEach(cb: (item: A, context: any) => void): void; 61 forEach(cb: (item: A) => A): void; 65 forEach(cb: (item: B) => B): void;
|
| D | autoLift2.types | 38 [1, 2].forEach((p) => this.foo); 39 >[1, 2].forEach((p) => this.foo) : void 40 >[1, 2].forEach : (callbackfn: (value: number, index: number, array: number[]) => void, thisArg?: a… 44 >forEach : (callbackfn: (value: number, index: number, array: number[]) => void, thisArg?: any) => … 51 [1, 2].forEach((p) => this.bar); 52 >[1, 2].forEach((p) => this.bar) : void 53 >[1, 2].forEach : (callbackfn: (value: number, index: number, array: number[]) => void, thisArg?: a… 57 >forEach : (callbackfn: (value: number, index: number, array: number[]) => void, thisArg?: any) => …
|
| D | targetTypeArgs.symbols | 16 [1].forEach(function(v,i,a) { v }); 17 >[1].forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --)) 18 >forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --)) 52 ["s"].forEach(function(v,i,a) { v }); 53 >["s"].forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --)) 54 >forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --))
|
| D | undeclaredModuleError.types | 30 …() => { } , (error: Error, files: {}[]) => { files.forEach((file) => { … 35 …() => { } , (error: Error, files: {}[]) => { files.forEach((file) => { … 38 …() => { } , (error: Error, files: {}[]) => { files.forEach((file) => { … 44 >(error: Error, files: {}[]) => { files.forEach((file) => { var f… 48 files.forEach((file) => { 49 >files.forEach((file) => { var fullPath = join(IDoNotExist); } ) … 50 >files.forEach : (callbackfn: (value: {}, index: number, array: {}[]) => void, thisArg?: any) => vo… 52 >forEach : (callbackfn: (value: {}, index: number, array: {}[]) => void, thisArg?: any) => void
|
| D | noErrorsInCallback.symbols | 12 [].forEach(() => { 13 >[].forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --)) 14 >forEach : Symbol(Array.forEach, Decl(lib.es5.d.ts, --, --))
|
| /third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
| D | Variable.hpp | 59 // foreach() calls cb with each of the variables in the container, while cb 61 // foreach() will return when cb returns false. 62 inline void foreach(const ForeachCallback &cb); 64 // foreach() calls cb with each of the variables in the container within the 66 // foreach() will return when cb returns false. 67 virtual void foreach(size_t startIndex, size_t count, const ForeachCallback &cb) = 0; 87 void Variables::foreach(const ForeachCallback &cb) in foreach() function in vk::dbg::Variables 89 foreach(0, std::numeric_limits<size_t>::max(), cb); in foreach() 98 inline void foreach(size_t startIndex, size_t count, const ForeachCallback &cb) override; 120 inline void foreach(ForeachIndex &index, const F &cb); [all …]
|
| /third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/ |
| D | covariantCallbacks.ts | 24 forEach(cb: (item: A) => void): void; method 28 forEach(cb: (item: B) => void): void; method 37 forEach(cb: (item: A) => boolean): void; method 41 forEach(cb: (item: A) => void): void; method 50 forEach(cb: (item: A) => void): void; method 54 forEach(cb: (item: A, context: any) => void): void; method 63 forEach(cb: (item: A) => A): void; method 67 forEach(cb: (item: B) => B): void; method
|
| /third_party/musl/ |
| D | BUILD.gn | 164 foreach(i, src_files) { 165 foreach(s, musl_src_files_ext) { 173 foreach(s, src_files) { 177 foreach(s, musl_src_files_ext) { 182 foreach(i, src_files) { 183 foreach(s, musl_src_linux_files) { 189 foreach(s, src_files) { 193 foreach(s, musl_src_files_ext) { 284 foreach(file, uspi_files) { 301 foreach(file, uapi_scsi_files) { [all …]
|
| /third_party/EGL/sdk/docs/man/xhtml/ |
| D | maketoc.pl | 132 foreach (@files) 141 foreach (@funcs) 156 foreach (@files) 175 foreach (@files) 187 foreach (@pageNames) 198 foreach (@realEntrypoints) 205 foreach (@pageNames) 255 foreach (@gl) 274 foreach (@toc) 291 foreach (@gl) [all …]
|
| /third_party/skia/third_party/externals/egl-registry/sdk/docs/man/xhtml/ |
| D | maketoc.pl | 132 foreach (@files) 141 foreach (@funcs) 156 foreach (@files) 175 foreach (@files) 187 foreach (@pageNames) 198 foreach (@realEntrypoints) 205 foreach (@pageNames) 255 foreach (@gl) 274 foreach (@toc) 291 foreach (@gl) [all …]
|
| /third_party/skia/third_party/externals/angle2/android/ |
| D | angle_apk.gni | 59 foreach(_library, angle_libraries) { 64 foreach(_layer, vulkan_validation_layers) { 75 foreach(_library, angle_libraries) { 79 foreach(_layer, vulkan_validation_layers) { 88 foreach(_library, angle_libraries) { 92 foreach(_layer, vulkan_validation_layers) { 99 foreach(_library, angle_libraries) { 103 foreach(_layer, vulkan_validation_layers) {
|
| /third_party/jerryscript/tests/jerry/ |
| D | array-prototype-foreach.js | 22 array.forEach(f); 27 obj.forEach = Array.prototype.forEach; 30 obj.forEach(f); 41 obj.forEach = Array.prototype.forEach 44 obj.forEach(f);
|
| /third_party/openssl/test/ |
| D | ssl_test.tmpl | 28 foreach my $key (sort keys %server) { 35 foreach my $key (sort keys %server2) { 42 foreach my $key (sort keys %resume_server) { 50 foreach my $key (sort keys %client) { 56 foreach my $key (sort keys %resume_client) { 64 foreach my $key (sort keys %test) { 93 foreach my $key (sort keys %{$server{"extra"}}) { 100 foreach my $key (sort keys %{$server2{"extra"}}) { 107 foreach my $key (sort keys %{$resume_server{"extra"}}) { 114 foreach my $key (sort keys %{$client{"extra"}}) { [all …]
|
| /third_party/ffmpeg/tests/fate/ |
| D | concatdec.mak | 12 $(foreach D,SIMPLE1 SIMPLE2 EXTENDED,$(eval $(FATE_CONCAT_DEMUXER_SUITE))) 14 $(foreach D,$(FATE_CONCAT_DEMUXER_SIMPLE1_LAVF),$(eval fate-concat-demuxer-simple1-lavf-$(D): fate-… 15 $(foreach D,$(FATE_CONCAT_DEMUXER_SIMPLE1_LAVF),$(eval fate-concat-demuxer-simple1-lavf-$(D): CMD =… 18 $(foreach D,$(FATE_CONCAT_DEMUXER_SIMPLE2_LAVF),$(eval fate-concat-demuxer-simple2-lavf-$(D): fate-… 19 $(foreach D,$(FATE_CONCAT_DEMUXER_SIMPLE2_LAVF),$(eval fate-concat-demuxer-simple2-lavf-$(D): CMD =… 22 $(foreach D,$(FATE_CONCAT_DEMUXER_EXTENDED_LAVF),$(eval fate-concat-demuxer-extended-lavf-$(D): fat… 23 $(foreach D,$(FATE_CONCAT_DEMUXER_EXTENDED_LAVF),$(eval fate-concat-demuxer-extended-lavf-$(D): CMD…
|
| /third_party/jerryscript/tests/jerry/es2015/ |
| D | map-prototype-foreach.js | 26 map.forEach (function (value, key) { 44 map.forEach (function (value, key) { 65 map.forEach (function (value, key) { 76 Map.prototype.forEach.call ({}); method in Map 84 map.forEach (5); 92 map.forEach (function (value, key) { 106 map.forEach (function (value, key) { 115 map.forEach(function(value, key, thisArg) {
|
| D | set-iterators.js | 17 methods.forEach(function (method) { 26 methods.forEach(function (method) { 37 methods.forEach(function(method) { 41 methods.forEach(function (method) { 50 methods.forEach(function (method) { 67 iterators.forEach(function(element) { 79 iterators.forEach(function(element) { 95 iterators.forEach(function(element) { 114 s.forEach(function(element) {
|
| /third_party/icu/tools/colprobe/ |
| D | uniqueFiles.pl | 17 foreach $secondfile (@ARGV) { 21 foreach $file (sort keys(%secondfilelist)) { 24 foreach $secondfile (sort(keys %secondfilelist)) { 34 foreach $samefile (@same) { 45 foreach $file (sort( keys %list)) { 48 foreach $i ( 0 .. $#{ $list{$file} } ) {
|