1. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  2. 2de41c9 c-index-test: Diagnose parse / completion failures in -code-completion-at=. by Daniel Dunbar · 14 years ago
  3. 43f331d c-index-test: As with reparse, only honor remapped false during the code by Daniel Dunbar · 14 years ago
  4. 653a55f Fix a c-index-test leak with file remapping by Douglas Gregor · 14 years ago
  5. c8a6180 c-index-test: Change -test-load-source-repase to only use remapped files for the by Daniel Dunbar · 14 years ago
  6. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 14 years ago
  7. 87c08a5 Implement caching of code-completion results for macro definitions by Douglas Gregor · 14 years ago
  8. 1999844 Add an options parameter to clang_saveTranslationUnit, because we'll want it later by Douglas Gregor · 14 years ago
  9. 7ae2faa Implement clang_saveTranslationUnit(), which saves a translation unit by Douglas Gregor · 14 years ago
  10. e1e13bf Add a (currently unused) "options" parameter to by Douglas Gregor · 14 years ago
  11. b1c031b Instead of having a specific CXTranslationUnit_* option flag for by Douglas Gregor · 14 years ago
  12. d91de2b Fix mixed declarations and code warning. by Daniel Dunbar · 14 years ago
  13. df95a13 Use precompiled preambles for in-process code completion. by Douglas Gregor · 14 years ago
  14. cee235c Give clang_codeCompleteAt() an "options" parameter, and add a new by Douglas Gregor · 14 years ago
  15. 1abc6bc Add code-completion support directly to ASTUnit, which performs code by Douglas Gregor · 14 years ago
  16. 3ce9e7d Add clang_isPODType() for querying if the CXType is POD. Implements <rdar://problem/8250669>. by Ted Kremenek · 14 years ago
  17. 6be2a22 Fix an apparent bug. by Dan Gohman · 14 years ago
  18. 45ba9a1 Start removing the use of smart pointers from the Parse/Sema by Douglas Gregor · 14 years ago
  19. 44c181a Basic plumbing for generating a precompiled preamble for an by Douglas Gregor · 14 years ago
  20. 53513d2 This was still complaining about the length of the string. I've broken it here by Chandler Carruth · 14 years ago
  21. caf4bd3 Slip up long string literal by Douglas Gregor · 14 years ago
  22. abc563f Introduce a new libclang API, clang_reparseTranslationUnit(), which by Douglas Gregor · 14 years ago
  23. 1982c18 Add a -code-completion-timing= mode to c-index-test, so that we can by Douglas Gregor · 14 years ago
  24. e1403d2 Silence warning about C++-style comments. by Benjamin Kramer · 14 years ago
  25. 9a14084 Add CXType support for querying the return type of Objective-C methods. This is done by by Ted Kremenek · 14 years ago
  26. 04c3cf3 Add CXType support for FunctionNoProto and FunctionProto types. This includes adding a new by Ted Kremenek · 14 years ago
  27. c9f362d Makefiles: Remove unnecessary early include of Makefile.config. by Daniel Dunbar · 14 years ago
  28. c4dec1c Makefiles: Set Clang CPP compiler flags in a single location, instead of scattered throughout the project Makefiles. by Daniel Dunbar · 14 years ago
  29. afed099 Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. by Daniel Dunbar · 14 years ago
  30. 12e1313 Introduce priorities into the code-completion results. by Douglas Gregor · 14 years ago
  31. 8e0ac17 Add CXType and an initial set of supporting functions to libclang. This exposes details of by Ted Kremenek · 14 years ago
  32. f51f20f Rename 'CIndex' to 'libclang', since it has basically become our stable public by Daniel Dunbar · 14 years ago
  33. 25cf7b4 Move include installation steps to better location, inside each include dir instead of at the top-level. by Daniel Dunbar · 14 years ago
  34. e542f77 Fix USRs for 'extern' variables declaration in functions/method bodies. by Ted Kremenek · 14 years ago
  35. e74ef12 Rework USR generation for symbols with no linkage. Many of the USRs are now shortened, by Ted Kremenek · 14 years ago
  36. f7b714d Add c-index-test support for printing USRs. by Ted Kremenek · 14 years ago
  37. c2a2b3c c-index-test's printing of linkage was completely broken, as was the by Douglas Gregor · 14 years ago
  38. 3bed527 Add '-test-print-linkage-source' option to c-index-test by Ted Kremenek · 14 years ago
  39. 274f190 Rework the CIndex API for displaying diagnostics. Instead of printing by Douglas Gregor · 15 years ago
  40. 473d701 Simplify the CIndex fix-it API, now that we have half-open CXSourceRanges. by Douglas Gregor · 15 years ago
  41. 0a812cf Re-apply my diagnostics-capture patch for CIndex, with some tweaks to by Douglas Gregor · 15 years ago
  42. 436f3f0 Revert my CIndex diagnostic changes (r96603, 96606, 96607), which were by Douglas Gregor · 15 years ago
  43. b9c8a24 Introduce debugging/testing hook clang_enableStackTraces() into by Douglas Gregor · 15 years ago
  44. b271071 Resurrect the displayDiagnostics parameter to clang_createIndex(), and by Douglas Gregor · 15 years ago
  45. 4c58923 Introduce CIndex API functions for displaying a diagnostic, with some by Douglas Gregor · 15 years ago
  46. a88084b Rework how CIndex handles diagnostics. Rather than using a callback, by Douglas Gregor · 15 years ago
  47. 2ef6f8f Convert clang_getCompletionChunkText() to return a CXString. by Ted Kremenek · 15 years ago
  48. e68fff6 Change clang_getCursorKindSpelling() to return a CXString by Ted Kremenek · 15 years ago
  49. 7484407 Change clang_getFileName() to return a 'CXString' instead of 'const char *'. by Ted Kremenek · 15 years ago
  50. 9715082 c-index-test: Pass appropriate client data. by Daniel Dunbar · 15 years ago
  51. d52864b CIndex: Switch CXSourceRange to proper half-open intervals. by Daniel Dunbar · 15 years ago
  52. 8f0bf81 c-index-test: Unify and always print half-open extents. by Daniel Dunbar · 15 years ago
  53. 2389eff c-index-test: Simplify file scanning code. by Daniel Dunbar · 15 years ago
  54. 51b058c c-index-test: Unify syntax for printing extents. Yes, there were 4. by Daniel Dunbar · 15 years ago
  55. 020a095 Attempt to always dispose of the CXIndex object in c-index-test. by Ted Kremenek · 15 years ago
  56. b1ffee6 c-index-test: Add "none" filter, useful for performance testing. by Daniel Dunbar · 15 years ago
  57. a3890ba Clean up the CIndex interface to diagnostic ranges. Thanks, Daniel! by Douglas Gregor · 15 years ago
  58. 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 15 years ago
  59. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  60. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  61. 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
  62. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  63. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  64. ce2ae88 Add 'PostVisitTU' callback hook to 'perform_test_load()' to allow a special callback after the translation unit has been loaded (and streamed). by Ted Kremenek · 15 years ago
  65. e3ee02a Allow the 'visitor' argument to 'perform_test_load()' to be NULL. The by Ted Kremenek · 15 years ago
  66. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  67. 0bb46d2 -fno-rtti is now the default. by Chris Lattner · 15 years ago
  68. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  69. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 15 years ago
  70. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 15 years ago
  71. e5b72ba Switch c-index-test from clang_loadDeclaration() and by Douglas Gregor · 15 years ago
  72. 1db19de Rework the CXSourceLocation and CXSourceRange APIs. They are now by Douglas Gregor · 15 years ago
  73. b699866 Eliminate cursor kinds used to express definitions. Instead, provide by Douglas Gregor · 15 years ago
  74. c5d1e93 Introduce clang_getCursorReferenced, to get a cursor pointing at the by Douglas Gregor · 15 years ago
  75. a7bde20 Implement clang_getCursorExtent, which provides a source range for the by Douglas Gregor · 15 years ago
  76. 98258af Introduce clang_getCursorLocation(), which supercedes by Douglas Gregor · 15 years ago
  77. 3c7313d Clean up the CIndex API slightly. by Douglas Gregor · 15 years ago
  78. cf84aa4 Replace clang_getDeclUSR() with clang_getCursorUSR(). Also remove printing 'contexts' from c-index-test output; it wasn't helpful and was extremely brittle. by Ted Kremenek · 15 years ago
  79. 70ee542 Remove TranslateKind and centralize Decl -> CXCursorKind in GetCursorKind(). This revealed a bunch of inconsistencies in how CXCursorKinds were being computed. by Ted Kremenek · 15 years ago
  80. 283cae3 Make CXCursor's data opaque. by Douglas Gregor · 15 years ago
  81. f2c87bd Add -cursor-at=file:line:column command line option to c-index-test, by Douglas Gregor · 15 years ago
  82. 7d40562 Add USR printing modes to c-index-test. by Ted Kremenek · 15 years ago
  83. 9827156 Make 'CXTranslationUnitIterator' an argument to perform_test_load(), by Ted Kremenek · 15 years ago
  84. 01dfea0 Improve code completion by introducing patterns for the various C and by Douglas Gregor · 15 years ago
  85. 9096a20 Add FileCheck prefix to another location in the output of c-index-test. by Ted Kremenek · 15 years ago
  86. 377adb6 Remove unused variables. by Ted Kremenek · 15 years ago
  87. fe6fd3d Add C API hook 'clang_getDeclExtent()', which returns the source extent of a declaration. This implements <rdar://problem/7280072>. by Ted Kremenek · 15 years ago
  88. ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
  89. ec6762c Change clang_codeComplete API to return the results in a structure on by Douglas Gregor · 15 years ago
  90. 4da689a Test for errors during fread() inside c-index-test and handle them by Chandler Carruth · 15 years ago
  91. 8506dde Switch clang_createTranslationUnitFromSourceFile to use ASTUnit::LoadFromCommandLine. by Daniel Dunbar · 15 years ago
  92. 467f030 Normalize CIndex/c-index-test/index-test link lines in the hopes it will fix by Daniel Dunbar · 15 years ago
  93. 735df88 Extend the CIndex code-completion API to perform code completion by Douglas Gregor · 15 years ago
  94. d378181 Fix relative ordering of Analyis library. by Daniel Dunbar · 15 years ago
  95. 521bf9c Add ASTUnit::LoadFromCompilerInvocation, which does what it says. by Daniel Dunbar · 15 years ago
  96. 625e4ef c-index-test: Split "function scanning" behavior into its own "filter" -- its by Daniel Dunbar · 15 years ago
  97. ada487d Add c-index-test -test-load-source, which loads the translation unit from a source file (and other command line arguments). by Daniel Dunbar · 15 years ago
  98. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  99. a9933b9 fgetln is a BSDism; replace it with more portable code. by Benjamin Kramer · 15 years ago
  100. 1c6da17 Add c-index-test mode "-test-file-scan", which scans a source file and calls clang_getCursor() on every character. by Ted Kremenek · 15 years ago