1. 27a31fe Revert r118492, which didn't update all of its tests accordingly by Douglas Gregor · 14 years ago
  2. b627871 Introduce clang_getSpellingLocation() into libclang, to provide the by Douglas Gregor · 14 years ago
  3. 1ddb02c Clean up some of the comments in Index.h (e.g., misnamed or extra parameters in comments). by Ted Kremenek · 14 years ago
  4. 995aaf9 libclang: Add clang_executeOnThread, for use in c-index-test (and only there, by Daniel Dunbar · 14 years ago
  5. 3387c65 Added cursor visitor that takes a block as an argument. Tested compiling by David Chisnall · 14 years ago
  6. 99ba202 Introduce libclang-level options for C++ precompiled preambles, by Douglas Gregor · 14 years ago
  7. ecdcb88 Extend the preprocessing record and libclang with support for by Douglas Gregor · 14 years ago
  8. 83889a7 Add clang_getLocationForOffset() to libclang, for gives a source location from a character index into a file. by David Chisnall · 14 years ago
  9. e0cc52e Eliminate clang_codeComplete(). libclang clients should be using the by Douglas Gregor · 14 years ago
  10. b10daed Eliminate clang_setUseExternalASTGeneration() from libclang. Between by Douglas Gregor · 14 years ago
  11. 358559d Introduce a new libclang function, clang_getCursorDisplayName(), which by Douglas Gregor · 14 years ago
  12. 9f59234 Extend libclang with an API that determines, given a C++ virtual by Douglas Gregor · 14 years ago
  13. 2be5bc9 Implement libclang API functions for retrieving the lexical and by Douglas Gregor · 14 years ago
  14. 1f60d9e Introduce a new kind of cursor into libclang, which covers a reference by Douglas Gregor · 14 years ago
  15. 36897b0 Add libclang support for label statements, gotos, and taking the by Douglas Gregor · 14 years ago
  16. a67e03f Teach libclang to walk the base and member initializers of a by Douglas Gregor · 14 years ago
  17. e0329ac Introduce a new libclang function, by Douglas Gregor · 14 years ago
  18. 7e24256 Implement libclang support for using declarations. Clang actually uses by Douglas Gregor · 14 years ago
  19. 2ef6944 Make it clear that libclang does not modify the command-line arguments by Douglas Gregor · 14 years ago
  20. 0a35bce Implement libclang support for using directives (cursor + visitation + by Douglas Gregor · 14 years ago
  21. 6931900 Add libclang support for namespace aliases (visitation + USRs) along by Douglas Gregor · 14 years ago
  22. 49f6f54 Add a new libclang function clang_getTemplateCursorKind(), which by Douglas Gregor · 14 years ago
  23. 0b36e61 Extend libclang with a new cursor kind that indicates a reference to a by Douglas Gregor · 14 years ago
  24. 74dbe64 Add libclang support for class template partial specializations, by Douglas Gregor · 14 years ago
  25. 39d6f07 Add a libclang cursor kind, visitation support and USR support for C++ by Douglas Gregor · 14 years ago
  26. fe72e9c Implement basic support for indexing function templates in by Douglas Gregor · 14 years ago
  27. 01829d3 libclang indexing support for C++ constructors, destructors, and by Douglas Gregor · 14 years ago
  28. 3064ef9 Implement CXCursor support for walking C++ base specifiers. This includes adding the API hooks clang_isVirtualBase() and clang_getCXXAccessSpecifier() to query properties of the base specifier. by Ted Kremenek · 14 years ago
  29. ad72f4d Fix copy-paste in doxygen comment. by Ted Kremenek · 14 years ago
  30. 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  31. 1cb237f Revert r112149, "Move the sorting of code-completion results out of the main by Daniel Dunbar · 14 years ago
  32. be13afe Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  33. 95f3355 Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes. by Ted Kremenek · 14 years ago
  34. 076c22a Silence warning about C++-style comments. by Peter Collingbourne · 14 years ago
  35. 58ddb60 Introduce new libclang API functions that determine the availability by Douglas Gregor · 14 years ago
  36. 1999844 Add an options parameter to clang_saveTranslationUnit, because we'll want it later by Douglas Gregor · 14 years ago
  37. 7ae2faa Implement clang_saveTranslationUnit(), which saves a translation unit by Douglas Gregor · 14 years ago
  38. e1e13bf Add a (currently unused) "options" parameter to by Douglas Gregor · 14 years ago
  39. b1c031b Instead of having a specific CXTranslationUnit_* option flag for by Douglas Gregor · 14 years ago
  40. df95a13 Use precompiled preambles for in-process code completion. by Douglas Gregor · 14 years ago
  41. cee235c Give clang_codeCompleteAt() an "options" parameter, and add a new by Douglas Gregor · 14 years ago
  42. 1abc6bc Add code-completion support directly to ASTUnit, which performs code by Douglas Gregor · 14 years ago
  43. 3ce9e7d Add clang_isPODType() for querying if the CXType is POD. Implements <rdar://problem/8250669>. by Ted Kremenek · 14 years ago
  44. 44c181a Basic plumbing for generating a precompiled preamble for an by Douglas Gregor · 14 years ago
  45. 5a43021 Introduce a new C API function, clang_parseTranslationUnit(), which by Douglas Gregor · 14 years ago
  46. abc563f Introduce a new libclang API, clang_reparseTranslationUnit(), which by Douglas Gregor · 14 years ago
  47. 9a14084 Add CXType support for querying the return type of Objective-C methods. This is done by by Ted Kremenek · 14 years ago
  48. 04c3cf3 Add CXType support for FunctionNoProto and FunctionProto types. This includes adding a new by Ted Kremenek · 14 years ago
  49. a7f1c00 Remove clang_isFromMainFile(). It doesn't work correctly with CXDiagnostics, and we shouldn't by Ted Kremenek · 14 years ago
  50. 12e1313 Introduce priorities into the code-completion results. by Douglas Gregor · 14 years ago
  51. 47e8e39 Add libclang function 'clang_isFromMainFile()' (which just wraps SourceManager::isFromMainFile()). by Ted Kremenek · 14 years ago
  52. 50aa6ac Move CXCursor_FirstDecl definition later to make the results more readable in the debugger. by Ted Kremenek · 14 years ago
  53. 2bb106e Remove clang_isDeclarationADefinition() since its functionality is already provided by clang_isCursorDefinition(). by Ted Kremenek · 14 years ago
  54. 857e918 Add clang support for IBOutletCollection. by Ted Kremenek · 14 years ago
  55. b12903e Add function 'clang_isTagDeclDefinition()' to allow clients of libclang to distinguish between by Ted Kremenek · 14 years ago
  56. 9ada39a Add libclang function 'clang_CXXMethod_isStatic' to query of a C++ method by Ted Kremenek · 14 years ago
  57. 8e0ac17 Add CXType and an initial set of supporting functions to libclang. This exposes details of by Ted Kremenek · 14 years ago
  58. a0536d8 Add CXCursor support for LinkageSpecDecl (e.g., 'extern "C"'). by Ted Kremenek · 14 years ago
  59. 8f06e0e Add CXCursor support for C++ namespaces. by Ted Kremenek · 14 years ago
  60. 6cd1e7c Make CXLanguage_Invalid the first enum value (with '0' as its value) in CXLanguageKind. by Ted Kremenek · 14 years ago
  61. 8bd5a69 Add cursor kind for C++ methods. by Ted Kremenek · 14 years ago
  62. 45e1dae Add 'clang_getCursorLanguage' to return the "language" of the AST element (e.g., distinguish between C and Objective-C language features). Currently this only returns results for declarations. by Ted Kremenek · 14 years ago
  63. c6f530d Update doxygen comments about lifetime requirements of CXUnsaveFile data arguments. by Ted Kremenek · 14 years ago
  64. 1ee6cad Add CIndex support for blocks. by Ted Kremenek · 14 years ago
  65. ebfa339 Make the CIndex API more resilient to being used on invalid code. by Ted Kremenek · 14 years ago
  66. 572feb2 Expose macro definitions as CIndex cursors. These can still only be by Douglas Gregor · 14 years ago
  67. 4807231 More token-annotation experimentation, preprocessing the annotated by Douglas Gregor · 14 years ago
  68. 9f1e3ff Experimental stab at using relexing to identify preprocessor by Douglas Gregor · 14 years ago
  69. 66ccaec Rename clang_constructUSR_ObjCategory to clang_constructUSR_ObjCCategory. by Ted Kremenek · 14 years ago
  70. 896b70f Implement several CIndex functions for constructing USRs from C-strings instead of AST elements. by Ted Kremenek · 14 years ago
  71. ad6eff6 Implement clang_isUnexposed(), a predicate function to simplify filtering out by Ted Kremenek · 14 years ago
  72. 16b4259 Add clang_getCursorLinkage(), which returns the by Ted Kremenek · 14 years ago
  73. c8dfe5e When given unsaved files in clang_createTranslationUnitFromSourceFile, by Douglas Gregor · 14 years ago
  74. 274f190 Rework the CIndex API for displaying diagnostics. Instead of printing by Douglas Gregor · 15 years ago
  75. 473d701 Simplify the CIndex fix-it API, now that we have half-open CXSourceRanges. by Douglas Gregor · 15 years ago
  76. 0a812cf Re-apply my diagnostics-capture patch for CIndex, with some tweaks to by Douglas Gregor · 15 years ago
  77. 436f3f0 Revert my CIndex diagnostic changes (r96603, 96606, 96607), which were by Douglas Gregor · 15 years ago
  78. b9c8a24 Introduce debugging/testing hook clang_enableStackTraces() into by Douglas Gregor · 15 years ago
  79. b271071 Resurrect the displayDiagnostics parameter to clang_createIndex(), and by Douglas Gregor · 15 years ago
  80. 4c58923 Introduce CIndex API functions for displaying a diagnostic, with some by Douglas Gregor · 15 years ago
  81. a88084b Rework how CIndex handles diagnostics. Rather than using a callback, by Douglas Gregor · 15 years ago
  82. e77f443 Start adding cursor kinds for attributes, with first exposing by Ted Kremenek · 15 years ago
  83. 7157018 Fix comment. by Daniel Dunbar · 15 years ago
  84. 2ef6f8f Convert clang_getCompletionChunkText() to return a CXString. by Ted Kremenek · 15 years ago
  85. e68fff6 Change clang_getCursorKindSpelling() to return a CXString by Ted Kremenek · 15 years ago
  86. 7484407 Change clang_getFileName() to return a 'CXString' instead of 'const char *'. by Ted Kremenek · 15 years ago
  87. d52864b CIndex: Switch CXSourceRange to proper half-open intervals. by Daniel Dunbar · 15 years ago
  88. a2a9d6e Make the following functions thread-safe but having them return an std::string that is reconstructed by Ted Kremenek · 15 years ago
  89. a3890ba Clean up the CIndex interface to diagnostic ranges. Thanks, Daniel! by Douglas Gregor · 15 years ago
  90. 0087e1a Note that a CXIndex cannot be destroyed until after all of its translation units have been destroyed by Douglas Gregor · 15 years ago
  91. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  92. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  93. 16b55a7 Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk the set of files included in a translation unit via the C API. by Ted Kremenek · 15 years ago
  94. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  95. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  96. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  97. e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
  98. fd9f234 Update comment. by Daniel Dunbar · 15 years ago
  99. a57259e Tweak clang_visitChildren comment. by Daniel Dunbar · 15 years ago
  100. 1efcf3d Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. by Daniel Dunbar · 15 years ago