1. fcd0aa1 Following the modification introduced in llvm by commit 185311 by Sylvestre Ledru · 11 years ago
  2. 89faf86 Bug fix: Make RecursiveASTVisitor<T>::TraverseLambdaExpr call by James Dennett · 11 years ago
  3. dbb4a35 Don't use PathV1.h in CIndexCodeCompletion.cpp. by Rafael Espindola · 11 years ago
  4. 12df246 [AST] Introduce a new DecayedType sugar node by Reid Kleckner · 11 years ago
  5. 1a554f7 Add some invalid-decl checks to clang_Type_getOffsetOf. by Matt Beaumont-Gay · 11 years ago
  6. c5b0054 Comment parsing: allow "\param ..." to describe variadic arguments by Dmitri Gribenko · 11 years ago
  7. 97e5bc2 Comment parsing: followup to r184610: allow multiple \returns by Dmitri Gribenko · 11 years ago
  8. d52b20c [document parsing]: Allow multiple adjacent \return and the like by Fariborz Jahanian · 11 years ago
  9. 5c1a9f3 Simplify a loop in ProcessCodeCompleteResults(). Pointed out by David Blaikie by Dmitri Gribenko · 11 years ago
  10. 68effa0 ArrayRef'ize CodeCompletionContext::getNumSelIdents() by Dmitri Gribenko · 11 years ago
  11. b1e25a1 [Driver] Refactor clang driver to use LLVM's Option library by Reid Kleckner · 11 years ago
  12. 57a3bbf Use the sys::ExecuteAndWait that takes StringRefs. by Rafael Espindola · 11 years ago
  13. 009d7d5 libclang: Remove clang::RemapFiles, it's dead code. by Benjamin Kramer · 11 years ago
  14. 082ad2b libclang: Port CIndexer::getClangResourcesPath to PathV2. No functionality change. by Benjamin Kramer · 11 years ago
  15. 7c3e615 PR12086, PR15117 by Richard Smith · 11 years ago
  16. 3439237 Include PathV1.h in files that use it. by Rafael Espindola · 11 years ago
  17. c09f2a8 [libclang] CMake: add an option to control building libclang as a static library (off by default) by Argyrios Kyrtzidis · 11 years ago
  18. 25cd4a2 [libclang] When annotating tokens, don't override a property annotation with a getter/setter method annotation. by Argyrios Kyrtzidis · 11 years ago
  19. 1bc085a [libclang] When indexing a @synthesize, don't consider that it defines a getter/setter if one is already defined by the user. by Argyrios Kyrtzidis · 11 years ago
  20. a99ecbc Fix linkage computation for derived types in inline functions. by Rafael Espindola · 11 years ago
  21. 4c9f58f [libclang] Add logging for clang_createTranslationUnit. by Argyrios Kyrtzidis · 11 years ago
  22. c965f76 libclang: add a function to check whether a member function is pure virtual by Dmitri Gribenko · 11 years ago
  23. 0d8e964 First pass of semantic analysis for init-captures: check the initializer, build by Richard Smith · 11 years ago
  24. 17828ca Provide operator<< for stream output of DeclarationNames by David Blaikie · 11 years ago
  25. 181e3ec Cleanup handling of UniqueExternalLinkage. by Rafael Espindola · 11 years ago
  26. 333e44c [libclang] Add a null check in CursorVisitor::visitPreprocessedEntities. by Argyrios Kyrtzidis · 11 years ago
  27. 1270673 Have the RecursiveASTVisitor traverse the type source info of an objc class message. by Argyrios Kyrtzidis · 11 years ago
  28. cc2b653 Remove DiagnosticConsumer::clone(), a bad idea that is now unused. by Douglas Gregor · 11 years ago
  29. dd08a0c [Preprocessor] For the MacroExpands preprocessor callback, also pass the MacroArgs object that provides information about by Argyrios Kyrtzidis · 11 years ago
  30. 1880039 Remove redundant flag. by Bill Wendling · 11 years ago
  31. 497a4eb We don't want FP elimination when doing an Apple-style build. by Bill Wendling · 11 years ago
  32. e858e66 [libclang] Introduce clang_Module_getASTFile function that returns the module file where a module object came from. by Argyrios Kyrtzidis · 11 years ago
  33. 96bbe19 Fix typo in comparison in clang_CXCursorSet_contains(). by Ted Kremenek · 11 years ago
  34. 017dd74 Revert "Remove CXCursorSet and related APIs. There are no known clients." by Ted Kremenek · 11 years ago
  35. 3b6f56a Remove CXCursorSet and related APIs. There are no known clients. by Ted Kremenek · 11 years ago
  36. edab047 [libclang] Introduce a CXCursor_ObjCSelfExpr cursor, which is the equivalent of CXCursor_CXXThisExpr for C++ code. by Argyrios Kyrtzidis · 11 years ago
  37. c3bf52c C++1y: Allow aggregates to have default initializers. by Richard Smith · 11 years ago
  38. 80e1aca [libclang] Introduce clang_Cursor_isVariadic, which returns non-zero if the given cursor is a variadic function or method. by Argyrios Kyrtzidis · 11 years ago
  39. 38dbad2 [libclang] Introduce clang_Cursor_getObjCDeclQualifiers, to query for 'ObjC Qualifiers' written next to the return and by Argyrios Kyrtzidis · 11 years ago
  40. 9ee6a66 [libclang] Introduce clang_Cursor_getObjCPropertyAttributes to query the written attributes in a property declaration. by Argyrios Kyrtzidis · 11 years ago
  41. 7717914 [libclang] Report parameter array types as written in source, not decayed to pointer types. by Argyrios Kyrtzidis · 11 years ago
  42. 6afcf88 Sema for Captured Statements by Tareq A. Siraj · 11 years ago
  43. 051303c Implement CapturedStmt AST by Tareq A. Siraj · 11 years ago
  44. 76da55d Basic support for Microsoft property declarations and references thereto. by John McCall · 11 years ago
  45. 4522f63 [libclang] Introduce clang_Location_isInSystemHeader to check if a location resides in a system header. by Argyrios Kyrtzidis · 11 years ago
  46. 04b6748 [libclang] Have clang_getCXXAccessSpecifier() also return the access control of a C++ declaration within its parent scope. by Argyrios Kyrtzidis · 11 years ago
  47. 411d33a [libclang] Expose record layout info via new libclang functions: by Argyrios Kyrtzidis · 11 years ago
  48. 8434722 [libclang] In cxtu::getASTUnit(), check for a null CXTranslationUnit. by Argyrios Kyrtzidis · 11 years ago
  49. 516143b [libclang] Fix cursor visitation to not ignore template arguments in out-of-line member functions. by Argyrios Kyrtzidis · 11 years ago
  50. 0b60283 [libclang] Add some checks to make sure the given CXTranslationUnit is not null, before using it. by Argyrios Kyrtzidis · 11 years ago
  51. e9ebd85 [libclang] Make clang_Cursor_getArgument work with call-exprs. by Argyrios Kyrtzidis · 11 years ago
  52. c58b756 [libclang] If libclang logging is enabled, print all compiler diagnostics to stderr instead of capturing them. by Argyrios Kyrtzidis · 11 years ago
  53. 16e0f19 [cmake] Add clang-headers as a dependency of libclang and if we have to copy them by Argyrios Kyrtzidis · 11 years ago
  54. 9083628 Update the error handing static functions for r178161. Part of rdar://13296693 by Chad Rosier · 11 years ago
  55. c56fff7 [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 11 years ago
  56. c640058 OpenMP threadprivate directive parsing and semantic analysis by Alexey Bataev · 11 years ago
  57. 07c5908 [libclang] Modify clang_getCursorType to be able to handle a function template decl. by Argyrios Kyrtzidis · 11 years ago
  58. c1d2239 [Modules] Resolve top-headers of modules lazily. by Argyrios Kyrtzidis · 11 years ago
  59. 6f09c3d [libclang] Change clang_findReferencesInFile and clang_findIncludesInFile to return an enum, by Argyrios Kyrtzidis · 11 years ago
  60. 389dc56 [libclang] Modify clang_findReferencesInFile and clang_findIncludesInFile to return a value. by Argyrios Kyrtzidis · 11 years ago
  61. ee2d5fd [libclang] Introduce clang_findIncludesInFile, that can be used to retrieve all #import/#include directives in a specific file. by Argyrios Kyrtzidis · 11 years ago
  62. 029c8f3 [libclang] When calling the function of CXCursorAndRangeVisitor, don't forget to by Argyrios Kyrtzidis · 11 years ago
  63. b70e7a8 [libclang] Add Logger::operator<< overloads for CXCursor and FileEntry. by Argyrios Kyrtzidis · 11 years ago
  64. 44f65a5 [libclang] When logging a CXTranslationUnit that came from an AST file, print out the filename. by Argyrios Kyrtzidis · 11 years ago
  65. fc09336 Fix typos: [Dd]iagnosic -> [Dd]iagnostic by Stefanus Du Toit · 11 years ago
  66. 9db0fe9 doxygen command. Add 'attention' command to list of similar by Fariborz Jahanian · 12 years ago
  67. c515978 [preprocessor] Use MacroDirective in the preprocessor callbacks to make available the by Argyrios Kyrtzidis · 12 years ago
  68. 7728cdd Revert r175912, "Add support for coldcc to clang" at John's request. by Peter Collingbourne · 12 years ago
  69. 4c67aa9 Add support for coldcc to clang by Peter Collingbourne · 12 years ago
  70. f23546a Suppress -Wswitch to unbreak the build. by David Blaikie · 12 years ago
  71. 684aa73 [Sema] Semantic analysis for empty-declaration and attribute-declaration. by Michael Han · 12 years ago
  72. 5eada84 Streamify getNameForDiagnostic and remove the string versions of PrintTemplateArgumentList. by Benjamin Kramer · 12 years ago
  73. 4a3012d CIndex.cpp: Appease g++-4.4. "if (Optional<unsigned> Minor = In.getMinor())" did not work as expected. by NAKAMURA Takumi · 12 years ago
  74. 66874fb Use None rather than Optional<T>() where possible. by David Blaikie · 12 years ago
  75. 943f909 Strip 'llvm' from 'llvm::Optional' uses. by Ted Kremenek · 12 years ago
  76. 9818a1d [preprocessor] Split the MacroInfo class into two separate concepts, MacroInfo class by Argyrios Kyrtzidis · 12 years ago
  77. 39e6ab4 Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 12 years ago
  78. 9ba7627 libclang: don't store nul-terminated strings as StringRefs, by Dmitri Gribenko · 12 years ago
  79. cb6bcf1 libclang: remove reinterpret_casts by using SourceLocation::getPtrEncoding by Dmitri Gribenko · 12 years ago
  80. ae03d8e libclang: add clang_getTypeSpelling(CXType CT) by Dmitri Gribenko · 12 years ago
  81. 62d0f56 libclang: remove reinterpret_casts by using SourceLocation::getFromPtrEncoding by Dmitri Gribenko · 12 years ago
  82. 778749a Use 'RC_XBS' instead of 'RC_BUILDIT' to catch all times when it's built in the Apple way. by Bill Wendling · 12 years ago
  83. 8206421 [libclang] Fix annotation of a range where the begin or end location by Argyrios Kyrtzidis · 12 years ago
  84. ae50a5b libclang: use CXCursor getters to simplify code by Dmitri Gribenko · 12 years ago
  85. a86b37e [libclang] Attribute visitation happens out-of-source-order, make sure by Argyrios Kyrtzidis · 12 years ago
  86. 90b5ac6 libclang: reduce CXString abuse by Dmitri Gribenko · 12 years ago
  87. 775bb8a libclang: CursorVisitor::VisitBuiltinTypeLoc(): Add OCLSampler. [-Wswitch] by NAKAMURA Takumi · 12 years ago
  88. 21f18c4 Add OpenCL samplers as Clang builtin types and check sampler related restrictions. by Guy Benyei · 12 years ago
  89. 4c494f4 Comment to XML conversion: replace string comparison with command ID comparison by Dmitri Gribenko · 12 years ago
  90. f06faad libclang: wrap CXString implementation into 'namespace cxstring' by Dmitri Gribenko · 12 years ago
  91. aca3e56 libclang: remove 'using namespace cxstring' by Dmitri Gribenko · 12 years ago
  92. 361d79c libclang: migrate IndexingDeclVisitor to ConstDeclVisitor by Dmitri Gribenko · 12 years ago
  93. 8d0eb2f libclang: remove unneeded const_cast by Dmitri Gribenko · 12 years ago
  94. e414cc1 libclang: migrate USRGenerator to ConstDeclVisitor by Dmitri Gribenko · 12 years ago
  95. a376f87 libclang: remove unneeded const_casts by Dmitri Gribenko · 12 years ago
  96. 5595ded libclang: introduce cxstring::{createRef,createDup} for StringRefs by Dmitri Gribenko · 12 years ago
  97. 0c4394c libclang: introduce cxstring::{createRef,createDup} for C strings by Dmitri Gribenko · 12 years ago
  98. af01bed Comment parsing: improve the fidelity of XML output for many block commands by Dmitri Gribenko · 12 years ago
  99. 15a2aa0 libclang: document the purpose of createNull() by Dmitri Gribenko · 12 years ago
  100. 17c1a24 libclang: add comments for CXStringFlag by Dmitri Gribenko · 12 years ago