Home
last modified time | relevance | path

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

/external/regex-re2/util/
Dmutex.h106 #define SAFE_PTHREAD(fncall) do { if ((fncall) != 0) abort(); } while (0) argument
121 #define SAFE_PTHREAD(fncall) do { if ((fncall) != 0) abort(); } while (0) argument
/external/ceres-solver/internal/ceres/
Dmutex.h229 #define CERES_SAFE_PTHREAD(fncall) do { /* run fncall if is_safe_ is true */ \ argument
230 if (is_safe_ && fncall(&mutex_) != 0) abort(); \
251 #define CERES_SAFE_PTHREAD(fncall) do { /* run fncall if is_safe_ is true */ \ argument
252 if (is_safe_ && fncall(&mutex_) != 0) abort(); \
/external/compiler-rt/lib/sanitizer_common/scripts/
Dcpplint.py1871 fncall = line # if there's no control flow construct, look at whole line
1878 fncall = match.group(1) # look inside the parens for function calls
1895 not Search(r'\b(if|for|while|switch|return|delete)\b', fncall) and
1897 not Search(r' \([^)]+\)\([^)]*(\)|,$)', fncall) and
1899 not Search(r' \([^)]+\)\[[^\]]+\]', fncall)):
1900 if Search(r'\w\s*\(\s(?!\s*\\$)', fncall): # a ( used for a fn call
1903 elif Search(r'\(\s+(?!(\s*\\)|\()', fncall):
1906 if (Search(r'\w\s+\(', fncall) and
1907 not Search(r'#\s*define|typedef', fncall) and
1908 not Search(r'\w\s+\((\w+::)?\*\w+\)\(', fncall)):
[all …]
/external/libvpx/libvpx/tools/
Dcpplint.py2204 fncall = line # if there's no control flow construct, look at whole line
2211 fncall = match.group(1) # look inside the parens for function calls
2229 fncall) and
2231 not Search(r' \([^)]+\)\([^)]*(\)|,$)', fncall) and
2233 not Search(r' \([^)]+\)\[[^\]]+\]', fncall)):
2234 if Search(r'\w\s*\(\s(?!\s*\\$)', fncall): # a ( used for a fn call
2237 elif Search(r'\(\s+(?!(\s*\\)|\()', fncall):
2240 if (Search(r'\w\s+\(', fncall) and
2241 not Search(r'#\s*define|typedef', fncall) and
2242 not Search(r'\w\s+\((\w+::)*\*\w+\)\(', fncall)):
[all …]