1. d52864b CIndex: Switch CXSourceRange to proper half-open intervals. by Daniel Dunbar · 14 years ago
  2. a2a9d6e Make the following functions thread-safe but having them return an std::string that is reconstructed by Ted Kremenek · 14 years ago
  3. a3890ba Clean up the CIndex interface to diagnostic ranges. Thanks, Daniel! by Douglas Gregor · 14 years ago
  4. 0087e1a Note that a CXIndex cannot be destroyed until after all of its translation units have been destroyed by Douglas Gregor · 14 years ago
  5. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  6. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  7. 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
  8. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  9. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  10. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  11. e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
  12. fd9f234 Update comment. by Daniel Dunbar · 15 years ago
  13. a57259e Tweak clang_visitChildren comment. by Daniel Dunbar · 15 years ago
  14. 1efcf3d Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. by Daniel Dunbar · 15 years ago
  15. 23e1ad0 Add doxygen comment to clang_getClangVersion(). by Ted Kremenek · 15 years ago
  16. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  17. 04bb716 Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clang version string through the CIndex API. by Ted Kremenek · 15 years ago
  18. c42fefa Improve content and structure of the Doxygen documentation for the by Douglas Gregor · 15 years ago
  19. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 15 years ago
  20. 7d0d40e Introduce type references into the C API, capturing references to by Douglas Gregor · 15 years ago
  21. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 15 years ago
  22. f552544 Yet more Doxygen-comment tweaking in the CIndex library. by Douglas Gregor · 15 years ago
  23. 7f17376 Improve Doxygen documentation for the CIndex library, somewhat. by Douglas Gregor · 15 years ago
  24. 04d1dd4 Kill CXEntity and CXDecl. The first has never been used, while the by Douglas Gregor · 15 years ago
  25. 78205d4 Kill some CXDecl-related APIs that have been superceded by CXCursor-based APIs. by Douglas Gregor · 15 years ago
  26. 68372aa Kill CXStmt. It isn't being used anywhere, and has no future. by Douglas Gregor · 15 years ago
  27. 002a528 Kill clang_loadDeclaration() and clang_loadTranslationUnit(). by Douglas Gregor · 15 years ago
  28. b1373d0 Introduce a new, cursor-based traversal function that visits the by Douglas Gregor · 15 years ago
  29. 20d416c Attempt to improve CIndex Doxygen organization, although I can't actually test this locally by Douglas Gregor · 15 years ago
  30. e0356b1 Kill off clang_getDeclColumn, clang_getDeclExtent, clang_getDeclLine, by Douglas Gregor · 15 years ago
  31. 7eaa8ae Introduce a special cursor kind for the translation unit, to serve as by Douglas Gregor · 15 years ago
  32. 36103f4 CXCursor_UnexposedDecl to the first declaration kind by Douglas Gregor · 15 years ago
  33. e0ca4ba Kill CXCursor_ObjCSelectorRef, CXCursor_VarRef, CXCursor_FunctionRef, by Douglas Gregor · 15 years ago
  34. 97b9872 Extend the CIndex API with direct support for expressions and by Douglas Gregor · 15 years ago
  35. e8c7043 Kill the unused and unnecessary CXCursor_MemberRef, twin to the by Douglas Gregor · 15 years ago
  36. 5a5ec3a Kill CXCursor_ObjCIvarRef. Such cursors could never be created, and by Douglas Gregor · 15 years ago
  37. 3012213 Introduce the notion of an "unexposed" declaration into the CIndex by Douglas Gregor · 15 years ago
  38. 1db19de Rework the CXSourceLocation and CXSourceRange APIs. They are now by Douglas Gregor · 15 years ago
  39. b699866 Eliminate cursor kinds used to express definitions. Instead, provide by Douglas Gregor · 15 years ago
  40. c5d1e93 Introduce clang_getCursorReferenced, to get a cursor pointing at the by Douglas Gregor · 15 years ago
  41. a7bde20 Implement clang_getCursorExtent, which provides a source range for the by Douglas Gregor · 15 years ago
  42. 547836f Now that a reasonable deprecation cycle has passed, kill 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. deb06bd Remove 'default' case in switch statement in clang_getCursorKindSpelling(). This identified a missing case (warned by the compiler) and identified that CXCursor_FirstDecl didn't actually correspond to the first decl. by Ted Kremenek · 15 years ago
  47. 283cae3 Make CXCursor's data opaque. by Douglas Gregor · 15 years ago
  48. b89e8f6 Add 'referringDecl' field to CXCursor to prepare the way to better model declaration references from other delcarations. by Ted Kremenek · 15 years ago
  49. c50277f Rename clang_getUSR() -> clang_getDeclUSR(). For now we take a CXDecl instead of a CXEntity. by Ted Kremenek · 15 years ago
  50. 1fc00e6 Change clang_getUSR() to return a CXString instead of a 'const char *'. by Ted Kremenek · 15 years ago
  51. 3172383 CIndex: by Ted Kremenek · 15 years ago
  52. 01dfea0 Improve code completion by introducing patterns for the various C and by Douglas Gregor · 15 years ago
  53. 6ab9db1 For now, add back clang_getDeclSource(). by Ted Kremenek · 15 years ago
  54. d821065 Change clang_getDeclExtent() to have the endpoint point to the last character in the last token. by Ted Kremenek · 15 years ago
  55. 3aacd53 Add missing CINDEX_LINKAGE. by Daniel Dunbar · 15 years ago
  56. 817db7c Remove deprecated function 'clang_getDeclSource()'. Use 'clang_getDeclFile()' instead. by Ted Kremenek · 15 years ago
  57. 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
  58. 1b6869a Split (mostly nonexistent) USR code out from the main CIndex logic. by Ted Kremenek · 15 years ago
  59. ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
  60. ec6762c Change clang_codeComplete API to return the results in a structure on by Douglas Gregor · 15 years ago
  61. 3d31560 Include <time.h> in order to use 'time_t'. by Chandler Carruth · 15 years ago
  62. 8506dde Switch clang_createTranslationUnitFromSourceFile to use ASTUnit::LoadFromCommandLine. by Daniel Dunbar · 15 years ago
  63. 735df88 Extend the CIndex code-completion API to perform code completion by Douglas Gregor · 15 years ago
  64. 7388555 Add clang_getNullCursor() and clang_equalCursors() (the latter for comparing cursors). by Ted Kremenek · 15 years ago
  65. 4633d1b Allow "source_filename" to be an optional argument (the client can provide NULL). This allows the client to put the source_filename in the command_line_args without fear of the file being named twice. by Ted Kremenek · 15 years ago
  66. ef0cef6 Introduce CXString type and associated functions clang_getCString() and clang_disposeString(). by Steve Naroff · 15 years ago
  67. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  68. 08b0e8d Add two missing CINDEX_LINKAGE uses, in libCIndex, from Kovarththanan by Douglas Gregor · 15 years ago
  69. f96b524 Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>. by Steve Naroff · 15 years ago
  70. 8814503 Add support for 'CXFile' (<rdar://problem/7303360>). by Steve Naroff · 15 years ago
  71. 2e06fc8 Changes for building as a Windows DLL by John Thompson · 15 years ago
  72. fbcb2b7 Split clang_getCursor() into clang_getCursor() and clang_getCursorWithHint(). by Ted Kremenek · 15 years ago
  73. 139ba86 Enhance 'clang_createTranslationUnitFromSourceFile()' in two ways: by Ted Kremenek · 15 years ago
  74. 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
  75. b4ece63 Add an example to help claify the process/assumptions... by Steve Naroff · 15 years ago
  76. e56b4ba by Steve Naroff · 15 years ago
  77. 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
  78. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  79. 5b7d8e2 Implement <rdar://problem/7303432> [Clang/Index] In-memory-style AST generation API (initial API implementation). by Steve Naroff · 15 years ago
  80. ee9405e Add clang_getDeclSource(). by Steve Naroff · 15 years ago
  81. 699a07d Add clang_getDeclLine and clang_getDeclColumn by Steve Naroff · 15 years ago
  82. 4ade6d6 More work to enable more exhaustive testing of the indexing API. by Steve Naroff · 15 years ago
  83. fb57042 - Implement support for various types of "refs" (initially to help test clang_getCursor()). by Steve Naroff · 15 years ago
  84. 459789b fit in 80 cols by Chris Lattner · 15 years ago
  85. 77128dd - clang_getCursor(): Replace asserts with error codes (CXCursor_InvalidFile, CXCursor_NoDeclFound). by Steve Naroff · 15 years ago
  86. af08ddc by Steve Naroff · 15 years ago
  87. bce6f62 Revert "Visit function/method bodies and issue callback for parameters and local by Daniel Dunbar · 15 years ago
  88. 23d8bea Visit function/method bodies and issue callback for parameters and local variables. by Steve Naroff · 15 years ago
  89. f334b4e Start issuing callback for references (add some predicates, refactor some code). by Steve Naroff · 15 years ago
  90. c857ea4 Flesh out CXCursorKind... by Steve Naroff · 15 years ago
  91. b7cd17c Tweak comment based on Daniel's recently added '-emit-ast' option. by Steve Naroff · 15 years ago
  92. 2b8ee6c Add explicit "blind" client data to callback function (since we aren't using blocks). by Steve Naroff · 15 years ago
  93. 2d4d629 Implement source/line/column hooks. by Steve Naroff · 15 years ago
  94. 89922f8 More fleshing out the C-based indexing API (under construction). by Steve Naroff · 15 years ago
  95. 5039819 Lot's of little changes to get the C-based indexing API going... by Steve Naroff · 15 years ago
  96. 7e8f818 Add CX prefix to Cursor and move a comment. by Steve Naroff · 15 years ago
  97. 600866c Fill in Index.h header file and add stubs to implementation file. by Steve Naroff · 15 years ago
  98. d2fa566 Add initial boilerplate for CIndex, a shared library that will vend high-level by Ted Kremenek · 15 years ago