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