llvm-project/clang/lib/Format
Daniel Jasper c0126864a0 clang-format: [Java] Understand string literal concatenation.
Before:
  String someString = "abc" + "cde";

After:
  String someString = "abc"
                      + "cde";

llvm-svn: 220287
2014-10-21 11:34:53 +00:00
..
BreakableToken.cpp clang-format: Fix bug introduced by r208392. 2014-05-09 13:11:16 +00:00
BreakableToken.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CMakeLists.txt [CMake] Use LINK_LIBS instead of target_link_libraries(). 2014-02-26 06:41:29 +00:00
ContinuationIndenter.cpp clang-format: [Java] Wrap after each function annotation. 2014-10-21 08:24:18 +00:00
ContinuationIndenter.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Encoding.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Format.cpp clang-format: Add option to control call argument bin-packing separately 2014-10-09 09:52:05 +00:00
FormatToken.cpp clang-format: Prevent column layout if elements aren't uniform enough. 2014-09-19 08:28:43 +00:00
FormatToken.h clang-format: [Java] Wrap after each function annotation. 2014-10-21 08:24:18 +00:00
Makefile
TokenAnnotator.cpp clang-format: [Java] Understand string literal concatenation. 2014-10-21 11:34:53 +00:00
TokenAnnotator.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
UnwrappedLineParser.cpp clang-format: [Java] Support extending inner classes. 2014-10-21 09:31:29 +00:00
UnwrappedLineParser.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
WhitespaceManager.cpp clang-format: Fix bug introduced by r208392. 2014-05-09 13:11:16 +00:00
WhitespaceManager.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00