Home
last modified time | relevance | path

Searched refs:voidfn (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/clang/test/SemaCXX/
Dattr-noreturn.cpp225 typedef void voidfn(); typedef
226 voidfn baz;
229 template<typename> voidfn wibble;
/external/clang/test/SemaCXX/
Dattr-noreturn.cpp225 typedef void voidfn(); typedef
226 voidfn baz;
229 template<typename> voidfn wibble;
/external/bc/src/
Dbc_parse.c488 if (p->func->voidfn) inst = BC_INST_RET_VOID; in bc_parse_return()
510 else if (BC_ERR(p->func->voidfn)) in bc_parse_return()
564 BcInst inst = (p->func->voidfn ? BC_INST_RET_VOID : BC_INST_RET0); in bc_parse_endBody()
777 bool comma = false, voidfn; in bc_parse_func() local
786 voidfn = (!BC_IS_POSIX && p->l.t == BC_LEX_NAME && in bc_parse_func()
791 voidfn = (voidfn && p->l.t == BC_LEX_NAME); in bc_parse_func()
793 if (voidfn) { in bc_parse_func()
811 p->func->voidfn = voidfn; in bc_parse_func()
Dlang.c110 f->voidfn = false; in bc_func_init()
135 f->voidfn = false; in bc_func_reset()
/external/bc/include/
Dlang.h241 bool voidfn; member
/external/toybox/toys/pending/
Dbc.c272 int voidfn; member
2365 f->voidfn = 0; in bc_func_init()
2376 f->voidfn = 0; in bc_func_reset()
3502 if (p->func->voidfn) inst = BC_INST_RET_VOID; in bc_parse_return()
3525 else if (p->func->voidfn) in bc_parse_return()
3577 BcInst inst = (p->func->voidfn ? BC_INST_RET_VOID : BC_INST_RET0); in bc_parse_endBody()
3814 int comma = 0, voidfn; in bc_parse_func() local
3824 voidfn = (!FLAG(s) && !FLAG(w) && p->l.t == BC_LEX_NAME && in bc_parse_func()
3830 voidfn = (voidfn && p->l.t == BC_LEX_NAME); in bc_parse_func()
3832 if (voidfn) { in bc_parse_func()
[all …]