aboutsummaryrefslogtreecommitdiff
path: root/unittests/Format/FormatTest.cpp
AgeCommit message (Expand)Author
2013-01-13Don't put spaces around hyphens in include paths.Daniel Jasper
2013-01-13Improve identification of c-style casts.Daniel Jasper
2013-01-12Formatter: Don't insert a space before unary operators after selector names.Nico Weber
2013-01-12Formatter: Add a test for @selector in an ObjC method expression, which happe...Nico Weber
2013-01-12Formatter: Remove debugging junk I accidentally landed in r172333.Nico Weber
2013-01-12Formatter: Prefer breaking before ObjC selector names over breaking at their ':'Nico Weber
2013-01-12Fix incorrect comparison operator causing loooong formatting times.Daniel Jasper
2013-01-12Formatter: Remove a redundant CurrentLineType check.Nico Weber
2013-01-12Formatter: Initial support for formatting Objective-C method expressions. ...Nico Weber
2013-01-12Formatter: * and & are binary operators before ( and [.Nico Weber
2013-01-12Formatter: * and & are binary operators after ) and ].Nico Weber
2013-01-12Formatter: + and - after { are unary operators.Nico Weber
2013-01-12Formatter: add a test for :? in []Nico Weber
2013-01-11Formatter: Format ObjC static and instance methods consistently, add a test f...Nico Weber
2013-01-11Fix crashes in UnwrappedLineParser on missing parens.Manuel Klimek
2013-01-11Fix single-line optimization for ObjC.Manuel Klimek
2013-01-11Fix crash on invalid.Manuel Klimek
2013-01-11Fix parsing of initializer lists with elaborated type specifier.Manuel Klimek
2013-01-11Implements pulling simple blocks into a single line.Manuel Klimek
2013-01-11Correct spacing around new and delete.Daniel Jasper
2013-01-11Improve handling of trailing declaration annotations.Daniel Jasper
2013-01-11Improved formatting of constructor initializersDaniel Jasper
2013-01-10Formatter: Remove a fixme, Jordy says @synthesize is good as is.Nico Weber
2013-01-10Formatter: Put spaces in ObjC method decls in the right place for Google style.Nico Weber
2013-01-10Formatter: No spaces around '=' in @property lines.Nico Weber
2013-01-10Formatter: Add test for template and protocol parameters in ObjC method decla...Nico Weber
2013-01-10Formatting: In @implementation etc lines, put a space before protocol lists.Nico Weber
2013-01-10Formatter: Don't put a space in ObjC number literals like @+50Nico Weber
2013-01-10Formatter: Add space before '(' in @implemenation, @interface, @protocol linesNico Weber
2013-01-10Fixes layout of right braces.Manuel Klimek
2013-01-10Fixes formatting of function calls etc inside an initializer list.Manuel Klimek
2013-01-10Do not add newline in empty blocks.Manuel Klimek
2013-01-10Improvements to function type and ObjC block formatting.Daniel Jasper
2013-01-10Fix layout of blocks inside statements.Manuel Klimek
2013-01-10Improve clang-format's understanding of casts.Daniel Jasper
2013-01-10Do more error checking for '{}'.Daniel Jasper
2013-01-10Formatter: Remove unused @-formatting code.Nico Weber
2013-01-10Formatter: @optional and @required go on their own line.Nico Weber
2013-01-09Formatter: Add support for @implementation.Nico Weber
2013-01-09Formatter: Make parseObjCUntilAtEnd() actually work.Nico Weber
2013-01-09Formatting: Add support for @protocol.Nico Weber
2013-01-09Formatter: Add support for @interface.Nico Weber
2013-01-09Enables layouting unwrapped lines around preprocessor directives.Manuel Klimek
2013-01-09Only align after assignments on the top level.Daniel Jasper
2013-01-09Don't simply give up when exceeding 80cols, choose an "ok" option.Daniel Jasper
2013-01-09Correctly format wrapped function call parameters in templated functions.Daniel Jasper
2013-01-09Allow comments in the middle of statements to be on their own line.Daniel Jasper
2013-01-09Fix ObjC block declarations.Daniel Jasper
2013-01-09Improve formatting of conditional operators.Daniel Jasper
2013-01-08Formatter: More tests for already-passing ObjC bits.Nico Weber