1. 4c5fa42 Revert r163099 per chandlerc's request. by Joao Matos · 12 years ago
  2. ac06745 Added a new cursor for SEHLeaveStmt to libclang. by Joao Matos · 12 years ago
  3. d579dd5 [libclang] The annotation of tokens operation visits statement nodes code-recursively. by Argyrios Kyrtzidis · 12 years ago
  4. c178d76 [libclang] When determining the cursor via a location, ignore synthesized ivars otherwise by Argyrios Kyrtzidis · 12 years ago
  5. df5faf5 [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. by Chad Rosier · 12 years ago
  6. 70517ca Fix a bunch of -Wdocumentation warnings. by Dmitri Gribenko · 12 years ago
  7. f50555e Attaching comments to declarations: find comment attached to any redeclaration by Dmitri Gribenko · 12 years ago
  8. ae99b75 Add libclang APIs to walk comments ASTs and an API to convert a comment to an by Dmitri Gribenko · 12 years ago
  9. b619e78 Move clang_Cursor_getBriefCommentText implementation under `extern "C"'. by Dmitri Gribenko · 12 years ago
  10. ff39896 Introduce a flag in SourceManager to treat non-system source files by Argyrios Kyrtzidis · 12 years ago
  11. d99ef53 Add a new libclang completion API to get brief documentation comment that is by Dmitri Gribenko · 12 years ago
  12. 8376f59 Remove redundant check. by Dmitri Gribenko · 12 years ago
  13. 2d44d77 Implement a lexer for structured comments. by Dmitri Gribenko · 12 years ago
  14. aa0cd85 Structured comment parsing, first step. by Dmitri Gribenko · 12 years ago
  15. 8cd64b4 Etch out the code path for MS-style inline assembly. by Chad Rosier · 12 years ago
  16. 135bf8e [libclang] When doing the cursor visitation make sure declarations by Argyrios Kyrtzidis · 12 years ago
  17. 374a00b [libclang] Don't crash when saving a PCH from a prefix header by Argyrios Kyrtzidis · 12 years ago
  18. cc88966 Introduce a new libclang API to determine the platform availability of by Douglas Gregor · 13 years ago
  19. 8e5900c clang_getCursorLexicalParent should return a translation unit cursor for declarations at the global scope, from Evan P. Fixes PR9083. by Douglas Gregor · 13 years ago
  20. bbf66ca Reduce malloc() traffic of clang_getOverridenCursors() by using a pool of SmallVector<CXCursor> objects by Ted Kremenek · 13 years ago
  21. a9d45a3 [libclang] Make sure that when we have multiple @class references in the same line, by Argyrios Kyrtzidis · 13 years ago
  22. 9482a18 [libclang] Spelling range for a objc category should the category name range, not the class one. by Argyrios Kyrtzidis · 13 years ago
  23. 6a91d38 Added a flag to the parser to skip method bodies. by Erik Verbruggen · 13 years ago
  24. eba8cd5 [libclang] In cxloc::translateSourceRange make sure to handle locations in macro arguments by Argyrios Kyrtzidis · 13 years ago
  25. 9793428 [libclang] Fix "error: conflicts with new declaration with ‘C’ linkage" that gcc by Argyrios Kyrtzidis · 13 years ago
  26. e722ed6 [libclang] If displayDiagnostics is set (when calling clang_createIndex), make sure to by Argyrios Kyrtzidis · 13 years ago
  27. 15f4c98 [libclang] For clang_getOverriddenCursors make sure to report overridden objc methods by Argyrios Kyrtzidis · 13 years ago
  28. 34ebe1e [libclang] Introduce clang_Cursor_getObjCSelectorIndex() function. by Argyrios Kyrtzidis · 13 years ago
  29. ba1da14 [libclang] Introduce clang_Cursor_getSpellingNameRange(). by Argyrios Kyrtzidis · 13 years ago
  30. b085d89 Add info to ObjCPropertyRefExpr to indicate whether the dot syntax property by Argyrios Kyrtzidis · 13 years ago
  31. d046952 [libclang] A MemberRefExpr cursor for a property dot syntax should have as by Argyrios Kyrtzidis · 13 years ago
  32. 81b5ac3 [libclang] Rename setBackGroundPriority -> setThreadBackgroundPriority. by Argyrios Kyrtzidis · 13 years ago
  33. 8e7c48a [libclang] Fix gcc error. by Argyrios Kyrtzidis · 13 years ago
  34. fdc1795 [libclang] Introduce options to control the priority for the threads by Argyrios Kyrtzidis · 13 years ago
  35. 142bcb5 [libclang] For clang_saveTranslationUnit, if the AST to save has invalid nodes by Argyrios Kyrtzidis · 13 years ago
  36. ccc6f36 [libclang] For a CXCursor_ObjCInstanceMethodDecl/CXCursor_ObjCClassMethodDecl cursor, by Argyrios Kyrtzidis · 13 years ago
  37. 0822c5f [libclang] Have clang_getCursorExtent() return the range of the main file when by Argyrios Kyrtzidis · 13 years ago
  38. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  39. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 13 years ago
  40. 96a0014 [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). by Daniel Dunbar · 13 years ago
  41. bef35c9 [PCH] Mark a PCH file with a flag to indicate if the serialized AST had by Argyrios Kyrtzidis · 13 years ago
  42. b3f7542 And libclang cursor/indexing support for new Objective-C NSArray/NSDictionary/NSNumber literals. by Ted Kremenek · 13 years ago
  43. b2c60b0 Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h. by Argyrios Kyrtzidis · 13 years ago
  44. d45d361 Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h" by Argyrios Kyrtzidis · 13 years ago
  45. e1d4330 Don't record nested macro expansions in the preprocessing record, by Argyrios Kyrtzidis · 13 years ago
  46. 4ca8ac2 Implement a new type trait __is_trivially_constructible(T, Args...) by Douglas Gregor · 13 years ago
  47. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  48. 2aed8b8 Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself."" by Sebastian Redl · 13 years ago
  49. 1548d14 Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself." by Sebastian Redl · 13 years ago
  50. 5f688f4 Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself. by Sebastian Redl · 13 years ago
  51. 011d8b9 Implement indexing support for lambdas in libclang (both kinds), as by Douglas Gregor · 13 years ago
  52. 36d5927 drop more llvm:: prefixes on SmallString<> by Dylan Noblesmith · 13 years ago
  53. 1e4c01b drop more llvm:: prefixes on OwningPtr<> by Dylan Noblesmith · 13 years ago
  54. a59d20b Print NamedDecls directly to a raw_ostream where possible. by Benjamin Kramer · 13 years ago
  55. 1836db0 [libclang] Stick to the silly notion that a forward class/protocol by Argyrios Kyrtzidis · 13 years ago
  56. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 13 years ago
  57. c15707d [libclang] In clang::getCursorKindForDecl() don't return "UnexposedDecl" by Argyrios Kyrtzidis · 13 years ago
  58. 98c16b8 [libclang] When calling clang_getCursorReferenced on a class or protocol by Argyrios Kyrtzidis · 13 years ago
  59. 7530c03 Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) by David Blaikie · 13 years ago
  60. bd9482d Eliminate ObjCForwardProtocolDecl, which is redundant now that by Douglas Gregor · 13 years ago
  61. 5e2a1ff Move the data that corresponds to the definition of a protocol into a by Douglas Gregor · 13 years ago
  62. 375bb14 Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl by Douglas Gregor · 13 years ago
  63. acca411 [libclang] In visitPreprocessedEntitiesInRange we are interested in a file region by Argyrios Kyrtzidis · 13 years ago
  64. 7723fec Keep track of all declarations of an Objective-C class (both forward by Douglas Gregor · 13 years ago
  65. db7a800 [libclang] Give up on using write(); hopefully unbreaks mingw build. by Argyrios Kyrtzidis · 13 years ago
  66. 53ba956 Revert r146646 that was a mistake, and make the intended change in the right file. by Argyrios Kyrtzidis · 13 years ago
  67. fa39f5b [libclang] Install a fatal error handler that will call abort() instead of exit() by Argyrios Kyrtzidis · 13 years ago
  68. af76472 Eliminate the vistigial ObjCClassDecl::ObjCClassRef, and inline its by Douglas Gregor · 13 years ago
  69. 16ed0e6 [libclang] Add defensive checks to make sure we don't try to dereference by Argyrios Kyrtzidis · 13 years ago
  70. 84b7964 [libclang] API enhancements by Joe Groff! by Argyrios Kyrtzidis · 13 years ago
  71. d977e6b [libclang] Fix infinite loop when doing visitation of an OpaqueValueExpr. by Argyrios Kyrtzidis · 13 years ago
  72. dcbb2fb [libclang] Allow indexing/get-cursor/etc. for the exception variable in a C++ catch. by Argyrios Kyrtzidis · 13 years ago
  73. 15de72c Introduce a module import declaration, so that we properly represent, e.g., by Douglas Gregor · 13 years ago
  74. b49e728 [libclang] Make clang_findReferencesInFile also work on macros (find all expansions/definition by Argyrios Kyrtzidis · 13 years ago
  75. ed8bef4 [libclang] Protect against the declaration's SourceRange being invalid by Argyrios Kyrtzidis · 13 years ago
  76. c14a03d [libclang] Fix operations (token annotation, getting cursor, etc.) with a file region by Argyrios Kyrtzidis · 13 years ago
  77. 03ee2dd [libclang] Make clang_annotateTokens use "file-targeted" deserialization and avoid by Argyrios Kyrtzidis · 13 years ago
  78. e2079cf [libclang] Make clang_findReferencesInFile use "file-targeted" deserialization and avoid by Argyrios Kyrtzidis · 13 years ago
  79. 2407712 Fix potential memory leak for clients of clang_getOverriddenCursors(). If the number of overriden cursors is 0, do not allocate an array of CXCursors. This fixes a memory leak in c-index-test, and clients who use this API in a similar way. by Ted Kremenek · 13 years ago
  80. 1532217 serialized diagnostics: implement full deserialization of clang diagnostics via the libclang API. by Ted Kremenek · 13 years ago
  81. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  82. e397bf1 [libclang] Move CursorVisitor to its own header. by Argyrios Kyrtzidis · 13 years ago
  83. ba98617 [libclang] Use CursorVisitor::Visit instead of invoking the visitor directly. by Argyrios Kyrtzidis · 13 years ago
  84. dfb332d [libclang] Add infrastructure to be able to only deserialize decls in a file region and by Argyrios Kyrtzidis · 13 years ago
  85. 76852c2 Rework the AST for the initializer of a delegating constructor, so by Douglas Gregor · 13 years ago
  86. 3ddef06 [libclang] Move implementation of functions for manipulation CXSourceLocations and CXSourceRanges into a separate file. by Ted Kremenek · 13 years ago
  87. e709846 [libclang] Rename VisitIncludedPreprocessingEntries -> VisitIncludedEntities by Argyrios Kyrtzidis · 13 years ago
  88. e7de9b4 Use LIBCLANG_NOTHREADS instead of CINDEXTEST_NOTHREADS inside libclang, by Argyrios Kyrtzidis · 13 years ago
  89. 8c4b47e [libclang] Check for environment variable CINDEXTEST_NOTHREADS in clang_reparseTranslationUnit. by Argyrios Kyrtzidis · 13 years ago
  90. ba0513d Implement support for dependent Microsoft __if_exists/__if_not_exists by Douglas Gregor · 13 years ago
  91. f226ff9 [PCH] When visiting preprocessed entities, make it possible to avoid deserializing by Argyrios Kyrtzidis · 13 years ago
  92. 2dde35b More metaprogramming with builtin types. by John McCall · 13 years ago
  93. c705d25 [libclang] Make sure we do a correct invalid check in clang_getExpansionLocation. by Argyrios Kyrtzidis · 13 years ago
  94. e0a22d0 Macro metaprogramming for builtin types. by John McCall · 13 years ago
  95. 4e7064f [libclang] Introduce a new high level API for indexing clients that assumes by Argyrios Kyrtzidis · 13 years ago
  96. 0ddaeb9 Add a new placeholder type to represent "unbridged" casts in ARC. by John McCall · 13 years ago
  97. aa4a99b Provide half floating point support as a storage only type. by Anton Korobeynikov · 13 years ago
  98. 5f1c822 Allow for annotate attributes after access specifiers. When such by Erik Verbruggen · 13 years ago
  99. 9049cf6 [libclang] Make MakeCXTranslationUnit usable outside CIndex.cpp. by Argyrios Kyrtzidis · 13 years ago
  100. 57165be [libclang] Do ConcurrencyCheck for clang_getLocation as well. by Argyrios Kyrtzidis · 13 years ago