Home
last modified time | relevance | path

Searched refs:f1 (Results 1 - 25 of 1055) sorted by relevance

12345678910>>...43

/third_party/typescript/tests/baselines/reference/
H A DprivacyImportParseErrors.js6 export function f1() {
16 export function f1() {
24 export function f1();
32 export function f1();
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
373 function f1() { global() function
[all...]
H A DprivacyImport.js6 export function f1() {
16 export function f1() {
24 // export function f1();
32 // export function f1();
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
373 function f1() { global() function
[all...]
H A DprivacyGloImportParseErrors.js6 export function f1() {
16 export function f1() {
24 export function f1();
32 export function f1();
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
166 function f1() { global() function
[all...]
H A DprivacyGloImport.js6 export function f1() {
16 export function f1() {
24 // export function f1();
32 // export function f1();
42 export var m1_im1_private_v3_public = m1_im1_private.f1;
43 export var m1_im1_private_v4_public = m1_im1_private.f1();
46 var m1_im1_private_v3_private = m1_im1_private.f1;
47 var m1_im1_private_v4_private = m1_im1_private.f1();
53 export var m1_im2_private_v3_public = m1_im2_private.f1;
54 export var m1_im2_private_v4_public = m1_im2_private.f1();
166 function f1() { global() function
[all...]
H A DstrictFunctionTypesErrors.js5 declare let f1: (x: Object) => Object;
10 f1 = f2; // Ok
11 f1 = f3; // Error
12 f1 = f4; // Error
14 f2 = f1; // Error
18 f3 = f1; // Ok
22 f4 = f1; // Error
142 static f1(x: Animal): Animal { throw "wat"; }
145 declare let f1: (cb: typeof Foo.f1)
[all...]
H A DgenericRestParameters3.js2 declare let f1: (x: string, ...args: [string] | [number, boolean]) => void;
12 f1("foo", "abc");
13 f1("foo", 10, true);
14 f1("foo", ...t1);
15 f1("foo", ...t2);
16 f1("foo", ...t3);
17 f1("foo", ...t4);
18 f1("foo", 10); // Error
19 f1("foo"); // Error
21 f2 = f1;
[all...]
H A DreadonlyRestParameters.js4 f1(a, b);
8 function f1(...args: readonly string[]) { function
10 f1('abc', 'def');
11 f1('abc', ...args);
12 f1(...args);
17 f1('abc', 'def');
18 f1('abc', ...args);
19 f1(...args);
43 f1(a, b);
46 function f1() {
[all...]
H A DparserAstSpans1.js14 f1(): void;
32 public f1() {
47 i1_i.f1();
56 c1_i.f1();
66 i1_i.f1();
91 /** c2 f1*/
92 public f1() {
116 /** c3 f1*/
117 public f1() {
134 c2_i.f1();
[all...]
H A DunionAndIntersectionInference2.js2 declare function f1<T>(x: T | string): T;
9 f1(a1); // string
10 f1(b1); // string[]
11 f1(c1); // string[]
12 f1(d1); // { name: string }
13 f1(e1); // number | boolean
33 f1(a1); // string
34 f1(b1); // string[]
35 f1(c1); // string[]
36 f1(d
[all...]
H A DunionTypeInference.js6 declare function f1<T>(x: T, y: string | T): T;
8 const a1 = f1(1, 2); // 1 | 2
9 const a2 = f1(1, "hello"); // 1
10 const a3 = f1(1, sn); // number
11 const a4 = f1(undefined, "abc"); // undefined
12 const a5 = f1("foo", "bar"); // "foo"
13 const a6 = f1(true, false); // boolean
14 const a7 = f1("hello", 1); // Error
82 const a1 = f1(1, 2); // 1 | 2
83 const a2 = f1(
[all...]
H A DgenericInferenceDefaultTypeParameter.js9 declare function f1<T extends keyof Type = "a">(props: Type[T]): void;
11 f1(event => { });
12 f1<"a">(event => { });
13 f1<"b">(event => { });
19 f1(function (event) { });
20 f1(function (event) { });
21 f1(function (event) { });
H A DrequiredInitializedParameter1.js2 function f1(a, b = 0, c) { } function
7 f1(0, 1, 2);
12 f1(0, 1);
17 f1(0);
23 function f1(a, b, c) {
40 f1(0, 1, 2);
44 f1(0, 1);
48 f1(0);
H A DnonNullableReduction.js7 function test<T>(f1: Transform1<T>, f2: Transform2<T>) {
8 f1?.("hello");
12 function f1<T>(x: T | (string extends T ? null | undefined : never)) {
24 function test(f1, f2) {
25 f1 === null || f1 === void 0 ? void 0 : f1("hello");
28 function f1(x) { function
H A DnonNullableReductionNonStrict.js7 function test<T>(f1: Transform1<T>, f2: Transform2<T>) {
8 f1?.("hello");
12 function f1<T>(x: T | (string extends T ? null | undefined : never)) {
23 function test(f1, f2) {
24 f1 === null || f1 === void 0 ? void 0 : f1("hello");
27 function f1(x) { function
H A DcommentsInheritance.js15 f1(): void;
34 public f1() {
68 /** c2 f1*/
69 public f1() {
92 /** c3 f1*/
93 public f1() {
126 /** i2 f1*/
127 f1(): void;
138 * i3 f1
140 f1()
[all...]
H A DprivacyInterface.js4 private f1() {
32 f1(a1: C1_public);
59 f1(a1: C1_public);
70 private f1() {
98 f1(a1: C1_public);
125 f1(a1: C1_public);
134 private f1() {
162 f1(a1: C5_public);
189 f1(a1: C5_public);
198 f1()
[all...]
H A DcomplicatedPrivacy.js6 export function f1(c1: C1) {
46 function f2(f1: C1) {
75 f1() {
86 function f1() {
98 f1(): string;
112 function f1(c1) {
114 m2.f1 = f1;
152 function f2(f1) {
179 c_pr.prototype.f1
[all...]
H A DtypeArgumentInferenceWithObjectLiteral.js26 declare function f1<T, U>(a: { w: (x: T) => U; r: () => T; }, b: T): U;
29 var v1 = f1({ w: x => x, r: () => 0 }, 0);
30 var v1 = f1({ w: x => x, r: () => 0 }, E1.X);
31 var v1 = f1({ w: x => x, r: () => E1.X }, 0);
34 var v2 = f1({ w: x => x, r: () => E1.X }, E1.X);
36 var v3 = f1({ w: x => x, r: () => E1.X }, E2.X); // Error
60 var v1 = f1({ w: function (x) { return x; }, r: function () { return 0; } }, 0);
61 var v1 = f1({ w: function (x) { return x; }, r: function () { return 0; } }, E1.X);
62 var v1 = f1({ w: function (x) { return x; }, r: function () { return E1.X; } }, 0);
64 var v2 = f1({
[all...]
H A DprivacyGloInterface.js4 private f1() {
32 f1(a1: C1_public);
59 f1(a1: C1_public);
68 private f1() {
86 f1(a1: C5_public);
92 f1(): number;
115 f1(): number;
128 C1_public.prototype.f1 = function () {
142 C5_public.prototype.f1 = function () {
H A DunionTypeCallSignatures2.js22 var f1: A | B | C; variable
23 var n1 = f1(42); // number
24 var s1 = f1("abc"); // boolean | string | number
25 var a1 = f1([true, false]); // boolean[]
40 var f1; variable
41 var n1 = f1(42); // number
42 var s1 = f1("abc"); // boolean | string | number
43 var a1 = f1([true, false]); // boolean[]
H A DtargetTypeVoidFunc.js2 function f1(): { new (): number; } {
6 var x = f1();
8 var z = new (f1())();
11 function f1() { function
15 var x = f1();
17 var z = new (f1())();
H A DconstEnum3.js5 function f1(f: TestType) { } function
8 f1(TestType.foo)
9 f1(TestType.bar)
15 function f1(f) { }
17 f1(0 /* TestType.foo */);
18 f1(1 /* TestType.bar */);
/third_party/pulseaudio/src/tests/
H A Dformat-test.c36 pa_format_info *f1 = NULL, *f2 = NULL; in START_TEST() local
42 INIT(f1); INIT(f2); in START_TEST()
43 f1->encoding = PA_ENCODING_AC3_IEC61937; in START_TEST()
44 pa_format_info_set_prop_int(f1, PA_PROP_FORMAT_RATE, 32000); in START_TEST()
47 fail_unless(!pa_format_info_is_compatible(f1, f2)); in START_TEST()
50 REINIT(f1); REINIT(f2); in START_TEST()
51 f1->encoding = PA_ENCODING_AC3_IEC61937; in START_TEST()
52 pa_format_info_set_prop_int_array(f1, PA_PROP_FORMAT_RATE, rates1, PA_ELEMENTSOF(rates1)); in START_TEST()
55 fail_unless(pa_format_info_is_compatible(f1, f2)); in START_TEST()
56 fail_unless(pa_format_info_is_compatible(f2, f1)); in START_TEST()
[all...]
/third_party/ffmpeg/libavcodec/mips/
H A Dmpegaudiodsp_mips_float.c292 float f1, f2, f3, f4, f5, f6, f7; in ff_dct32_mips_float() local
294 f1 = 0.50241928618815570551; in ff_dct32_mips_float()
320 "mul.s %[val15], %[val15], %[f1] \n\t" in ff_dct32_mips_float()
324 "mul.s %[val31], %[val31], %[f1] \n\t" in ff_dct32_mips_float()
355 : [tab] "r" (tab), [f1]"f"(f1), [f2]"f"(f2), [f3]"f"(f3), in ff_dct32_mips_float()
360 f1 = 0.64682178335999012954; in ff_dct32_mips_float()
383 "mul.s %[val12], %[val12], %[f1] \n\t" in ff_dct32_mips_float()
387 "mul.s %[val28], %[val28], %[f1] \n\t" in ff_dct32_mips_float()
418 : [tab] "r" (tab), [f1]" in ff_dct32_mips_float()
801 float f1, f2, f3, f4, f5, f6, f7, f8, f9; imdct36_mips_float() local
[all...]
/third_party/lame/libmp3lame/
H A Dfft.c84 FLOAT f0, f1, f2, f3; in fht() local
85 f1 = fi[0] - fi[k1]; in fht()
91 fi[k3] = f1 - f3; in fht()
92 fi[k1] = f1 + f3; in fht()
93 f1 = gi[0] - gi[k1]; in fht()
99 gi[k3] = f1 - f3; in fht()
100 gi[k1] = f1 + f3; in fht()
113 FLOAT a, b, g0, f0, f1, g1, f2, g2, f3, g3; in fht() local
116 f1 = fi[0] - a; in fht()
136 fi[k3] = f1 in fht()
207 FLOAT f0, f1, f2, f3, w; fft_short() local
261 FLOAT f0, f1, f2, f3, w; fft_long() local
[all...]

Completed in 8 milliseconds

12345678910>>...43