Lines Matching refs:braces
126 Examples: --filter=-whitespace,+whitespace/braces
178 'readability/braces',
208 'whitespace/braces',
1503 """Holds states related to parsing braces."""
1506 # Stack for tracking all braces. An object is pushed whenever we
1691 # Consume braces or semicolons from what's left of the line
2458 # braces. And since you should never have braces at the beginning of a line,
2461 error(filename, linenum, 'whitespace/braces', 5,
2466 error(filename, linenum, 'whitespace/braces', 5,
2472 error(filename, linenum, 'whitespace/braces', 5,
2578 """Looks for misplaced braces (e.g. at the end of line).
2591 # is using braces in a block to explicitly create a new scope,
2600 error(filename, linenum, 'whitespace/braces', 4,
2610 # If braces come on one side of an else, they should be on both.
2620 error(filename, linenum, 'readability/braces', 5,
2623 error(filename, linenum, 'readability/braces', 5,
2636 # Braces shouldn't be followed by a ; unless they're defining a struct
2649 error(filename, linenum, 'readability/braces', 4,
3194 # (ignoring whatever is between the braces) and : for classes.
3354 error(filename, linenum, 'readability/braces', 4,