Home
last modified time | relevance | path

Searched defs:fun (Results 1 – 25 of 183) sorted by relevance

12345678

/third_party/musl/libc-test/src/functionalext/common/
Dfunctionalext.h31 #define EXPECT_TRUE(fun, c) \ argument
37 #define EXPECT_FALSE(fun, c) \ argument
43 #define EXPECT_EQ(fun, a, b) \ argument
49 #define EXPECT_LT(fun, a, b) \ argument
55 #define EXPECT_MT(fun, a, b) \ argument
61 #define EXPECT_NE(fun, a, b) \ argument
68 #define EXPECT_STREQ(fun, a, b) \ argument
74 #define EXPECT_STRLT(fun, a, b) \ argument
80 #define EXPECT_STRMT(fun, a, b) \ argument
87 #define FLOAT_EQUAL(fun, a, b) \ argument
[all …]
/third_party/typescript/tests/cases/compiler/
DdefaultArgsInOverloads.ts1 function fun(a: string); function
6 fun(a: string); method in C
9 static fun(a: string); method in C
15 fun(a: string); method
16 fun(a = 3); method
/third_party/typescript/tests/baselines/reference/
DdefaultArgsInOverloads.js4 function fun(a = null) { } function
9 fun(a = null) { } method in C
12 static fun(a = null) { } method in C
29 C.prototype.fun = function (a) { method in C
32 C.fun = function (a) { function in C
DtypeofSimple.js12 var fun: () => I<number>; variable
21 var fun; variable
/third_party/optimized-routines/string/test/
Dmemset.c18 static const struct fun struct
21 void *(*fun) (void *s, int c, size_t n); argument
23 } funtab[] = { argument
47 test (const struct fun *fun, int salign, int c, int len) in test()
Dstrlen.c20 static const struct fun struct
23 size_t (*fun) (const char *s); member
25 } funtab[] = { argument
55 test (const struct fun *fun, int align, int len) in test()
Dstrchr.c19 static const struct fun struct
22 char *(*fun) (const char *s, int c); argument
24 } funtab[] = { argument
50 test (const struct fun *fun, int align, int seekpos, int len) in test()
Dstrrchr.c19 static const struct fun struct
22 char *(*fun) (const char *s, int c); member
24 } funtab[] = { argument
50 test (const struct fun *fun, int align, int seekpos, int len) in test()
Dstrnlen.c23 static const struct fun struct
26 size_t (*fun) (const char *s, size_t m); member
28 } funtab[] = { argument
53 test (const struct fun *fun, int align, size_t maxlen, size_t len) in test()
Dstrcmp.c18 static const struct fun struct
21 int (*fun) (const char *s1, const char *s2); argument
23 } funtab[] = { argument
56 test (const struct fun *fun, int s1align, int s2align, int len, int diffpos, in test()
Dmemcpy.c18 static const struct fun struct
21 void *(*fun) (void *, const void *, size_t); argument
23 } funtab[] = { argument
52 test (const struct fun *fun, int dalign, int salign, int len) in test()
Dmemcmp.c18 static const struct fun struct
21 int (*fun) (const void *s1, const void *s2, size_t n); member
23 } funtab[] = { argument
49 test (const struct fun *fun, int s1align, int s2align, int len, int diffpos, in test()
Dstrchrnul.c23 static const struct fun struct
26 char *(*fun) (const char *s, int c); argument
28 } funtab[] = { argument
54 test (const struct fun *fun, int align, int seekpos, int len) in test()
Dmemrchr.c23 static const struct fun struct
26 void *(*fun) (const void *s, int c, size_t n); argument
50 test (const struct fun *fun, int align, size_t seekpos, size_t len, in test()
Dmemchr.c19 static const struct fun struct
22 void *(*fun) (const void *s, int c, size_t n); argument
24 } funtab[] = { argument
52 test (const struct fun *fun, int align, size_t seekpos, size_t len, in test()
Dstrcpy.c18 static const struct fun struct
21 char *(*fun) (char *dest, const char *src); argument
23 } funtab[] = { argument
53 test (const struct fun *fun, int dalign, int salign, int len) in test()
Dstrncmp.c18 static const struct fun struct
21 int (*fun) (const char *, const char *, size_t); member
23 } funtab[] = { argument
50 test (const struct fun *fun, int s1align, int s2align, int maxlen, int diffpos, in test()
Dmemmove.c18 static const struct fun struct
21 void *(*fun) (void *, const void *, size_t); argument
23 } funtab[] = { argument
50 test (const struct fun *fun, int dalign, int salign, int len) in test()
90 test_overlap (const struct fun *fun, int dalign, int salign, int len) in test_overlap()
Dstpcpy.c22 static const struct fun struct
25 char *(*fun) (char *dest, const char *src); member
27 } funtab[] = { argument
55 test (const struct fun *fun, int dalign, int salign, int len) in test()
D__mtag_tag_region.c29 static const struct fun struct
32 void *(*fun) (void *s, size_t n); argument
54 test (const struct fun *fun, int salign, int len) in test()
D__mtag_tag_zero_region.c29 static const struct fun struct
32 void *(*fun) (void *s, size_t n); argument
54 test (const struct fun *fun, int salign, int len) in test()
/third_party/python/Lib/test/
Dtest_sched.py45 fun = lambda x: l.append(x) function
54 fun = lambda x: l.append(x) function
92 fun = lambda x: l.append(x) function
101 fun = lambda x: l.append(x) function
158 fun = lambda x: l.append(x) function
169 fun = lambda x: l.append(x) function
183 def fun(*a, **b): function
202 fun = lambda x: l.append(x) function
/third_party/ltp/tools/sparse/sparse-src/validation/linear/
Dcall-casted-pointer.c3 int foo(void *a, void *fun) in foo()
8 int bar(void *a, void *fun) in bar()
13 int qux(void *a, void *fun) in qux()
18 int quz(void *a, void *fun) in quz()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/specifying_types/object_type_literals/
Dobject_type_literals.ts30 fun: Function; variable
35 fun(): number { variable
70 fun(): number { method in Myclass
/third_party/libabigail/tests/data/test-diff-dwarf/
Dtest24-added-fn-parms-v1.c4 fun() in fun() function
9 fun(__attribute__((unused))unsigned arg0, in fun() function

12345678