Home
last modified time | relevance | path

Searched refs:function (Results 1 – 25 of 9887) sorted by relevance

12345678910>>...396

/third_party/python/Doc/data/
Dstable_abi.dat2 function,PyAIter_Check,3.10,
3 function,PyArg_Parse,3.2,
4 function,PyArg_ParseTuple,3.2,
5 function,PyArg_ParseTupleAndKeywords,3.2,
6 function,PyArg_UnpackTuple,3.2,
7 function,PyArg_VaParse,3.2,
8 function,PyArg_VaParseTupleAndKeywords,3.2,
9 function,PyArg_ValidateKeywordArguments,3.2,
11 function,PyBool_FromLong,3.2,
14 function,PyByteArray_AsString,3.2,
[all …]
/third_party/python/Misc/
Dstable_abi.txt52 function PyType_FromSpec
294 function PyArg_Parse
296 function PyArg_ParseTuple
298 function PyArg_ParseTupleAndKeywords
300 function PyArg_UnpackTuple
302 function PyArg_VaParse
304 function PyArg_VaParseTupleAndKeywords
306 function PyArg_ValidateKeywordArguments
310 function PyBool_FromLong
316 function PyByteArray_AsString
[all …]
/third_party/libabigail/tests/data/test-diff-pkg/
Dspice-server-0.12.4-19.el7.x86_64-0.12.8-1.el7.x86_64-report-3.txt7 1 Removed function:
9 …[D] 'function int spice_server_migrate_client_state(SpiceServer*)' {spice_server_migrate_client…
13 [A] 'function void spice_replay_free(SpiceReplay*)' {spice_replay_free@@SPICE_SERVER_0.12.6}
14 …[A] 'function void spice_replay_free_cmd(SpiceReplay*, QXLCommandExt*)' {spice_replay_free_cmd@…
15 …[A] 'function SpiceReplay* spice_replay_new(FILE*, int)' {spice_replay_new@@SPICE_SERVER_0.12.6}
16 …[A] 'function QXLCommandExt* spice_replay_next_cmd(SpiceReplay*, QXLWorker*)' {spice_replay_nex…
17 …[A] 'function uint32_t spice_server_get_best_playback_rate(SpicePlaybackInstance*)' {spice_serv…
18 …[A] 'function uint32_t spice_server_get_best_record_rate(SpiceRecordInstance*)' {spice_server_g…
19 …[A] 'function void spice_server_set_playback_rate(SpicePlaybackInstance*, uint32_t)' {spice_ser…
20 …[A] 'function void spice_server_set_record_rate(SpiceRecordInstance*, uint32_t)' {spice_server_…
[all …]
/third_party/typescript/tests/baselines/reference/
DtargetTypeCalls.types2 var fra1: (v:any)=>string = function() { return function (v:string) {return v;}; }() // should work
5 >function() { return function (v:string) {return v;}; }() : (v: string) => string
6 >function() { return function (v:string) {return v;}; } : () => (v: string) => string
7 >function (v:string) {return v;} : (v: string) => string
11 var fra2: (v:any)=>number = function() { return function () { return 0; } }() // should work
14 >function() { return function () { return 0; } }() : () => number
15 >function() { return function () { return 0; } } : () => () => number
16 >function () { return 0; } : () => number
19 var fra3: (v:any)=>string = function() { return function() { return function(v) {return v;};}(); }(…
22 >function() { return function() { return function(v) {return v;};}(); }() : (v: any) => any
[all …]
DvoidFunctionAssignmentCompat.types2 var fa = function(): any { return 3; }
4 >function(): any { return 3; } : () => any
7 fa = function() { } // should not work
8 >fa = function() { } : () => void
10 >function() { } : () => void
12 var fv = function(): void {}
14 >function(): void {} : () => void
16 fv = function() { return 0; } // should work
17 >fv = function() { return 0; } : () => number
19 >function() { return 0; } : () => number
[all …]
DtypeGuardOfFormTypeOfFunction.types2 function f1(x: any) {
6 if (typeof x === "function") {
7 >typeof x === "function" : boolean
8 …eof x : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
10 >"function" : "function"
17 function f2(x: unknown) {
21 if (typeof x === "function") {
22 >typeof x === "function" : boolean
23 …eof x : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
25 >"function" : "function"
[all …]
Dtypes.asyncGenerators.es2018.2.types2 async function * inferReturnType1() {
9 async function * inferReturnType2() {
17 async function * inferReturnType3() {
30 const assignability1: () => AsyncIterableIterator<number> = async function * () {
32 >async function * () { yield "a";} : () => AsyncGenerator<string, void, undefined>
39 const assignability2: () => AsyncIterableIterator<number> = async function * () {
41 >async function * () { yield* ["a", "b"];} : () => AsyncGenerator<string, void, undefined>
50 const assignability3: () => AsyncIterableIterator<number> = async function * () {
52 >async function * () { yield* (async function * () { yield "a"; })();} : () => AsyncGenerator<st…
54 yield* (async function * () { yield "a"; })();
[all …]
DcapturedLetConstInLoop1_ES6.types7 (function() { return x});
8 >(function() { return x}) : () => string
9 >function() { return x} : () => string
22 (function() { return x});
23 >(function() { return x}) : () => any
24 >function() { return x} : () => any
42 (function() { return x});
43 >(function() { return x}) : () => number
44 >function() { return x} : () => number
61 (function() { return x});
[all …]
Dparser.asyncGenerators.functionExpressions.es2018.types2 const f1 = async function * f() {
4 >async function * f() {} : () => AsyncGenerator<never, void, unknown>
9 const f2 = async function * await() {
11 >async function * await() {} : () => AsyncGenerator<never, void, unknown>
16 const f3 = async function * yield() {
18 >async function * yield() {} : () => AsyncGenerator<never, void, unknown>
23 const f4 = async function * (await) {
25 >async function * (await) {} : (await: any) => AsyncGenerator<never, void, unknown>
30 const f5 = async function * (yield) {
32 >async function * (yield) {} : (yield: any) => AsyncGenerator<never, void, unknown>
[all …]
DfunctionOverloadErrors.errors.txt1 …rs.ts(2,14): error TS2371: A parameter initializer is only allowed in a function or constructor im…
11 ….ts(116,19): error TS2371: A parameter initializer is only allowed in a function or constructor im…
16 function fn1(x = 3);
18 !!! error TS2371: A parameter initializer is only allowed in a function or constructor implementati…
19 function fn1() { }
21 //Multiple function overload signatures that are identical
22 function fn2a();
23 function fn2a();
24 function fn2a() {
27 function fn2b(n: number[]);
[all …]
Dtypes.asyncGenerators.es2018.1.types2 async function * inferReturnType1() {
5 async function * inferReturnType2() {
11 async function * inferReturnType3() {
18 async function * inferReturnType4() {
29 async function * inferReturnType5() {
44 async function * inferReturnType6() {
53 async function * inferReturnType7() {
65 async function * inferReturnType8() {
68 yield* (async function * () { yield 1; })();
69 >yield* (async function * () { yield 1; })() : void
[all …]
DinvalidNewTarget.es6.errors.txt1 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
2 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
3 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
4 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
5 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
6 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
7 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
8 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
9 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
10 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
[all …]
DinvalidNewTarget.es5.errors.txt1 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
2 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
3 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
4 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
5 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
6 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
7 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
8 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
9 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
10 … Meta-property 'new.target' is only allowed in the body of a function declaration, function expres…
[all …]
DjsFunctionWithPrototypeNoErrorTruncationNoCrash.types2 function Color(obj) {
15function () {return this;}, lighten: function (ratio) {return this;}, darken: function (ratio) {re…
19function () {return this;}, lighten: function (ratio) {return this;}, darken: function (ratio) {re…
21 negate: function () {return this;},
23 >function () {return this;} : () => this
26 lighten: function (ratio) {return this;},
28 >function (ratio) {return this;} : (ratio: any) => this
32 darken: function (ratio) {return this;},
34 >function (ratio) {return this;} : (ratio: any) => this
38 saturate: function (ratio) {return this;},
[all …]
DcapturedLetConstInLoop5_ES6.errors.txt6 declare function use(a: any);
9 function foo0(x) {
12 (function() { return x + v });
22 function foo00(x) {
25 (function() { return x + v });
35 function foo1(x) {
38 (function() { return x + v });
48 function foo2(x) {
52 (function() { return x + v });
62 function foo3(x) {
[all …]
DcapturedLetConstInLoop5.errors.txt6 declare function use(a: any);
9 function foo0(x) {
12 (function() { return x + v });
22 function foo00(x) {
25 (function() { return x + v });
35 function foo1(x) {
38 (function() { return x + v });
48 function foo2(x) {
52 (function() { return x + v });
62 function foo3(x) {
[all …]
DobjectTypesIdentityWithStringIndexers2.types63 function foo1(x: A);
67 function foo1(x: A); // error
71 function foo1(x: any) { }
75 function foo1b(x: B);
79 function foo1b(x: B); // error
83 function foo1b(x: any) { }
87 function foo1c(x: C<string>);
91 function foo1c(x: C<string>); // error
95 function foo1c(x: any) { }
99 function foo2(x: I);
[all …]
DobjectTypesIdentityWithStringIndexers.types53 function foo1(x: A);
57 function foo1(x: A); // error
61 function foo1(x: any) { }
65 function foo1b(x: B);
69 function foo1b(x: B); // error
73 function foo1b(x: any) { }
77 function foo1c(x: C<string>);
81 function foo1c(x: C<string>); // error
85 function foo1c(x: any) { }
89 function foo2(x: I);
[all …]
DobjectTypesIdentityWithNumericIndexers2.types63 function foo1(x: A);
67 function foo1(x: A); // error
71 function foo1(x: any) { }
75 function foo1b(x: B);
79 function foo1b(x: B); // error
83 function foo1b(x: any) { }
87 function foo1c(x: C<string>);
91 function foo1c(x: C<string>); // error
95 function foo1c(x: any) { }
99 function foo2(x: I);
[all …]
/third_party/libabigail/tests/data/test-diff-pkg-ctf/
Dgmp-6.x.x86_64-report-0.txt4 …Function symbols changes summary: 3 Removed, 21 Added function symbols not referenced by debug info
9 …[D] 'function mp_limb_t __gmpn_add_n_bobcat(mp_ptr, mp_srcptr, mp_srcptr, mp_size_t)' {__gmpn_a…
10 …[D] 'function mp_limb_t __gmpn_addmul_1_bobcat(mp_ptr, mp_srcptr, mp_size_t, mp_limb_t)' {__gmp…
11 …[D] 'function mp_limb_t __gmpn_addmul_2_x86_64(mp_ptr, mp_srcptr, mp_size_t, mp_srcptr)' {__gmp…
12 [D] 'function void __gmpn_copyd_bobcat(mp_ptr, mp_srcptr, mp_size_t)' {__gmpn_copyd_bobcat}
13 [D] 'function void __gmpn_copyi_bobcat(mp_ptr, mp_srcptr, mp_size_t)' {__gmpn_copyi_bobcat}
14 …[D] 'function void __gmpn_dcpi1_bdiv_q_n(mp_ptr, mp_ptr, mp_srcptr, mp_size_t, mp_limb_t, mp_ptr)'…
15 [D] 'function mp_size_t __gmpn_dcpi1_bdiv_q_n_itch(mp_size_t)' {__gmpn_dcpi1_bdiv_q_n_itch}
16 …[D] 'function mp_limb_t __gmpn_dcpi1_divappr_q_n(mp_ptr, mp_ptr, mp_srcptr, mp_size_t, gmp_pi1_t*,…
17 [D] 'function mp_limb_t __gmpn_gcd_1_bd1(mp_srcptr, mp_size_t, mp_limb_t)' {__gmpn_gcd_1_bd1}
[all …]
/third_party/libabigail/tests/data/test-read-dwarf/
DPR22122-libftdc.so.abi63 <elf-function-symbols>
213 </elf-function-symbols>
379 <member-function access='public'>
380 …<function-decl name='rdstate' mangled-name='_ZNKSt9basic_iosIcSt11char_traitsIcEE7rdstateEv' filep…
383 </function-decl>
384 </member-function>
385 <member-function access='public'>
386 …<function-decl name='setstate' mangled-name='_ZNSt9basic_iosIcSt11char_traitsIcEE8setstateESt12_Io…
390 </function-decl>
391 </member-function>
[all …]
Dtest14-pr18893.so.abi9 <elf-function-symbols>
69 </elf-function-symbols>
154 <member-function access='private' constructor='yes'>
155 …<function-decl name='OpenGLCurveEvaluator' filepath='libnurbs/interface/glcurveval.cc' line='48' c…
158 </function-decl>
159 </member-function>
160 <member-function access='private'>
161 …<function-decl name='addMap' mangled-name='_ZN20OpenGLCurveEvaluator6addMapEP8CurveMap' filepath='…
165 </function-decl>
166 </member-function>
[all …]
/third_party/libabigail/tests/data/test-abidiff/
Dtest-PR18791-v1.so.abi7 <elf-function-symbols>
91 </elf-function-symbols>
158 <member-function access='protected'>
159 …<function-decl name='_M_create_node' mangled-name='_ZNSt7__cxx114listIN4sigc8internal18trackable_c…
163 </function-decl>
164 </member-function>
165 <member-function access='public'>
166 …<function-decl name='list' mangled-name='_ZNSt7__cxx114listIN4sigc8internal18trackable_callbackESa…
169 </function-decl>
170 </member-function>
[all …]
Dtest-PR18791-v0.so.abi7 <elf-function-symbols>
91 </elf-function-symbols>
131 <member-function access='public' static='yes'>
132 …<function-decl name='swap' mangled-name='_ZNSt8__detail15_List_node_base4swapERS0_S1_' filepath='/…
136 </function-decl>
137 </member-function>
138 <member-function access='public'>
139 …<function-decl name='_M_transfer' mangled-name='_ZNSt8__detail15_List_node_base11_M_transferEPS0_S…
144 </function-decl>
145 </member-function>
[all …]
/third_party/libabigail/tests/data/test-diff-dwarf-abixml/
Dtest0-pr19026-libvtkIOSQL-6.1.so.1.abi20 <elf-function-symbols>
284 </elf-function-symbols>
652 <member-function access='private' constructor='yes'>
653 …<function-decl name='vtkIndent' filepath='/var/tmp/gamblin2/spack-stage/spack-stage-hrtRhh/VTK-6.1…
657 </function-decl>
658 </member-function>
659 <member-function access='private' constructor='yes'>
660 …<function-decl name='vtkIndent' filepath='/var/tmp/gamblin2/spack-stage/spack-stage-hrtRhh/VTK-6.1…
664 </function-decl>
665 </member-function>
[all …]

12345678910>>...396