1. 8814503 Add support for 'CXFile' (<rdar://problem/7303360>). by Steve Naroff · 15 years ago
  2. feb15e3 Unify Unix and Windows code paths when executing 'clang'. by Ted Kremenek · 15 years ago
  3. 779e5f4 Remove unnecessary calls to 'flush()'. by Ted Kremenek · 15 years ago
  4. 8ee1f3f Always emit error diagnostics when an error occurs within clang_createTranslationUnit() and clang_createTranslationUnitFromSource(). These kind of errors are ones that shouldn't be missed. by Ted Kremenek · 15 years ago
  5. fbcb2b7 Split clang_getCursor() into clang_getCursor() and clang_getCursorWithHint(). by Ted Kremenek · 15 years ago
  6. 379afec Add some explanatory diagnostics when clang_createTranslationUnitFromSource fails. by Ted Kremenek · 15 years ago
  7. 139ba86 Enhance 'clang_createTranslationUnitFromSourceFile()' in two ways: by Ted Kremenek · 15 years ago
  8. 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
  9. e56b4ba by Steve Naroff · 15 years ago
  10. c46e463 Fix inverted preprocessor guard, and fix the resulting compiler error that was unmasked. by Ted Kremenek · 15 years ago
  11. 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
  12. fc06221 The constructor for ASTUnit now takes a DiagnosticClient*, allowing uses of ASTUnit to specify by Ted Kremenek · 15 years ago
  13. 49358d8 Re-order includes so that the logic involving '#ifdef LLVM_ON_WIN32' appears after the main #includes. The ultimate solution is to just use LLVM-portable methods in llvm/System. by Ted Kremenek · 15 years ago
  14. 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
  15. bade7de Change indenting for case/compound statements to conform to the rest of clang. by Steve Naroff · 15 years ago
  16. c5a9e95 CIndex: make variable non-static to avoid potential race conditions, per by Benjamin Kramer · 15 years ago
  17. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  18. b14346b CIndex: fix typo. by Benjamin Kramer · 15 years ago
  19. edcd828 Missed a paren. by Benjamin Kramer · 15 years ago
  20. 20d7581 CIndex: add a (untested) WIN32 codepath to get ClangPath. by Benjamin Kramer · 15 years ago
  21. 5e4bc59 CIndex: compute ClangPath lazily. by Benjamin Kramer · 15 years ago
  22. 0829a83 CIndex: replace fork/exec with our portable ExecuteAndWait wrapper. by Benjamin Kramer · 15 years ago
  23. 9670762 CIndex: avoid a dangling pointer issue. by Benjamin Kramer · 15 years ago
  24. a47dd19 Attempt to unbreak the MSVC build. by Daniel Dunbar · 15 years ago
  25. dff7689 Resolve FIXME: delete the 'Program' object in the destructor of CIndexer. by Ted Kremenek · 15 years ago
  26. 5cf4876 Add 'UseBumpPtrAllocator' flag to ASTUnit::LoadFromPCHFile() to cause the created ASTContext to use by Ted Kremenek · 15 years ago
  27. 0246575 Make CIndex and c-index-test a little bit more robust. The only by Douglas Gregor · 15 years ago
  28. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  29. 74cd069 Use an std::vector<> instead of an array of ARG_MAX size, as ARG_MAX may not be defined everywhere. by Ted Kremenek · 15 years ago
  30. e19944c Make sure temporary files get unlinked. by Steve Naroff · 15 years ago
  31. 8c4195e Add missing #include for wait(). by Ted Kremenek · 15 years ago
  32. 37b5ac2 Minor improvement to format...no functionality change. by Steve Naroff · 15 years ago
  33. 5b7d8e2 Implement <rdar://problem/7303432> [Clang/Index] In-memory-style AST generation API (initial API implementation). by Steve Naroff · 15 years ago
  34. f9adf8f - Fix assert in clang_getCursorDecl (having to do with recently added ObjC_ProtocolRef). by Steve Naroff · 15 years ago
  35. 85e2db7 Add support for class and protocol references. by Steve Naroff · 15 years ago
  36. 05a7651 When pointing at a type decl reference, ASTLocation is a NamedDeclRef. by Argyrios Kyrtzidis · 15 years ago
  37. f4526e3 Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be: by Argyrios Kyrtzidis · 15 years ago
  38. 7416524 Fix cut/paste error resulting in bad column info. by Steve Naroff · 15 years ago
  39. ee9405e Add clang_getDeclSource(). by Steve Naroff · 15 years ago
  40. 699a07d Add clang_getDeclLine and clang_getDeclColumn by Steve Naroff · 15 years ago
  41. 4ade6d6 More work to enable more exhaustive testing of the indexing API. by Steve Naroff · 15 years ago
  42. fb57042 - Implement support for various types of "refs" (initially to help test clang_getCursor()). by Steve Naroff · 15 years ago
  43. 31b87d8 Change ASTUnit to take the Diagnostic as an argument, the client should have control of this. by Daniel Dunbar · 15 years ago
  44. a390759 Add Diagnostic to Indexer, and have it keep its own FileManager instead of taking an external reference (which was leaked in the case of the CIndex library). by Daniel Dunbar · 15 years ago
  45. 2bd6b9f Add clang_disposeTranslationUnit() and clang_disposeIndex(). by Steve Naroff · 15 years ago
  46. 77128dd - clang_getCursor(): Replace asserts with error codes (CXCursor_InvalidFile, CXCursor_NoDeclFound). by Steve Naroff · 15 years ago
  47. 9efa767 Implement accessors clang_getCursorKind(), clang_getCursorDecl(). by Steve Naroff · 15 years ago
  48. 77accc1 Add ASTUnit::getOriginalSourceFileName() and use in clang_getTranslationUnitSpelling(). by Steve Naroff · 15 years ago
  49. af08ddc by Steve Naroff · 15 years ago
  50. bce6f62 Revert "Visit function/method bodies and issue callback for parameters and local by Daniel Dunbar · 15 years ago
  51. 23d8bea Visit function/method bodies and issue callback for parameters and local variables. by Steve Naroff · 15 years ago
  52. 1164d85 Fix some newly added bugs uncovered by the RELEASE build. by Steve Naroff · 15 years ago
  53. f334b4e Start issuing callback for references (add some predicates, refactor some code). by Steve Naroff · 15 years ago
  54. c857ea4 Flesh out CXCursorKind... by Steve Naroff · 15 years ago
  55. 2b8ee6c Add explicit "blind" client data to callback function (since we aren't using blocks). by Steve Naroff · 15 years ago
  56. 2d4d629 Implement source/line/column hooks. by Steve Naroff · 15 years ago
  57. 89922f8 More fleshing out the C-based indexing API (under construction). by Steve Naroff · 15 years ago
  58. d01a0bc gcc 4.4 needs cstdio for printf. Reorder includes while at it. by Benjamin Kramer · 15 years ago
  59. 1eb79b5 Hide IdxVisitor and remove unimplemented method (causing link errors on x86_64 by Daniel Dunbar · 15 years ago
  60. 5039819 Lot's of little changes to get the C-based indexing API going... by Steve Naroff · 15 years ago
  61. 7e8f818 Add CX prefix to Cursor and move a comment. by Steve Naroff · 15 years ago
  62. 600866c Fill in Index.h header file and add stubs to implementation file. by Steve Naroff · 15 years ago
  63. d2fa566 Add initial boilerplate for CIndex, a shared library that will vend high-level by Ted Kremenek · 15 years ago