1. e858e66 [libclang] Introduce clang_Module_getASTFile function that returns the module file where a module object came from. by Argyrios Kyrtzidis · 11 years ago
  2. 96bbe19 Fix typo in comparison in clang_CXCursorSet_contains(). by Ted Kremenek · 11 years ago
  3. 017dd74 Revert "Remove CXCursorSet and related APIs. There are no known clients." by Ted Kremenek · 11 years ago
  4. 3b6f56a Remove CXCursorSet and related APIs. There are no known clients. by Ted Kremenek · 11 years ago
  5. edab047 [libclang] Introduce a CXCursor_ObjCSelfExpr cursor, which is the equivalent of CXCursor_CXXThisExpr for C++ code. by Argyrios Kyrtzidis · 11 years ago
  6. c3bf52c C++1y: Allow aggregates to have default initializers. by Richard Smith · 11 years ago
  7. 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
  8. 38dbad2 [libclang] Introduce clang_Cursor_getObjCDeclQualifiers, to query for 'ObjC Qualifiers' written next to the return and by Argyrios Kyrtzidis · 11 years ago
  9. 9ee6a66 [libclang] Introduce clang_Cursor_getObjCPropertyAttributes to query the written attributes in a property declaration. by Argyrios Kyrtzidis · 11 years ago
  10. 7717914 [libclang] Report parameter array types as written in source, not decayed to pointer types. by Argyrios Kyrtzidis · 11 years ago
  11. 6afcf88 Sema for Captured Statements by Tareq A. Siraj · 11 years ago
  12. 051303c Implement CapturedStmt AST by Tareq A. Siraj · 11 years ago
  13. 76da55d Basic support for Microsoft property declarations and references thereto. by John McCall · 11 years ago
  14. 4522f63 [libclang] Introduce clang_Location_isInSystemHeader to check if a location resides in a system header. by Argyrios Kyrtzidis · 11 years ago
  15. 04b6748 [libclang] Have clang_getCXXAccessSpecifier() also return the access control of a C++ declaration within its parent scope. by Argyrios Kyrtzidis · 11 years ago
  16. 411d33a [libclang] Expose record layout info via new libclang functions: by Argyrios Kyrtzidis · 11 years ago
  17. 8434722 [libclang] In cxtu::getASTUnit(), check for a null CXTranslationUnit. by Argyrios Kyrtzidis · 11 years ago
  18. 516143b [libclang] Fix cursor visitation to not ignore template arguments in out-of-line member functions. by Argyrios Kyrtzidis · 11 years ago
  19. 0b60283 [libclang] Add some checks to make sure the given CXTranslationUnit is not null, before using it. by Argyrios Kyrtzidis · 11 years ago
  20. e9ebd85 [libclang] Make clang_Cursor_getArgument work with call-exprs. by Argyrios Kyrtzidis · 11 years ago
  21. c58b756 [libclang] If libclang logging is enabled, print all compiler diagnostics to stderr instead of capturing them. by Argyrios Kyrtzidis · 11 years ago
  22. 16e0f19 [cmake] Add clang-headers as a dependency of libclang and if we have to copy them by Argyrios Kyrtzidis · 11 years ago
  23. 9083628 Update the error handing static functions for r178161. Part of rdar://13296693 by Chad Rosier · 11 years ago
  24. c56fff7 [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 11 years ago
  25. c640058 OpenMP threadprivate directive parsing and semantic analysis by Alexey Bataev · 11 years ago
  26. 07c5908 [libclang] Modify clang_getCursorType to be able to handle a function template decl. by Argyrios Kyrtzidis · 11 years ago
  27. c1d2239 [Modules] Resolve top-headers of modules lazily. by Argyrios Kyrtzidis · 11 years ago
  28. 6f09c3d [libclang] Change clang_findReferencesInFile and clang_findIncludesInFile to return an enum, by Argyrios Kyrtzidis · 11 years ago
  29. 389dc56 [libclang] Modify clang_findReferencesInFile and clang_findIncludesInFile to return a value. by Argyrios Kyrtzidis · 11 years ago
  30. 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
  31. 029c8f3 [libclang] When calling the function of CXCursorAndRangeVisitor, don't forget to by Argyrios Kyrtzidis · 11 years ago
  32. b70e7a8 [libclang] Add Logger::operator<< overloads for CXCursor and FileEntry. by Argyrios Kyrtzidis · 11 years ago
  33. 44f65a5 [libclang] When logging a CXTranslationUnit that came from an AST file, print out the filename. by Argyrios Kyrtzidis · 11 years ago
  34. fc09336 Fix typos: [Dd]iagnosic -> [Dd]iagnostic by Stefanus Du Toit · 11 years ago
  35. 9db0fe9 doxygen command. Add 'attention' command to list of similar by Fariborz Jahanian · 11 years ago
  36. c515978 [preprocessor] Use MacroDirective in the preprocessor callbacks to make available the by Argyrios Kyrtzidis · 11 years ago
  37. 7728cdd Revert r175912, "Add support for coldcc to clang" at John's request. by Peter Collingbourne · 11 years ago
  38. 4c67aa9 Add support for coldcc to clang by Peter Collingbourne · 11 years ago
  39. f23546a Suppress -Wswitch to unbreak the build. by David Blaikie · 11 years ago
  40. 684aa73 [Sema] Semantic analysis for empty-declaration and attribute-declaration. by Michael Han · 11 years ago
  41. 5eada84 Streamify getNameForDiagnostic and remove the string versions of PrintTemplateArgumentList. by Benjamin Kramer · 11 years ago
  42. 4a3012d CIndex.cpp: Appease g++-4.4. "if (Optional<unsigned> Minor = In.getMinor())" did not work as expected. by NAKAMURA Takumi · 11 years ago
  43. 66874fb Use None rather than Optional<T>() where possible. by David Blaikie · 11 years ago
  44. 943f909 Strip 'llvm' from 'llvm::Optional' uses. by Ted Kremenek · 11 years ago
  45. 9818a1d [preprocessor] Split the MacroInfo class into two separate concepts, MacroInfo class by Argyrios Kyrtzidis · 11 years ago
  46. 39e6ab4 Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 11 years ago
  47. 9ba7627 libclang: don't store nul-terminated strings as StringRefs, by Dmitri Gribenko · 11 years ago
  48. cb6bcf1 libclang: remove reinterpret_casts by using SourceLocation::getPtrEncoding by Dmitri Gribenko · 11 years ago
  49. ae03d8e libclang: add clang_getTypeSpelling(CXType CT) by Dmitri Gribenko · 11 years ago
  50. 62d0f56 libclang: remove reinterpret_casts by using SourceLocation::getFromPtrEncoding by Dmitri Gribenko · 11 years ago
  51. 778749a Use 'RC_XBS' instead of 'RC_BUILDIT' to catch all times when it's built in the Apple way. by Bill Wendling · 11 years ago
  52. 8206421 [libclang] Fix annotation of a range where the begin or end location by Argyrios Kyrtzidis · 11 years ago
  53. ae50a5b libclang: use CXCursor getters to simplify code by Dmitri Gribenko · 12 years ago
  54. a86b37e [libclang] Attribute visitation happens out-of-source-order, make sure by Argyrios Kyrtzidis · 12 years ago
  55. 90b5ac6 libclang: reduce CXString abuse by Dmitri Gribenko · 12 years ago
  56. 775bb8a libclang: CursorVisitor::VisitBuiltinTypeLoc(): Add OCLSampler. [-Wswitch] by NAKAMURA Takumi · 12 years ago
  57. 21f18c4 Add OpenCL samplers as Clang builtin types and check sampler related restrictions. by Guy Benyei · 12 years ago
  58. 4c494f4 Comment to XML conversion: replace string comparison with command ID comparison by Dmitri Gribenko · 12 years ago
  59. f06faad libclang: wrap CXString implementation into 'namespace cxstring' by Dmitri Gribenko · 12 years ago
  60. aca3e56 libclang: remove 'using namespace cxstring' by Dmitri Gribenko · 12 years ago
  61. 361d79c libclang: migrate IndexingDeclVisitor to ConstDeclVisitor by Dmitri Gribenko · 12 years ago
  62. 8d0eb2f libclang: remove unneeded const_cast by Dmitri Gribenko · 12 years ago
  63. e414cc1 libclang: migrate USRGenerator to ConstDeclVisitor by Dmitri Gribenko · 12 years ago
  64. a376f87 libclang: remove unneeded const_casts by Dmitri Gribenko · 12 years ago
  65. 5595ded libclang: introduce cxstring::{createRef,createDup} for StringRefs by Dmitri Gribenko · 12 years ago
  66. 0c4394c libclang: introduce cxstring::{createRef,createDup} for C strings by Dmitri Gribenko · 12 years ago
  67. af01bed Comment parsing: improve the fidelity of XML output for many block commands by Dmitri Gribenko · 12 years ago
  68. 15a2aa0 libclang: document the purpose of createNull() by Dmitri Gribenko · 12 years ago
  69. 17c1a24 libclang: add comments for CXStringFlag by Dmitri Gribenko · 12 years ago
  70. dc66adb libclang: itroduce cxstring::createEmpty() by Dmitri Gribenko · 12 years ago
  71. dad4c1a libclang: introduce cxstring::createNull() by Dmitri Gribenko · 12 years ago
  72. f843a58 [Comment parsing] Add support for recognizing by Fariborz Jahanian · 12 years ago
  73. 335078b Attempt to fix Windows build breakage. by Evgeniy Stepanov · 12 years ago
  74. 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
  75. 9c48d16 libclang: refactor CXStringPool: make it a class by Dmitri Gribenko · 12 years ago
  76. 8c718e7 libclang: type safety for CXTranslationUnitImpl::CIdx by Dmitri Gribenko · 12 years ago
  77. 337ee24 libclang: type safety for CXTranslationUnitImpl::FormatContext by Dmitri Gribenko · 12 years ago
  78. e42e578 libclang: some type safety for CXTranslationUnitImpl's internals by Dmitri Gribenko · 12 years ago
  79. 5694feb libclang: factor out the frequent pattern static_cast<ASTUnit *>(TU->TUData) by Dmitri Gribenko · 12 years ago
  80. 404628c libclang: make getCursorParentDecl() return 'const Decl *' by Dmitri Gribenko · 12 years ago
  81. 7d91438 libclang: change getCursorAttr() to return 'const Attr *' by Dmitri Gribenko · 12 years ago
  82. ff74f96 libclang: make getCursorStmt() and getCursorExpr() return const pointers by Dmitri Gribenko · 12 years ago
  83. db84e7a [libclang] Introduce clang_getFileUniqueID which returns a struct by Argyrios Kyrtzidis · 12 years ago
  84. e22339c libclang: change return type of getCursorDecl() to 'const Decl *' by Dmitri Gribenko · 12 years ago
  85. e4ea879 Remove uneeded casts by Dmitri Gribenko · 12 years ago
  86. 6965266 Explicitly cast away the const-ness instead of doing it implicitly. by Bill Wendling · 12 years ago
  87. ccdfdd7 Explicitly cast away the const-ness instead of doing it implicitly. by Bill Wendling · 12 years ago
  88. e6b9d80 Implement OpenCL event_t as Clang builtin type, including event_t related OpenCL restrictions (OpenCL 1.2 spec 6.9) by Guy Benyei · 12 years ago
  89. b3ce357 update to use the new BitcodeCursor readRecord that takes a StringRef blob parameter, by Chris Lattner · 12 years ago
  90. d47afb9 Nuke SetUpBuildDumpLog. by Sean Silva · 12 years ago
  91. e485f07 random tidying by Chris Lattner · 12 years ago
  92. 2815bc9 update header comment. by Chris Lattner · 12 years ago
  93. ac179ca this depends on the bitcode reader, since it is using it. by Chris Lattner · 12 years ago
  94. b1ba0ef Re-sort all the headers. Lots of regressions have crept in here. by Chandler Carruth · 12 years ago
  95. d7bf4a4 [libclang] In clang_reparseTranslationUnit_Impl, move the check whether TU is by Argyrios Kyrtzidis · 12 years ago
  96. 93cf969 [libclang] In clang_getCursorType, don't crash if the translation unit is not by Argyrios Kyrtzidis · 12 years ago
  97. 041e6aa Fix Casting by David Greene · 12 years ago
  98. 3cfa532 Fix Casting by David Greene · 12 years ago
  99. 527ce9f Fix Casting by David Greene · 12 years ago
  100. 61eacf0 Fix Casting by David Greene · 12 years ago