Home | History | Annotate | Download | only in tools

Lines Matching refs:static

1764   - put storage class first (e.g. "static const" instead of "const static").
1810 r'\s+(register|static|extern|typedef)\b',
1813 'Storage class (static, extern, typedef, etc) should be first.')
3267 r'(&\([^)]+\)[\w(])|(&(static|dynamic|reinterpret)_cast\b)', line):
3273 # Check for people declaring static/global STL strings at the top level.
3277 r'((?:|static +)(?:|const +))string +([a-zA-Z0-9_:]+)\b(.*)',
3285 'For a static/global string constant, use a C style string instead: '