/third_party/typescript/tests/baselines/reference/ |
D | parseBigInt.types | 2 // All bases should allow "n" suffix 3 const bin = 0b101, binBig = 0b101n; // 5, 5n 6 >binBig : 5n 7 >0b101n : 5n 9 const oct = 0o567, octBig = 0o567n; // 375, 375n 12 >octBig : 375n 13 >0o567n : 375n 15 const hex = 0xC0B, hexBig = 0xC0Bn; // 3083, 3083n 18 >hexBig : 3083n 19 >0xC0Bn : 3083n [all …]
|
D | numberVsBigIntOperations.types | 3 let bigInt = 1n, num = 2; 5 >1n : 1n 9 bigInt = 1n; bigInt = 2; num = 1n; num = 2; 10 >bigInt = 1n : 1n 12 >1n : 1n 16 >num = 1n : 1n 18 >1n : 1n 23 bigInt += 1n; bigInt += 2; num += 1n; num += 2; 24 >bigInt += 1n : bigint 26 >1n : 1n [all …]
|
D | numberVsBigIntOperations.js | 3 let bigInt = 1n, num = 2; 4 bigInt = 1n; bigInt = 2; num = 1n; num = 2; 5 bigInt += 1n; bigInt += 2; num += 1n; num += 2; 6 bigInt -= 1n; bigInt -= 2; num -= 1n; num -= 2; 7 bigInt *= 1n; bigInt *= 2; num *= 1n; num *= 2; 8 bigInt /= 1n; bigInt /= 2; num /= 1n; num /= 2; 9 bigInt %= 1n; bigInt %= 2; num %= 1n; num %= 2; 10 bigInt **= 1n; bigInt **= 2; num **= 1n; num **= 2; 11 bigInt <<= 1n; bigInt <<= 2; num <<= 1n; num <<= 2; 12 bigInt >>= 1n; bigInt >>= 2; num >>= 1n; num >>= 2; [all …]
|
D | parseBigInt.js | 3 const bin = 0b101, binBig = 0b101n; // 5, 5n 4 const oct = 0o567, octBig = 0o567n; // 375, 375n 5 const hex = 0xC0B, hexBig = 0xC0Bn; // 3083, 3083n 6 const dec = 123, decBig = 123n; 10 const largeBin = 0b10101010101010101010101010101010101010101010101010101010101n; // 384307168202282… 11 const largeOct = 0o123456712345671234567n; // 1505852261029722487n 12 const largeDec = 12345678091234567890n; 13 const largeHex = 0x1234567890abcdefn; // 1311768467294899695n 23 const zero = 0b0n; 24 const oneBit = 0b1n; [all …]
|
D | thisTypeInAccessors.types | 3 n: number; 4 >n : number 11 >explicit : { n: number; x: number; } 12 >{ n: 12, get x(this: Foo): number { return this.n; }, set x(this: Foo, n: number) { this.… 14 n: 12, 15 >n : number 18 get x(this: Foo): number { return this.n; }, 21 >this.n : number 23 >n : number 25 set x(this: Foo, n: number) { this.n = n; } [all …]
|
D | taggedTemplateStringsTypeArgumentInferenceES6.js | 3 function noParams<T>(n: T) { } 7 function noGenericParams<T>(n: TemplateStringsArray) { } 11 function someGenerics1a<T, U>(n: T, m: number) { } 14 function someGenerics1b<T, U>(n: TemplateStringsArray, m: U) { } 18 function someGenerics2a<T>(strs: TemplateStringsArray, n: (x: T) => void) { } 19 someGenerics2a `${(n: string) => n}`; 21 function someGenerics2b<T, U>(strs: TemplateStringsArray, n: (x: T, y: U) => void) { } 22 someGenerics2b `${ (n: string, x: number) => n }`; 31 function someGenerics4<T, U>(strs: TemplateStringsArray, n: T, f: (x: U) => void) { } 37 function someGenerics5<U, T>(strs: TemplateStringsArray, n: T, f: (x: U) => void) { } [all …]
|
D | typeArgumentInferenceWithConstraints.js | 9 function noGenericParams<T extends number>(n: string) { } 15 function someGenerics1<T, U extends T>(n: T, m: number) { } 22 function someGenerics2a<T extends string>(n: (x: T) => void) { } 23 someGenerics2a((n: string) => n); 24 someGenerics2a<string>((n: string) => n); 25 someGenerics2a<string>((n) => n.substr(0)); 27 function someGenerics2b<T extends string, U extends number>(n: (x: T, y: U) => void) { } 28 someGenerics2b((n: string, x: number) => n); 29 someGenerics2b<string, number>((n: string, t: number) => n); 30 someGenerics2b<string, number>((n, t) => n.substr(t * t)); [all …]
|
D | typeArgumentInference.js | 9 function noGenericParams<T>(n: string) { } 15 function someGenerics1<T, U>(n: T, m: number) { } 20 function someGenerics2a<T>(n: (x: T) => void) { } 21 someGenerics2a((n: string) => n); 22 someGenerics2a<string>((n: string) => n); 23 someGenerics2a<string>((n) => n.substr(0)); 25 function someGenerics2b<T, U>(n: (x: T, y: U) => void) { } 26 someGenerics2b((n: string, x: number) => n); 27 someGenerics2b<string, number>((n: string, t: number) => n); 28 someGenerics2b<string, number>((n, t) => n.substr(t * t)); [all …]
|
D | typeArgumentInferenceConstructSignatures.js | 13 new <T>(n: string); 22 new <T, U>(n: T, m: number); 31 new <T>(n: (x: T) => void); 34 new someGenerics2a((n: string) => n); 35 new someGenerics2a<string>((n: string) => n); 36 new someGenerics2a<string>((n) => n.substr(0)); 39 new <T, U>(n: (x: T, y: U) => void); 42 new someGenerics2b((n: string, x: number) => n); 43 new someGenerics2b<string, number>((n: string, t: number) => n); 44 new someGenerics2b<string, number>((n, t) => n.substr(t * t)); [all …]
|
D | taggedTemplateStringsTypeArgumentInference.js | 3 function noParams<T>(n: T) { } 7 function noGenericParams<T>(n: TemplateStringsArray) { } 11 function someGenerics1a<T, U>(n: T, m: number) { } 14 function someGenerics1b<T, U>(n: TemplateStringsArray, m: U) { } 18 function someGenerics2a<T>(strs: TemplateStringsArray, n: (x: T) => void) { } 19 someGenerics2a `${(n: string) => n}`; 21 function someGenerics2b<T, U>(strs: TemplateStringsArray, n: (x: T, y: U) => void) { } 22 someGenerics2b `${ (n: string, x: number) => n }`; 31 function someGenerics4<T, U>(strs: TemplateStringsArray, n: T, f: (x: U) => void) { } 37 function someGenerics5<U, T>(strs: TemplateStringsArray, n: T, f: (x: U) => void) { } [all …]
|
D | expr.js | 11 var n=3; 17 n&&a; 18 n&&s; 19 n&&b; 20 n&&i; 21 n&&n; 22 n&&e; 25 s&&n; 31 a&&n; 38 i&&n; [all …]
|
/third_party/musl/libc-test/src/musl/ |
D | pleval.c | 7 static void t(const char *s, unsigned long n, unsigned long want) in t() argument 9 unsigned long got = __pleval(s, n); in t() 11 t_error("__pleval(\"%s\",%lu) failed: got %lu want %lu\n", s, n, got, want); in t() 16 unsigned long n, _w; \ 17 for (n=0; n<200; n++) { \ 19 t(#e, n, _w); \ 48 T(n % 4;); in main() 49 T(n== 1 || n == 2 ||n%9==7;); in main() 50 T((n==1)+!n+(n ==3);); in main() 51 T(n - 13 - 5 + n * 3 / 7 - 8;); in main() [all …]
|
/third_party/libunwind/libunwind/tests/ |
D | Lrs-race.c | 50 int n; in foo_0() local 52 if ((n = unw_backtrace (buf, 20)) < 3) in foo_0() 60 int n; in foo_1() local 62 if ((n = unw_backtrace (buf, 20)) < 3) in foo_1() 70 int n; in foo_2() local 72 if ((n = unw_backtrace (buf, 20)) < 3) in foo_2() 80 int n; in foo_3() local 82 if ((n = unw_backtrace (buf, 20)) < 3) in foo_3() 90 int n; in foo_4() local 92 if ((n = unw_backtrace (buf, 20)) < 3) in foo_4() [all …]
|
/third_party/curl/docs/libcurl/ |
D | mksymbolsmanpage.pl | 68 my ($n)=@_; 69 if($n =~ /^CURLOPT_/) { 70 if($n eq "CURLOPT_RTSPHEADER") { 71 $n = "CURLOPT_HTTPHEADER"; 73 elsif($n eq "CURLOPT_WRITEHEADER") { 74 $n = "CURLOPT_HEADERDATA"; 76 elsif($n eq "CURLOPT_WRITEINFO") { 80 return "$n(3)"; 83 elsif($n =~ /^CURLMOPT_/) { 84 return "$n(3)"; [all …]
|
/third_party/mesa3d/src/mesa/main/ |
D | dlist.c | 701 #define ASSIGN_DOUBLE_TO_NODES(n, idx, value) \ argument 705 n[idx].ui = tmp.uint32[0]; \ 706 n[idx+1].ui = tmp.uint32[1]; \ 709 #define ASSIGN_UINT64_TO_NODES(n, idx, value) \ argument 713 n[idx].ui = tmp.uint32[0]; \ 714 n[idx+1].ui = tmp.uint32[1]; \ 717 #define ASSIGN_INT64_TO_NODES(n, idx, value) \ argument 721 n[idx].i = tmp.int32[0]; \ 722 n[idx+1].i = tmp.int32[1]; \ 811 Node *n = get_list_head(ctx, dlist); in is_bitmap_list() local [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | window_func.h | 64 int n; in generate_window_func() local 68 for (n = 0; n < N; n++) in generate_window_func() 69 lut[n] = 1.; in generate_window_func() 73 for (n = 0; n < N; n++) in generate_window_func() 74 lut[n] = 1.-fabs((n-(N-1)/2.)/((N-1)/2.)); in generate_window_func() 78 for (n = 0; n < N; n++) in generate_window_func() 79 lut[n] = .5*(1-cos(2*M_PI*n/(N-1))); in generate_window_func() 83 for (n = 0; n < N; n++) in generate_window_func() 84 lut[n] = .54-.46*cos(2*M_PI*n/(N-1)); in generate_window_func() 88 for (n = 0; n < N; n++) in generate_window_func() [all …]
|
/third_party/alsa-utils/alsaconf/po/ |
D | ru.po | 9 "Project-Id-Version: alsa-utils 1.0.9rc4a\n" 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2005-12-02 12:37+0100\n" 12 "PO-Revision-Date: 2005-12-02 12:39+0100\n" 13 "Last-Translator: <dushistov@mail.ru>\n" 14 "Language-Team: Russian <ru@li.org>\n" 15 "MIME-Version: 1.0\n" 16 "Content-Type: text/plain; charset=UTF-8\n" 17 "Content-Transfer-Encoding: 8bit\n" 18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" [all …]
|
D | ja.po | 8 "Project-Id-Version: alsaconf\n" 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2005-12-02 12:37+0100\n" 11 "PO-Revision-Date: 2005-12-02 12:39+0100\n" 12 "Last-Translator: Takashi Iwai <tiwai@suse.de>\n" 13 "Language-Team: Japanese <LL@li.org>\n" 14 "MIME-Version: 1.0\n" 15 "Content-Type: text/plain; charset=UTF-8\n" 16 "Content-Transfer-Encoding: 8bit\n" 28 "usage: alsaconf [options]\n" [all …]
|
/third_party/decimal.js/test/modules/ |
D | isFiniteEtc.js | 18 var n = new Decimal(1); 20 t(n.isFinite()); 21 t(!n.isNaN()); 22 t(!n.isNegative()); 23 t(!n.isZero()); 24 t(n.isInteger()); 25 t(n.equals(n)); 26 t(n.equals(1)); 27 t(n.equals('1.0')); 28 t(n.equals('1.00')); [all …]
|
/third_party/node/deps/npm/node_modules/glob/dist/commonjs/ |
D | glob.js.map | 1 …n FSOption,\n Path,\n PathScurry,\n PathScurryDarwin,\n PathScurryPosix,\n PathScurryWin32,\…
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | Hani_Latn.txt | 14 藏 } \u0020? 文 →zàng;# 藏 is zàng (not cáng) if followed by 文 wén: 藏文 language Zàngwén = Tibetan 16 沈 } \u0020? 阳 →shěn;# 沈 is shěn (not chén) if followed by 阳 yáng: 沈阳 city Shěnyáng 26 [㛺㞄㫨㸩䀂䅖䢿侒媕安峖庵桉氨痷盦盫腤菴萻葊蓭誝諳谙鞌鞍韽馣鵪鶕鹌]→ān; 27 [䜙儑啽玵雸]→án; 28 [㜝㽢俺唵垵埯揞罯銨铵隌]→ǎn; 29 [㟁㱘䅁䬓䮗䯥堓婩岸按晻暗案洝犴胺荌豻貋錌闇鮟黯]→àn; 48 [䃑䈲扳搬攽斑斒班瘢癍般螌褩辬頒颁鳻]→bān; 49 [䉽䬳坂岅昄板版瓪粄舨蝂鈑钣闆阪魬]→bǎn; 50 [㚘㪵伴办半坢姅怑扮拌柈湴瓣秚絆绊辦鉡靽]→bàn; 63 [奔栟泍犇贲錛锛]→bēn; [all …]
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_dump.cpp | 32 bool dump::visit(node& n, bool enter) { in visit() argument 35 dump_flags(n); in visit() 37 switch (n.subtype) { in visit() 39 dump_op(n, "* phi"); in visit() 42 dump_op(n, "* psi"); in visit() 45 dump_op(n, "* copy"); in visit() 56 bool dump::visit(container_node& n, bool enter) { in visit() argument 58 if (!n.empty()) { in visit() 60 dump_flags(n); in visit() 62 if (!n.dst.empty()) { in visit() [all …]
|
/third_party/icu/icu4c/source/data/translit/ |
D | Hani_Latn.txt | 14 藏 } \u0020? 文 →zàng;# 藏 is zàng (not cáng) if followed by 文 wén: 藏文 language Zàngwén = Tibetan 16 沈 } \u0020? 阳 →shěn;# 沈 is shěn (not chén) if followed by 阳 yáng: 沈阳 city Shěnyáng 19 长 } \u0020? 春 →cháng;# 长 is cháng (not zhǎng) if followed by 春 shā: 长春 city chángchūn 20 六 } \u0020? 安 →lù;# 六 is lù (not liù) if followed by 安 ān: 六安 city lùān 25 浚 } \u0020? 县 →xùn;# 浚 is xùn (not jùn) if followed by 县 xiàn: 浚县 city xùnxiàn 28 莘 } \u0020? 庄 →xīn;# 莘 is xīn (not shēn) if followed by 庄 zhuāng: 莘庄 city xīnzhuāng 29 单 } \u0020? 县 →shàn;# 单 is shàn (not dān) if followed by 县 xiàn: 单县 city shànxiàn 30 厦 } \u0020? 门 →xià;# 厦 is xià (not shà) if followed by 门 mén: 厦门 city xiàmén 31 济 } \u0020? 南 →jǐ;# 济 is jǐ (not jì) if followed by 南 nán: 济南 city jǐnán 40 [㛺㞄㫨㸩䀂䅖䢿侒媕安峖庵桉氨痷盦盫腤菴萻葊蓭誝諳谙鞌鞍韽馣鵪鶕鹌]→ān; [all …]
|
/third_party/node/deps/openssl/openssl/crypto/modes/ |
D | cfb128.c | 30 unsigned int n; in CRYPTO_cfb128_encrypt() local 38 n = *num; in CRYPTO_cfb128_encrypt() 44 while (n && len) { in CRYPTO_cfb128_encrypt() 45 *(out++) = ivec[n] ^= *(in++); in CRYPTO_cfb128_encrypt() 47 n = (n + 1) % 16; in CRYPTO_cfb128_encrypt() 56 for (; n < 16; n += sizeof(size_t)) { in CRYPTO_cfb128_encrypt() 57 *(size_t_aX *)(out + n) = in CRYPTO_cfb128_encrypt() 58 *(size_t_aX *)(ivec + n) in CRYPTO_cfb128_encrypt() 59 ^= *(size_t_aX *)(in + n); in CRYPTO_cfb128_encrypt() 64 n = 0; in CRYPTO_cfb128_encrypt() [all …]
|
/third_party/openssl/crypto/modes/ |
D | cfb128.c | 30 unsigned int n; in CRYPTO_cfb128_encrypt() local 38 n = *num; in CRYPTO_cfb128_encrypt() 44 while (n && len) { in CRYPTO_cfb128_encrypt() 45 *(out++) = ivec[n] ^= *(in++); in CRYPTO_cfb128_encrypt() 47 n = (n + 1) % 16; in CRYPTO_cfb128_encrypt() 56 for (; n < 16; n += sizeof(size_t)) { in CRYPTO_cfb128_encrypt() 57 *(size_t_aX *)(out + n) = in CRYPTO_cfb128_encrypt() 58 *(size_t_aX *)(ivec + n) in CRYPTO_cfb128_encrypt() 59 ^= *(size_t_aX *)(in + n); in CRYPTO_cfb128_encrypt() 64 n = 0; in CRYPTO_cfb128_encrypt() [all …]
|