1. a4974cf Penalize tokens with a lower parenthesis level than the start of the line. by Daniel Jasper · 12 years ago
  2. cf225b6 Align RHS after assignments and return statements. by Daniel Jasper · 12 years ago
  3. f6aef6a Fix formatting over overloaded operators. by Daniel Jasper · 12 years ago
  4. e2c7acf Take operator precedence into account when splitting lines. by Daniel Jasper · 12 years ago
  5. 00d5a04 libFormat: Teach the *& usage heuristic that "return" starts a rhs too. by Nico Weber · 12 years ago
  6. 9b3f02c Adding to FormatTest.cpp test for a very long ObjC method by Fariborz Jahanian · 12 years ago
  7. b23ae0c format: Handle #import as include directive too. by Nico Weber · 12 years ago
  8. cd1a32b clang-format: No spaces around directory specifiers by Daniel Jasper · 12 years ago
  9. a324a0e Basic support for formatting for-loops. by Daniel Jasper · 12 years ago
  10. 98e6b4a Formatting fixes for PR14680 by Daniel Jasper · 12 years ago
  11. 154120c Add objective-C style formatting to clang format and by Fariborz Jahanian · 12 years ago
  12. 88d158c Provide couple of DeclPrint tests for my last patch. by Fariborz Jahanian · 12 years ago
  13. 40902d8 Audit DeclPrinter with -ast-dump on Cocoa.h and by Fariborz Jahanian · 12 years ago
  14. 88b9521 This is the libclang patch providing minimal API to by Fariborz Jahanian · 12 years ago
  15. 1321eb5 Better support for constructor initializers. by Daniel Jasper · 12 years ago
  16. e35ec2b Make the format scrambler understand line comments. by Daniel Jasper · 12 years ago
  17. 9a0b494 Add basic support for splitting before function calls if it can't be avoided. by Daniel Jasper · 12 years ago
  18. 05b1ac8 Fix several formatting problems. by Daniel Jasper · 12 years ago
  19. fc2929f Dont use/link ARCMT, StaticAnalyzer and Rewriter to clang when the user by Roman Divacky · 12 years ago
  20. e5d30e3 Extend stat query APIs to explicitly specify if the query is for by Argyrios Kyrtzidis · 12 years ago
  21. 1d28caf PR14558: Compute triviality of special members (etc) at the end of the class by Richard Smith · 12 years ago
  22. 8b39c66 Addi formatting tests for pointer template parameters. by Daniel Jasper · 12 years ago
  23. 56e49c5 Clang-format: error recovery for access specifiers by Alexander Kornienko · 12 years ago
  24. ec33b6f Adding tests since when I was asked whether this works I wasn't 100% sure. by Manuel Klimek · 12 years ago
  25. c74e279 Small tweaks to clang-format. by Daniel Jasper · 12 years ago
  26. c35fac1 Fixes Makefile for Format unit tests. by Fariborz Jahanian · 12 years ago
  27. 1575731 Clang-format: IndentCaseLabels option, proper namespace handling by Alexander Kornienko · 12 years ago
  28. a3a2b3a Clang-format: detect unbalanced braces. by Alexander Kornienko · 12 years ago
  29. 30ace37 Implements multiple parents in the parent map. by Manuel Klimek · 12 years ago
  30. d56a737 Improve clang-format's handling of unary operators. by Daniel Jasper · 12 years ago
  31. 3b5943f "<<" alignment for clang-format. by Daniel Jasper · 12 years ago
  32. ddb2968 In DeclPrint add printing of '= default' in constructors. by Fariborz Jahanian · 12 years ago
  33. 65bcdab In DeclPrint add printing of 'explicit' constructors. by Fariborz Jahanian · 12 years ago
  34. a3064c3 fix comment. by Fariborz Jahanian · 12 years ago
  35. 02a2e5a Testing C++ declarations embedded in by Fariborz Jahanian · 12 years ago
  36. 2e97cfc Clang-format: parse for and while loops by Alexander Kornienko · 12 years ago
  37. 33182dd Indentation fixes for clang-format. by Daniel Jasper · 12 years ago
  38. 112fb27 Small tweaks to automatic formatting. by Daniel Jasper · 12 years ago
  39. cff563c Error recovery part 2 by Alexander Kornienko · 12 years ago
  40. 393b008 Clang-format error recovery part 1 by Alexander Kornienko · 12 years ago
  41. a166e73 Enum formatting implementation by Alexander Kornienko · 12 years ago
  42. 8cb9bf5 Fix spelling I ran over while proof-reading tests. by Manuel Klimek · 12 years ago
  43. 987c2f5 Fixes crash in isDerivedFrom for recursive templates. by Manuel Klimek · 12 years ago
  44. 8822d3a Small fixes to unary operator recognition and handling of include directives. by Daniel Jasper · 12 years ago
  45. 36e29d6 Add parameterCountIs() matcher. by Daniel Jasper · 12 years ago
  46. a88bb45 Replace workarounds with correct fixes. by Daniel Jasper · 12 years ago
  47. 7cc315c Really sort the #include lines in unittests/... by Chandler Carruth · 12 years ago
  48. 1050e8b Sort the #include lines for unittests/... by Chandler Carruth · 12 years ago
  49. d031c6a ASTTests, ASTMatchersTests: Move clangEdit before clangAst in USEDLIB. by NAKAMURA Takumi · 12 years ago
  50. bf5bc4c Untabify (in USEDLIBS, Makefile(s)). by NAKAMURA Takumi · 12 years ago
  51. b331b5e clang/Lex: [CMake] Update CMakefiles since r169229. by NAKAMURA Takumi · 12 years ago
  52. 37ed127 Refactor recording the preprocessor conditional directive regions out of by Argyrios Kyrtzidis · 12 years ago
  53. 7e96bfb Introduce CompilationDatabase::getAllCompileCommands() that returns all by Argyrios Kyrtzidis · 12 years ago
  54. bac016b Initial version of formatting library. by Daniel Jasper · 12 years ago
  55. 189f2e4 Make hasDeclaration work for enums. by Daniel Jasper · 12 years ago
  56. 8b9ed71 Update unit tests not to rely on transitive includes. by Benjamin Kramer · 12 years ago
  57. 7dff05b Fix unit tests for ModuleLoader change in r168961. by Douglas Gregor · 12 years ago
  58. 9c196ac Remove out-of-date comment. by Richard Smith · 12 years ago
  59. 96794f1 ASTTests/StmtPrinterTest/StmtPrinter.TestMSIntegerLiteral: Remove i128 stuff. Conditioning-out in macro argument was not accepted on MS cl.exe. by NAKAMURA Takumi · 12 years ago
  60. 3b16477 ASTTests/StmtPrinterTest/StmtPrinter.TestMSIntegerLiteral: Suppress i128 according to r168856, for now. by NAKAMURA Takumi · 12 years ago
  61. d1bac8d Allow an ASTConsumer to selectively skip function bodies while parsing. Patch by Richard Smith · 12 years ago
  62. 5f684e9 Fix partial-match-bind-behavior with forEachDescendant() matchers. by Daniel Jasper · 12 years ago
  63. 3a4c8cf clang/unittests: Fixup corresponding to Doug's r168136. by NAKAMURA Takumi · 12 years ago
  64. 278057f Do not use data recursion in ASTMatchFinder. by Daniel Jasper · 12 years ago
  65. 11c9877 Fix binding of nodes in case of forEach..() matchers. by Daniel Jasper · 12 years ago
  66. c2fc67e Fix a source range regression in C++ new expressions with call initializers. by David Blaikie · 12 years ago
  67. 4c5750e Fixed converted ConstantArrayTypeLoc range. Added a missing testcase for ConstructorDecl source range. by Abramo Bagnara · 12 years ago
  68. 13fd684 Fixed range of implicit MemberExpr. by Abramo Bagnara · 12 years ago
  69. 5a78985 Test for source location range of new expressions fixed in r167507. by David Blaikie · 12 years ago
  70. 975a949 Add unit tests for source locations of AST nodes. by Manuel Klimek · 12 years ago
  71. 7164095 Escape trigraphs in unittest. by Benjamin Kramer · 12 years ago
  72. e579328 Insert interception point onStartOfTranslationUnit. by Manuel Klimek · 12 years ago
  73. cfa1caa Make the FilenameRange of the InclusionDirective callback more accurate, by Argyrios Kyrtzidis · 12 years ago
  74. d1ce3c1 Implement descendant matchers for NestedNamespecifiers by Daniel Jasper · 12 years ago
  75. 452abbc Fix ASTMatchersTests to not create an overloaded-virtual warning. by Daniel Jasper · 12 years ago
  76. a267cf6 Implement has(), hasDescendant(), forEach() and forEachDescendant() for by Daniel Jasper · 12 years ago
  77. d9a2d5b unittests/ToolingTest.cpp: Suppress newFrontendActionFactory.InjectsEndOfSourceFileCallback on Win32 for now. Investigating. by NAKAMURA Takumi · 12 years ago
  78. 9fb6b27 Adds the possibility to inject a callback that's called after each translation unit is processed. by Manuel Klimek · 12 years ago
  79. 36a1649 Teach the preprocessor to hold onto the preprocessor options. by Douglas Gregor · 12 years ago
  80. b0985c8 Update unit tests for HeaderSearch change by Douglas Gregor · 12 years ago
  81. 3e2aa99 Adds the possibility to run ASTMatchFinder over arbitrary AST nodes. by Manuel Klimek · 12 years ago
  82. f27762b Tweak include order by Douglas Gregor · 12 years ago
  83. 99eb4a7 Buildbot debugging is fun by Douglas Gregor · 12 years ago
  84. 16a4abf One last unit-test fix by Douglas Gregor · 12 years ago
  85. 3aeb34f More unit-test fixes by Douglas Gregor · 12 years ago
  86. 8e02361 Fixup unit tests for DiagnosticOptions change by Douglas Gregor · 12 years ago
  87. c711af2 Make hasDeclaration() matcher work inside the memberExpr() matcher. by Daniel Jasper · 12 years ago
  88. 70b9db9 Implements the thisExpr matcher. Patch by Gabor Horvath. by Manuel Klimek · 12 years ago
  89. c99a3ad Implement hasParent()-matcher. by Daniel Jasper · 12 years ago
  90. 262e60c [doc parsing] use getParamName to access parameter by Fariborz Jahanian · 12 years ago
  91. a7a68b6 Patch for decl printer test of objective-c methods. Patch by Dmitri Gribenko. by Fariborz Jahanian · 12 years ago
  92. 1802daf Fix tests, which accidentally matched implicit code on specific by Daniel Jasper · 12 years ago
  93. ce62007 First version of matchers for Types and TypeLocs. by Daniel Jasper · 12 years ago
  94. 07f8cf4 Fix the handling of target options in our unit tests. by Douglas Gregor · 12 years ago
  95. 6553c68 structured document comment: patch to provide comment for overriding function by Fariborz Jahanian · 12 years ago
  96. bf967be [Doc parsing] This patch searches overridden objc/c++ by Fariborz Jahanian · 12 years ago
  97. 3201da3 CompilationDatabaseTest: Fix another Windows path issue. by Daniel Jasper · 12 years ago
  98. 8a5e8c3 CompilationDatabase: Use //net paths for tests, as they should be by Daniel Jasper · 12 years ago
  99. 2dbe2fa FileNameMatchTrie: Use StringRef instead of Twines where possible. by Daniel Jasper · 12 years ago
  100. d3420c9 Support symlinks and relative paths in complilation databases. by Daniel Jasper · 12 years ago