1. e542f77 Fix USRs for 'extern' variables declaration in functions/method bodies. by Ted Kremenek · 14 years ago
  2. e74ef12 Rework USR generation for symbols with no linkage. Many of the USRs are now shortened, by Ted Kremenek · 14 years ago
  3. f7b714d Add c-index-test support for printing USRs. by Ted Kremenek · 14 years ago
  4. c2a2b3c c-index-test's printing of linkage was completely broken, as was the by Douglas Gregor · 14 years ago
  5. 3bed527 Add '-test-print-linkage-source' option to c-index-test by Ted Kremenek · 14 years ago
  6. 274f190 Rework the CIndex API for displaying diagnostics. Instead of printing by Douglas Gregor · 14 years ago
  7. 473d701 Simplify the CIndex fix-it API, now that we have half-open CXSourceRanges. by Douglas Gregor · 14 years ago
  8. 0a812cf Re-apply my diagnostics-capture patch for CIndex, with some tweaks to by Douglas Gregor · 14 years ago
  9. 436f3f0 Revert my CIndex diagnostic changes (r96603, 96606, 96607), which were by Douglas Gregor · 14 years ago
  10. b9c8a24 Introduce debugging/testing hook clang_enableStackTraces() into by Douglas Gregor · 14 years ago
  11. b271071 Resurrect the displayDiagnostics parameter to clang_createIndex(), and by Douglas Gregor · 14 years ago
  12. 4c58923 Introduce CIndex API functions for displaying a diagnostic, with some by Douglas Gregor · 14 years ago
  13. a88084b Rework how CIndex handles diagnostics. Rather than using a callback, by Douglas Gregor · 14 years ago
  14. 2ef6f8f Convert clang_getCompletionChunkText() to return a CXString. by Ted Kremenek · 14 years ago
  15. e68fff6 Change clang_getCursorKindSpelling() to return a CXString by Ted Kremenek · 14 years ago
  16. 7484407 Change clang_getFileName() to return a 'CXString' instead of 'const char *'. by Ted Kremenek · 14 years ago
  17. 9715082 c-index-test: Pass appropriate client data. by Daniel Dunbar · 14 years ago
  18. d52864b CIndex: Switch CXSourceRange to proper half-open intervals. by Daniel Dunbar · 14 years ago
  19. 8f0bf81 c-index-test: Unify and always print half-open extents. by Daniel Dunbar · 14 years ago
  20. 2389eff c-index-test: Simplify file scanning code. by Daniel Dunbar · 14 years ago
  21. 51b058c c-index-test: Unify syntax for printing extents. Yes, there were 4. by Daniel Dunbar · 14 years ago
  22. 020a095 Attempt to always dispose of the CXIndex object in c-index-test. by Ted Kremenek · 14 years ago
  23. b1ffee6 c-index-test: Add "none" filter, useful for performance testing. by Daniel Dunbar · 14 years ago
  24. a3890ba Clean up the CIndex interface to diagnostic ranges. Thanks, Daniel! by Douglas Gregor · 14 years ago
  25. 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 15 years ago
  26. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  27. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  28. 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
  29. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  30. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  31. 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
  32. e3ee02a Allow the 'visitor' argument to 'perform_test_load()' to be NULL. The by Ted Kremenek · 15 years ago
  33. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  34. 0bb46d2 -fno-rtti is now the default. by Chris Lattner · 15 years ago
  35. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  36. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 15 years ago
  37. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 15 years ago
  38. e5b72ba Switch c-index-test from clang_loadDeclaration() and by Douglas Gregor · 15 years ago
  39. 1db19de Rework the CXSourceLocation and CXSourceRange APIs. They are now by Douglas Gregor · 15 years ago
  40. b699866 Eliminate cursor kinds used to express definitions. Instead, provide by Douglas Gregor · 15 years ago
  41. c5d1e93 Introduce clang_getCursorReferenced, to get a cursor pointing at the by Douglas Gregor · 15 years ago
  42. a7bde20 Implement clang_getCursorExtent, which provides a source range for the by Douglas Gregor · 15 years ago
  43. 98258af Introduce clang_getCursorLocation(), which supercedes by Douglas Gregor · 15 years ago
  44. 3c7313d Clean up the CIndex API slightly. by Douglas Gregor · 15 years ago
  45. 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
  46. 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
  47. 283cae3 Make CXCursor's data opaque. by Douglas Gregor · 15 years ago
  48. f2c87bd Add -cursor-at=file:line:column command line option to c-index-test, by Douglas Gregor · 15 years ago
  49. 7d40562 Add USR printing modes to c-index-test. by Ted Kremenek · 15 years ago
  50. 9827156 Make 'CXTranslationUnitIterator' an argument to perform_test_load(), by Ted Kremenek · 15 years ago
  51. 01dfea0 Improve code completion by introducing patterns for the various C and by Douglas Gregor · 15 years ago
  52. 9096a20 Add FileCheck prefix to another location in the output of c-index-test. by Ted Kremenek · 15 years ago
  53. 377adb6 Remove unused variables. by Ted Kremenek · 15 years ago
  54. 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
  55. ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
  56. ec6762c Change clang_codeComplete API to return the results in a structure on by Douglas Gregor · 15 years ago
  57. 4da689a Test for errors during fread() inside c-index-test and handle them by Chandler Carruth · 15 years ago
  58. 8506dde Switch clang_createTranslationUnitFromSourceFile to use ASTUnit::LoadFromCommandLine. by Daniel Dunbar · 15 years ago
  59. 467f030 Normalize CIndex/c-index-test/index-test link lines in the hopes it will fix by Daniel Dunbar · 15 years ago
  60. 735df88 Extend the CIndex code-completion API to perform code completion by Douglas Gregor · 15 years ago
  61. d378181 Fix relative ordering of Analyis library. by Daniel Dunbar · 15 years ago
  62. 521bf9c Add ASTUnit::LoadFromCompilerInvocation, which does what it says. by Daniel Dunbar · 15 years ago
  63. 625e4ef c-index-test: Split "function scanning" behavior into its own "filter" -- its by Daniel Dunbar · 15 years ago
  64. 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
  65. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  66. a9933b9 fgetln is a BSDism; replace it with more portable code. by Benjamin Kramer · 15 years ago
  67. 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
  68. 0d43519 Organize c-index-test into logic sections, and add section headers. by Ted Kremenek · 15 years ago
  69. f5d9c93 Clean up c-index-test command line usage a bit by requiring a "-test-load-tu" option when testing clang_loadTranslationUnit(). Running c-index-test without the correct arguments now also prints a useful summary of its correct usage. by Ted Kremenek · 15 years ago
  70. 9298cfc Have clang_getCursorSource() return NULL when the source location is invalid or refers to a built-in buffer. Implements <rdar://problem/7296243>. by Ted Kremenek · 15 years ago
  71. 88d2395 Improve c-index-test's parsing of the -code-completion-at=file:line:column argument by Douglas Gregor · 15 years ago
  72. ef0cef6 Introduce CXString type and associated functions clang_getCString() and clang_disposeString(). by Steve Naroff · 15 years ago
  73. d5a2089 C doesn't allow mixing declarations and statements, silly by Douglas Gregor · 15 years ago
  74. 3ac7385 Minor cleanup for CIndex-based code-completion: by Douglas Gregor · 15 years ago
  75. 4ee17ac Revert unintentional change to this file. by Daniel Dunbar · 15 years ago
  76. 4dc99f8 CIndex: Add temporary hack to leak memory instead of returning invalid pointers. by Daniel Dunbar · 15 years ago
  77. f8297f1 Fix some build warnings. by Daniel Dunbar · 15 years ago
  78. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  79. f96b524 Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>. by Steve Naroff · 15 years ago
  80. 2e06fc8 Changes for building as a Windows DLL by John Thompson · 15 years ago
  81. cab9882 Fixes a warning. by Fariborz Jahanian · 15 years ago
  82. fbcb2b7 Split clang_getCursor() into clang_getCursor() and clang_getCursorWithHint(). by Ted Kremenek · 15 years ago
  83. 6a6de8b Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searching). Without a 'relativeDecl', the algorithm is n-squared. For example, running the following command on 'Large.m' takes hours without a 'relatvieDecl'. by Steve Naroff · 15 years ago
  84. e56b4ba by Steve Naroff · 15 years ago
  85. 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
  86. 85f5468 Fix compiler warning: "ISO C90 forbids mixed declarations and code" by Ted Kremenek · 15 years ago
  87. 8ce88a4 Fix warning: 'warning: C++ style comments are not allowed in ISO C90' by Ted Kremenek · 15 years ago
  88. 0246575 Make CIndex and c-index-test a little bit more robust. The only by Douglas Gregor · 15 years ago
  89. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  90. e19944c Make sure temporary files get unlinked. by Steve Naroff · 15 years ago
  91. 9a3dcf2 Make sure that c-index-test links as a C++ executable by Douglas Gregor · 15 years ago
  92. f393c3b Fix C90 compile warning about mixed declarations and code. by Eric Christopher · 15 years ago
  93. 85e2db7 Add support for class and protocol references. by Steve Naroff · 15 years ago
  94. 699a07d Add clang_getDeclLine and clang_getDeclColumn by Steve Naroff · 15 years ago
  95. ff9e18c Add test for C-based indexing API, using FileCheck utility. by Steve Naroff · 15 years ago
  96. f7469a3 Some minor cleanups... by Steve Naroff · 15 years ago
  97. 4ade6d6 More work to enable more exhaustive testing of the indexing API. by Steve Naroff · 15 years ago
  98. 77128dd - clang_getCursor(): Replace asserts with error codes (CXCursor_InvalidFile, CXCursor_NoDeclFound). by Steve Naroff · 15 years ago
  99. 8b26cbd Make sure ObjCInterfaceDecl's that are forward declared always contain a valid location. by Steve Naroff · 15 years ago
  100. 9efa767 Implement accessors clang_getCursorKind(), clang_getCursorDecl(). by Steve Naroff · 15 years ago