1. c965f76 libclang: add a function to check whether a member function is pure virtual by Dmitri Gribenko · 11 years ago
  2. 92b522d Fix test breakage caused by change in clang-format. by Daniel Jasper · 11 years ago
  3. 7eca8d2 [libclang] When parsing with CXTranslationUnit_ForSerialization, make sure to install the ASTWriter that we create as an ASTMutationListener. by Argyrios Kyrtzidis · 11 years ago
  4. b18840d Have SourceManager::getLocForEndOfFile() point at the "EOF" location of the FileID. by Argyrios Kyrtzidis · 11 years ago
  5. 1270673 Have the RecursiveASTVisitor traverse the type source info of an objc class message. by Argyrios Kyrtzidis · 11 years ago
  6. 4857fdc [document parsing]: support c++11 type aliases by Fariborz Jahanian · 11 years ago
  7. a3ae52b [documenting declaration]: Remove arc liftime qualifiers by Fariborz Jahanian · 11 years ago
  8. f1d6d14 Fix buildbot yet again. // rdar://13757500. by Fariborz Jahanian · 11 years ago
  9. 40a06bc attempt to fix the buildbot failure. by Fariborz Jahanian · 11 years ago
  10. db1519a [ObjC declaration documentation] declaration of by Fariborz Jahanian · 11 years ago
  11. 91efca0 documenttion parsing. Provide a c-index test by Fariborz Jahanian · 11 years ago
  12. e858e66 [libclang] Introduce clang_Module_getASTFile function that returns the module file where a module object came from. by Argyrios Kyrtzidis · 11 years ago
  13. 65110ca [PCH/modules] Require the preprocessing record option to match the used PCH, if modules are enabled. by Argyrios Kyrtzidis · 11 years ago
  14. 002f928 Comment parsing: -fparse-all-comments: recognize empty line comments by Dmitri Gribenko · 11 years ago
  15. edab047 [libclang] Introduce a CXCursor_ObjCSelfExpr cursor, which is the equivalent of CXCursor_CXXThisExpr for C++ code. by Argyrios Kyrtzidis · 12 years ago
  16. 2fb5d12 When modifying an implicit instantiation with information from an explicit one, make sure to reset the "right brace" location. by Argyrios Kyrtzidis · 12 years ago
  17. 355dae6 [libclang] Make sure the preable does not truncate comments. by Argyrios Kyrtzidis · 12 years ago
  18. 80e1aca [libclang] Introduce clang_Cursor_isVariadic, which returns non-zero if the given cursor is a variadic function or method. by Argyrios Kyrtzidis · 12 years ago
  19. 38dbad2 [libclang] Introduce clang_Cursor_getObjCDeclQualifiers, to query for 'ObjC Qualifiers' written next to the return and by Argyrios Kyrtzidis · 12 years ago
  20. 9ee6a66 [libclang] Introduce clang_Cursor_getObjCPropertyAttributes to query the written attributes in a property declaration. by Argyrios Kyrtzidis · 12 years ago
  21. 4d6bc18 Adds a new doxygen tag needed. // rdar://12379053 by Fariborz Jahanian · 12 years ago
  22. 7717914 [libclang] Report parameter array types as written in source, not decayed to pointer types. by Argyrios Kyrtzidis · 12 years ago
  23. 673c5d5 Correct the range returned by ParmVarDecl::getSourceRange(), for parameters in ObjC methods with postfix types. by Argyrios Kyrtzidis · 12 years ago
  24. 04b6748 [libclang] Have clang_getCXXAccessSpecifier() also return the access control of a C++ declaration within its parent scope. by Argyrios Kyrtzidis · 12 years ago
  25. 411d33a [libclang] Expose record layout info via new libclang functions: by Argyrios Kyrtzidis · 12 years ago
  26. 75dbdfa comment parsing. Add couple more needed doxygen tags. // rdar://12379053 by Fariborz Jahanian · 12 years ago
  27. 0e7f2bb -fparse-all-comments: remove redundant check, as suggested by Fariborz Jahanian by Dmitri Gribenko · 12 years ago
  28. c95468f Add testcases for -fparse-all-comments by Dmitri Gribenko · 12 years ago
  29. a1637aa clang/test/Index/annotate-tokens.cpp: Appease msvc-targets with -fno-delayed-template-parsing. by NAKAMURA Takumi · 12 years ago
  30. cac9ee0 doce parsing: adding few more headerdoc tags. // rdar://12379114 by Fariborz Jahanian · 12 years ago
  31. 516143b [libclang] Fix cursor visitation to not ignore template arguments in out-of-line member functions. by Argyrios Kyrtzidis · 12 years ago
  32. 5238e40 doce parsing: adding few more headerdoc tags. // rdar://12379114 by Fariborz Jahanian · 12 years ago
  33. e9ebd85 [libclang] Make clang_Cursor_getArgument work with call-exprs. by Argyrios Kyrtzidis · 12 years ago
  34. b6cac0b [libclang] Add test case for r178374. by Argyrios Kyrtzidis · 12 years ago
  35. ab2d09b [Parser] Don't code-complete twice. by Argyrios Kyrtzidis · 12 years ago
  36. c528aa2 Mark comment-to-html-xml-conversion test as XFAIL:msan, in addition to valgrind. by Evgeniy Stepanov · 12 years ago
  37. 231b2bc Actually mark ASan-unfriendly test as XFAIL by Alexey Samsonov · 12 years ago
  38. 4d553c9 clang/test/Index/crash-recovery-code-complete.c: Mark it as XFAIL:win32 for now. by NAKAMURA Takumi · 12 years ago
  39. 1686137 documentation parsing: when providing code completion comment by Fariborz Jahanian · 12 years ago
  40. c02ddb2 documentation parsing. Provide code completion comment by Fariborz Jahanian · 12 years ago
  41. 07c5908 [libclang] Modify clang_getCursorType to be able to handle a function template decl. by Argyrios Kyrtzidis · 12 years ago
  42. 5256c1f [libclang] Fix a test and a warning on windows. by Argyrios Kyrtzidis · 12 years ago
  43. ee2d5fd [libclang] Introduce clang_findIncludesInFile, that can be used to retrieve all #import/#include directives in a specific file. by Argyrios Kyrtzidis · 12 years ago
  44. 0689863 Add code completion for @import <rdar://problem/13344306>. by Douglas Gregor · 12 years ago
  45. 809d1f1 Add comment to my last test. by Fariborz Jahanian · 12 years ago
  46. b98f7af objective-C code completion. Property accessors may not by Fariborz Jahanian · 12 years ago
  47. 1ebefc7 [PCH] When deserializing an IdentifierInfo, call IdentifierInfo::RevertTokenIDToIdentifier() only when it's not already an identifier. by Argyrios Kyrtzidis · 12 years ago
  48. 9db0fe9 doxygen command. Add 'attention' command to list of similar by Fariborz Jahanian · 12 years ago
  49. fdf5706 [libclang] Fix assertion hit when code-completing inside a function macro with more by Argyrios Kyrtzidis · 12 years ago
  50. 6ebf091 Comment parsing: add CommentOptions to allow specifying custom comment block commands by Dmitri Gribenko · 12 years ago
  51. 1f12c47 [libclang] Fix a crash with invalid code, while skip function bodies is enabled. by Argyrios Kyrtzidis · 12 years ago
  52. ae03d8e libclang: add clang_getTypeSpelling(CXType CT) by Dmitri Gribenko · 12 years ago
  53. 8206421 [libclang] Fix annotation of a range where the begin or end location by Argyrios Kyrtzidis · 12 years ago
  54. 5a56e1b [libclang] Add a test to make sure annotation works fine in the presence of by Argyrios Kyrtzidis · 12 years ago
  55. a86b37e [libclang] Attribute visitation happens out-of-source-order, make sure by Argyrios Kyrtzidis · 12 years ago
  56. 1b58c74 Teach subframework header lookup to suggest modules <rdar://problem/13176200>. by Douglas Gregor · 12 years ago
  57. 953a61f Rename -fmodule-cache-path <blah> to -fmodules-cache-path=<blah> for consistency. by Douglas Gregor · 12 years ago
  58. af01bed Comment parsing: improve the fidelity of XML output for many block commands by Dmitri Gribenko · 12 years ago
  59. 6307be3 clang/test/Index/headerfile-comment-to-html.m: Try to unbreak libxml2-less hosts to eliminate "CommentXMLValid". by NAKAMURA Takumi · 12 years ago
  60. f843a58 [Comment parsing] Add support for recognizing by Fariborz Jahanian · 12 years ago
  61. ce76d65 clang/test/Index/skip-parsed-bodies/compile_commands.json: Mark it as XFAIL:mingw32, for now. by NAKAMURA Takumi · 12 years ago
  62. 626799b When code completing in a statement, parenthesized expression, or by Douglas Gregor · 12 years ago
  63. d1f09b4 Allow the computation of the base priority for a declaration code completion result to consider the completion context by Douglas Gregor · 12 years ago
  64. f494e48 Comment parsing: fold named character references test into other HTML tests by Dmitri Gribenko · 12 years ago
  65. 3862d76 Index/special-html-characters.m: mark this as XFAIL for valgrind by Dmitri Gribenko · 12 years ago
  66. 31aa577 Add "instancetype" as a code completion result for the return type of by Douglas Gregor · 12 years ago
  67. 5824b80 The instance methods of the root class of an Objective-C hieararchy by Douglas Gregor · 12 years ago
  68. 658a115 [Doc parsing] Patch to parse Doxygen-supported HTML character by Fariborz Jahanian · 12 years ago
  69. 13e42fb clang/test/Index/getcursor-preamble.m: Formatting. by NAKAMURA Takumi · 12 years ago
  70. 3832fbb clang/test/Index/getcursor-preamble.m: Tweak for win32. env(1) is required to change variables locally. by NAKAMURA Takumi · 12 years ago
  71. 3d207e7 Mark a struct definition in an objc container with the TopLevelDeclInObjCContainer bit. by Argyrios Kyrtzidis · 12 years ago
  72. ae8699b Several small changes in formatting decisions. by Daniel Jasper · 12 years ago
  73. c37b183 Comment parsing: fix test in r173626 for -fms-extensions -fms-compatibility by Dmitri Gribenko · 12 years ago
  74. d1e5c0d Comment parsing: attach any tag type's documentation to its typedef if latter by Dmitri Gribenko · 12 years ago
  75. 06b5ea6 Revert r173586 (and r173587) , "Attach any tag type's documentation to its typedef if" by NAKAMURA Takumi · 12 years ago
  76. 87611cd Attach any tag type's documentation to its typedef if by Fariborz Jahanian · 12 years ago
  77. a9cd3d8 Hopefuly unbreak buldbot. by Fariborz Jahanian · 12 years ago
  78. b2274d6 clang/test/Index/annotate-comments-typedef.m: Remove CommentXMLValid in CHECKs. Don't assume libxml2 here. by NAKAMURA Takumi · 12 years ago
  79. 41170b5 Attach enum's documentation to its typedef if by Fariborz Jahanian · 12 years ago
  80. dddcc57 clang/test/Index/crash-recovery-*.c: Drop 'REQUIRES:shell". "test !" is available on Lit win32 since r173421. by NAKAMURA Takumi · 12 years ago
  81. 614323c clang/test/Index/comment-to-html-xml-conversion.cpp: Mark this as XFAIL:valgrind, for now. Working in progress. by NAKAMURA Takumi · 12 years ago
  82. 2f1ac41 Fixes formatting of empty blocks. by Manuel Klimek · 12 years ago
  83. 032f253 Fix parsing of templated declarations. by Daniel Jasper · 12 years ago
  84. 4918c53 Actually update the test, fixup for r172923 by Dmitri Gribenko · 12 years ago
  85. 44a3ddb Comment parsing: add more tests for html character references by Dmitri Gribenko · 12 years ago
  86. c79afda Reduce penalty for splitting between ")" and ".". by Daniel Jasper · 12 years ago
  87. cdbe1e0 Format strings: don't ever convert %+d to %lu. by Jordan Rose · 12 years ago
  88. 334111d clang/test/Index/code-completion-skip-bodies.cpp: Check stdout and stderr individually, rather than mixed output of stdout and stderr with 2>&1. by NAKAMURA Takumi · 12 years ago
  89. c328d9c comment parsing: when property accessors don't have comment by Fariborz Jahanian · 12 years ago
  90. d5688cf Fix single-line optimization for ObjC. by Manuel Klimek · 12 years ago
  91. 517e894 Implements pulling simple blocks into a single line. by Manuel Klimek · 12 years ago
  92. 5f500df Formatting: In @implementation etc lines, put a space before protocol lists. by Nico Weber · 12 years ago
  93. ed91bba Formatter: Add space before '(' in @implemenation, @interface, @protocol lines by Nico Weber · 12 years ago
  94. 36fab8d Do not add newline in empty blocks. by Manuel Klimek · 12 years ago
  95. 46ef852 Improvements to function type and ObjC block formatting. by Daniel Jasper · 12 years ago
  96. b530fa3 Formatter: @optional and @required go on their own line. by Nico Weber · 12 years ago
  97. 50767d8 Formatter: Add support for @implementation. by Nico Weber · 12 years ago
  98. 1abe6ea Formatting: Add support for @protocol. by Nico Weber · 12 years ago
  99. fa49c18 Fix test after r171995. by Nico Weber · 12 years ago
  100. 886568d Fix ObjC block declarations. by Daniel Jasper · 12 years ago