Home
last modified time | relevance | path

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

1234567

/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/boost/boost/range/detail/
Dempty.hpp31 static bool fun( C& c ) in fun() function
45 static bool fun( const P& p ) in fun() function
59 static bool fun( T BOOST_ARRAY_REF[sz] ) in fun() function
74 static bool fun( const char* s ) in fun() function
83 static bool fun( const char* s ) in fun() function
92 static bool fun( const wchar_t* s ) in fun() function
101 static bool fun( const wchar_t* s ) in fun() function
/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
/third_party/optimized-routines/string/test/
Dmemset.c18 static const struct fun struct
21 void *(*fun) (void *s, int c, size_t n); member
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); argument
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); argument
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); argument
28 } funtab[] = { argument
53 test (const struct fun *fun, int align, size_t maxlen, size_t len) in test()
Dmemcpy.c18 static const struct fun struct
21 void *(*fun) (void *, const void *, size_t); member
23 } funtab[] = { argument
52 test (const struct fun *fun, int dalign, int salign, int 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()
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()
Dmemchr.c19 static const struct fun struct
22 void *(*fun) (const void *s, int c, size_t n); member
24 } funtab[] = { argument
52 test (const struct fun *fun, int align, size_t seekpos, size_t len, 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); member
50 test (const struct fun *fun, int align, size_t seekpos, size_t len, in test()
Dstrncmp.c18 static const struct fun struct
21 int (*fun) (const char *, const char *, size_t); argument
23 } funtab[] = { argument
50 test (const struct fun *fun, int s1align, int s2align, int maxlen, int diffpos, in test()
Dstrcpy.c18 static const struct fun struct
21 char *(*fun) (char *dest, const char *src); member
23 } funtab[] = { argument
53 test (const struct fun *fun, int dalign, int salign, int len) in test()
Dstpcpy.c22 static const struct fun struct
25 char *(*fun) (char *dest, const char *src); argument
27 } funtab[] = { argument
55 test (const struct fun *fun, int dalign, int salign, int len) 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()
D__mtag_tag_region.c29 static const struct fun struct
32 void *(*fun) (void *s, size_t n); member
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); member
54 test (const struct fun *fun, int salign, int len) in test()
/third_party/python/Lib/test/
Dtest_sched.py44 fun = lambda x: l.append(x) function
53 fun = lambda x: l.append(x) function
91 fun = lambda x: l.append(x) function
100 fun = lambda x: l.append(x) function
146 fun = lambda x: l.append(x) function
157 fun = lambda x: l.append(x) function
171 def fun(*a, **b): function
190 fun = lambda x: l.append(x) function
/third_party/boost/boost/log/expressions/
Dfilter.hpp89 filter(FunT&& fun) : m_Filter(boost::forward< FunT >(fun)) in filter()
94 …filter(FunT const& fun, typename boost::disable_if_c< move_detail::is_rv< FunT >::value, boost::lo… in filter()
100 filter(FunT const& fun) : m_Filter(fun) in filter()
104 filter(rv< FunT >& fun) : m_Filter(fun) in filter()
108 filter(rv< FunT > const& fun) : m_Filter(static_cast< FunT const& >(fun)) in filter()
137 filter& operator= (FunT const& fun) in operator =()
/third_party/boost/boost/log/attributes/
Dfunction.hpp82 explicit impl_template(T const& fun) : m_Functor(fun) {} in impl_template()
95 explicit function(T const& fun) : attribute(new impl_template< T >(fun)) in function()
122 > make_function(T const& fun) in make_function()
150 > make_function(T const& fun) in make_function()
/third_party/uboot/u-boot-2020.01/drivers/mtd/nand/raw/
Dfsl_upm.c49 static void fun_wait(struct fsl_upm_nand *fun) in fun_wait()
67 struct fsl_upm_nand *fun = nand_get_controller_data(chip); in fun_select_chip() local
82 struct fsl_upm_nand *fun = nand_get_controller_data(chip); in fun_cmd_ctrl() local
134 struct fsl_upm_nand *fun = nand_get_controller_data(chip); in upm_nand_write_buf() local
158 struct fsl_upm_nand *fun = nand_get_controller_data(chip); in nand_dev_ready() local
163 int fsl_upm_nand_init(struct nand_chip *chip, struct fsl_upm_nand *fun) in fsl_upm_nand_init()
/third_party/boost/boost/log/detail/
Dlight_function_pp.hpp56 explicit impl(FunT const& fun) : in impl()
63 explicit impl(FunT&& fun) : in impl()
116 light_function(FunT&& fun) : in light_function()
122 …light_function(FunT const& fun, typename boost::disable_if_c< is_rv_or_same< FunT, this_type >::va… in light_function() argument
127 …unT, this_type >::value, boost::log::aux::sfinae_dummy >::type = boost::log::aux::sfinae_dummy()) : in light_function()
176 light_function& operator= (FunT&& fun) in operator =()
185 operator= (FunT const& fun) in operator =()
265 explicit impl(FunT const& fun) : in impl()
272 explicit impl(FunT&& fun) : in impl()
324 light_function(FunT&& fun) : in light_function()
[all …]

1234567