/third_party/typescript/tests/baselines/reference/ |
D | recursiveTypeAliasWithSpreadConditionalReturnNotCircular.types | 31 declare const opt1: Option<number>; 32 >opt1 : Option<number> 40 const zipped1 = opt1.zip1(opt2, opt3); 42 >opt1.zip1(opt2, opt3) : Option<[number, string, boolean]> 43 >opt1.zip1 : <O extends Option<any>[]>(...others: O) => Option<[number, ...UnzipOptionArray1<O>]> 44 >opt1 : Option<number> 49 const zipped2 = opt1.zip2(opt2, opt3); 51 >opt1.zip2(opt2, opt3) : Option<[number, string, boolean]> 52 >opt1.zip2 : <O extends Option<any>[]>(...others: O) => Option<[number, ...UnzipOptionArray2<O>]> 53 >opt1 : Option<number> [all …]
|
D | recursiveTypeAliasWithSpreadConditionalReturnNotCircular.js | 20 declare const opt1: Option<number>; 24 const zipped1 = opt1.zip1(opt2, opt3); 25 const zipped2 = opt1.zip2(opt2, opt3); 26 const zipped3 = opt1.zip3(opt2, opt3); 31 var zipped1 = opt1.zip1(opt2, opt3); 32 var zipped2 = opt1.zip2(opt2, opt3); 33 var zipped3 = opt1.zip3(opt2, opt3);
|
D | recursiveTypeAliasWithSpreadConditionalReturnNotCircular.symbols | 86 declare const opt1: Option<number>; 87 >opt1 : Symbol(opt1, Decl(recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts, 18, 13)) 98 const zipped1 = opt1.zip1(opt2, opt3); 100 >opt1.zip1 : Symbol(Option.zip1, Decl(recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts, … 101 >opt1 : Symbol(opt1, Decl(recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts, 18, 13)) 106 const zipped2 = opt1.zip2(opt2, opt3); 108 >opt1.zip2 : Symbol(Option.zip2, Decl(recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts, … 109 >opt1 : Symbol(opt1, Decl(recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts, 18, 13)) 114 const zipped3 = opt1.zip3(opt2, opt3); 116 >opt1.zip3 : Symbol(Option.zip3, Decl(recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts, … [all …]
|
D | tsxFindAllReferences5.baseline.jsonc | 15 // let opt1 = <[|Opt|] propx={100} propString />; 192 // let opt1 = <[|Opt|] propx={100} propString />; 371 // let opt1 = <[|Opt|] propx={100} propString />; 544 // let opt1 = </*FIND ALL REFS*/[|Opt|] propx={100} propString />; 717 // let opt1 = <[|Opt|] propx={100} propString />; 890 // let opt1 = <[|Opt|] propx={100} propString />; 1063 // let opt1 = <[|Opt|] propx={100} propString />;
|
D | functionImplementations.js | 102 function opt1(n = 4) { function 273 function opt1(n) {
|
D | tsxFindAllReferences7.baseline.jsonc | 15 // let opt1 = <Opt [|propx|]={100} propString />;
|
D | functionImplementations.symbols | 205 function opt1(n = 4) { 206 >opt1 : Symbol(opt1, Decl(functionImplementations.ts, 97, 1))
|
D | functionImplementations.types | 249 function opt1(n = 4) { 250 >opt1 : (n?: number) => void
|
D | functionImplementations.errors.txt | 109 function opt1(n = 4) {
|
/third_party/ffmpeg/libswscale/x86/ |
D | swscale.c | 299 #define VSCALE_FUNCS(opt1, opt2) \ argument 300 VSCALE_FUNC(8, opt1); \ 303 VSCALE_FUNC(16, opt1) 386 #define ASSIGN_SCALE_FUNC2(hscalefn, filtersize, opt1, opt2) do { \ in ff_sws_init_swscale_x86() argument 389 ff_hscale8to19_ ## filtersize ## _ ## opt1; \ in ff_sws_init_swscale_x86() 392 ff_hscale9to19_ ## filtersize ## _ ## opt1; \ in ff_sws_init_swscale_x86() 395 ff_hscale10to19_ ## filtersize ## _ ## opt1; \ in ff_sws_init_swscale_x86() 398 ff_hscale12to19_ ## filtersize ## _ ## opt1; \ in ff_sws_init_swscale_x86() 401 ff_hscale14to19_ ## filtersize ## _ ## opt1; \ in ff_sws_init_swscale_x86() 405 ff_hscale16to19_ ## filtersize ## _ ## opt1; \ in ff_sws_init_swscale_x86() [all …]
|
/third_party/typescript/src/server/ |
D | typingsCache.ts | 66 function typeAcquisitionChanged(opt1: TypeAcquisition, opt2: TypeAcquisition): boolean { 67 return opt1.enable !== opt2.enable || 68 !setIsEqualTo(opt1.include, opt2.include) || 69 !setIsEqualTo(opt1.exclude, opt2.exclude); 72 function compilerOptionsChanged(opt1: CompilerOptions, opt2: CompilerOptions): boolean { 74 return getAllowJSCompilerOption(opt1) !== getAllowJSCompilerOption(opt2);
|
/third_party/typescript/tests/cases/compiler/ |
D | recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts | 19 declare const opt1: Option<number>; constant 23 const zipped1 = opt1.zip1(opt2, opt3); 24 const zipped2 = opt1.zip2(opt2, opt3); 25 const zipped3 = opt1.zip3(opt2, opt3);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
D | optional_test.cc | 336 constexpr absl::optional<ConstexprType> opt1{absl::in_place_t(), 1}; in TEST() local 337 static_assert(opt1, ""); in TEST() 338 static_assert((*opt1).x == ConstexprType::kCtorInt, ""); in TEST() 370 constexpr absl::optional<ConstexprType> opt1 = {"abc"}; in TEST() local 371 static_assert(opt1, ""); in TEST() 372 static_assert(ConstexprType::kCtorConstChar == (*opt1).x, ""); in TEST() 498 absl::optional<ConvertFromOptional> opt1 = absl::optional<Implicit>(); in TEST() local 499 EXPECT_TRUE(opt1); in TEST() 500 EXPECT_TRUE(opt1->implicit); in TEST() 501 EXPECT_TRUE(opt1->move); in TEST() [all …]
|
/third_party/ffmpeg/libavcodec/x86/ |
D | hevcdsp_init.c | 177 #define mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument 178 void ff_hevc_put_hevc_##name##width1##_10_##opt1(int16_t *dst, uint8_t *src, ptrdiff_t _srcstride, … 182 …ff_hevc_put_hevc_##name##width2##_10_##opt1(dst, src, _srcstride, height, mx, my, width); … 186 #define mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument 187 void ff_hevc_put_hevc_bi_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, uint8_t *src… 191 …ff_hevc_put_hevc_bi_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, src2, … 197 #define mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument 198 void ff_hevc_put_hevc_uni_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, … 202 …ff_hevc_put_hevc_uni_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, … 208 #define mc_rep_mixs_10(name, width1, width2, width3, opt1, opt2, width4) \ argument [all …]
|
/third_party/libabigail/tests/ |
D | test-cxx-compat.cc | 20 optional<bool> opt1; variable 21 REQUIRE_FALSE(opt1.has_value());
|
/third_party/icu/tools/release/c/os-mapping/ |
D | testTimezones.sh | 32 if [ "$opt1" != "-bad" ]; then 38 if [ "$opt1" == "-all" ]; then
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
D | common.h | 12 #define OPT_COLLIDING(prog, opt1, opt2) do { \ argument 15 prog, opt1, opt2); \
|
/third_party/node/test/sequential/ |
D | test-dgram-bind-shared-ports.js | 100 const opt1 = { address, port: 0, exclusive: false }; variable 103 socket1.bind(opt1, common.mustCall(() => {
|
/third_party/python/Lib/test/ |
D | test_optparse.py | 354 opt1 = self.parser.get_option("-v") 355 self.assertIsInstance(opt1, Option) 356 self.assertEqual(opt1._short_opts, ["-v", "-n"]) 357 self.assertEqual(opt1._long_opts, ["--verbose", "--noisy"]) 358 self.assertEqual(opt1.action, "store_true") 359 self.assertEqual(opt1.dest, "verbose") 362 opt1 = self.parser.get_option("-v") 366 self.assertTrue(opt1 is opt2 is opt3 is opt4)
|
/third_party/typescript/tests/cases/conformance/functions/ |
D | functionImplementations.ts | 103 function opt1(n = 4) { function
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
D | sha1-armv4-large.pl | 112 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_; 126 $opt1 @ F_xx_xx
|
/third_party/openssl/crypto/sha/asm/ |
D | sha1-armv4-large.pl | 112 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_; 126 $opt1 @ F_xx_xx
|
/third_party/node/test/parallel/ |
D | test-crypto-keygen.js | 1470 for (const [opt1, opt2] of incompatible) { 1473 [opt1]: allOpts[opt1], 1479 message: `Option "${opt1}" cannot be used in combination with option ` +
|
/third_party/openssl/test/recipes/80-test_cmp_http_data/ |
D | test_verification.csv | 1 …ted,val, -ignore_keyusage, -unprotected_errors, -extracertsout,val,val2, -opt1,arg1, -opt2,arg2, -…
|
/third_party/ffmpeg/doc/ |
D | fftools-common-opts.texi | 173 @item -sources @var{device}[,@var{opt1}=@var{val1}[,@var{opt2}=@var{val2}]...] 181 @item -sinks @var{device}[,@var{opt1}=@var{val1}[,@var{opt2}=@var{val2}]...]
|