Home
last modified time | relevance | path

Searched refs:fncall (Results 1 – 3 of 3) sorted by relevance

/third_party/json/third_party/cpplint/
Dcpplint.py3182 fncall = line # if there's no control flow construct, look at whole line
3189 fncall = match.group(1) # look inside the parens for function calls
3207 fncall) and
3209 not Search(r' \([^)]+\)\([^)]*(\)|,$)', fncall) and
3211 not Search(r' \([^)]+\)\[[^\]]+\]', fncall)):
3212 if Search(r'\w\s*\(\s(?!\s*\\$)', fncall): # a ( used for a fn call
3215 elif Search(r'\(\s+(?!(\s*\\)|\()', fncall):
3218 if (Search(r'\w\s+\(', fncall) and
3219 not Search(r'_{0,2}asm_{0,2}\s+_{0,2}volatile_{0,2}\s+\(', fncall) and
3220 not Search(r'#\s*define|typedef|using\s+\w+\s*=', fncall) and
[all …]
/third_party/ltp/tools/sparse/sparse-src/
Dshow-parse.c748 int fncall, retval; in show_call_expression() local
778 fncall = show_expression(fn); in show_call_expression()
779 printf("\tcall\t\t*v%d\n", fncall); in show_call_expression()
Dcompile-i386.c2069 struct storage *retval, *fncall; in x86_call_expression() local
2115 fncall = x86_expression(fn); in x86_call_expression()
2116 emit_move(fncall, REG_EAX, fn->ctype, NULL); in x86_call_expression()