1. 8f0bf81 c-index-test: Unify and always print half-open extents. by Daniel Dunbar · 14 years ago
  2. 51b058c c-index-test: Unify syntax for printing extents. Yes, there were 4. by Daniel Dunbar · 14 years ago
  3. b217bcc XFAIL two tests on Win32 until some cares to investigate... the problem on by Daniel Dunbar · 14 years ago
  4. 96a8660 CIndex: Use 'env' instead of relying on bash environment-variable setting by Daniel Dunbar · 14 years ago
  5. 7297c18 PCHReader doesn't implement classof so dyn_casting it will do really weird stuff. Use a static_cast instead. by Benjamin Kramer · 15 years ago
  6. 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 15 years ago
  7. d93256e Introduce serialization and deserialization of diagnostic information by Douglas Gregor · 15 years ago
  8. 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
  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. 3512107 Add test case for ? : crasher by Douglas Gregor · 15 years ago
  12. 60cbfac Loosen preconditions for clang_getCursorSpelling(), returning an empty by Douglas Gregor · 15 years ago
  13. b988f9c Move the type specifier location for elaborated-type-specifiers from by Douglas Gregor · 15 years ago
  14. 263b47b Visit the condition variables of while and for loops; also, visit the by Douglas Gregor · 15 years ago
  15. f091b4b disable this test, it is failing sporadically. by Chris Lattner · 15 years ago
  16. 336fd81 Teach the cursor visitor to recurse into the type information of by Douglas Gregor · 15 years ago
  17. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  18. 9fb48de Eliminate index-test; all of its tested functionality is now in c-index-test. by Douglas Gregor · 15 years ago
  19. 33e9abd Teach CIndex's cursor visitor to restrict its traversal to a specific by Douglas Gregor · 15 years ago
  20. 1ef2fc1 Teach the cursor visitor to walk all of the C and Objective-C by Douglas Gregor · 15 years ago
  21. a59e390 Teach the cursor visitor to walk statements and expressions, including by Douglas Gregor · 15 years ago
  22. f20dfbc Teach the cursor visitor to walk into a variety of different TypeLoc by Douglas Gregor · 15 years ago
  23. 7d0d40e Introduce type references into the C API, capturing references to by Douglas Gregor · 15 years ago
  24. 97b9872 Extend the CIndex API with direct support for expressions and by Douglas Gregor · 15 years ago
  25. 3012213 Introduce the notion of an "unexposed" declaration into the CIndex by Douglas Gregor · 15 years ago
  26. b699866 Eliminate cursor kinds used to express definitions. Instead, provide by Douglas Gregor · 15 years ago
  27. c5d1e93 Introduce clang_getCursorReferenced, to get a cursor pointing at the by Douglas Gregor · 15 years ago
  28. a7bde20 Implement clang_getCursorExtent, which provides a source range for the by Douglas Gregor · 15 years ago
  29. 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
  30. 1adb082 Give ObjCClassRef cursors a sane representation, which is encapsulated by Douglas Gregor · 15 years ago
  31. 3db211b Improve location information for Objective-C category declarations. We by Douglas Gregor · 15 years ago
  32. 78db0cd Use a sane encoding for CXCursor_ObjCProtocolRef, using the actual by Douglas Gregor · 15 years ago
  33. 2e331b9 Give CXCursor_ObjCSuperClassRef a sane encoding, which is only known by Douglas Gregor · 15 years ago
  34. 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
  35. f2c87bd Add -cursor-at=file:line:column command line option to c-index-test, by Douglas Gregor · 15 years ago
  36. 1ca6ae8 Switch code-completion for ordinary names over to the new(ish) by Douglas Gregor · 15 years ago
  37. ab0b4f1 Improve the sorting of code-completion results. We now always sort by by Douglas Gregor · 15 years ago
  38. c38c3e1 Code-completion for @public, @protected, @private, @package. by Douglas Gregor · 15 years ago
  39. b6ac245 Whenever completing ordinary names for an Objective-C source, also by Douglas Gregor · 15 years ago
  40. 148299f Fix tests for r93231. by Benjamin Kramer · 15 years ago
  41. 834389b Use horizontal-space markers in code-completion results rather than by Douglas Gregor · 15 years ago
  42. 782f2f5 Change ObjCContainerDecl to contain the entire range for the '@end' by Ted Kremenek · 15 years ago
  43. d488d9c Add a test case for code-completion in the presence of tabs by Douglas Gregor · 15 years ago
  44. d821065 Change clang_getDeclExtent() to have the endpoint point to the last character in the last token. by Ted Kremenek · 15 years ago
  45. 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
  46. 520ad5f Rename test file. by Ted Kremenek · 15 years ago
  47. 29b6f38 Change test case to use 'clang -cc1' (without --disable-free) instead of c-index-test (whose memory management behavior may change in the future). by Ted Kremenek · 15 years ago
  48. e7809d4 Add 'DeclStmt::DoDestroy()' which doesn't actually recurse over its child expressions (via StmtIterator), as those expressions are owned by the Decls and Types (which are destroyed elsewhere). This fixes a crasher reported in <rdar://problem/7487294>. by Ted Kremenek · 15 years ago
  49. 2a17af0 Objective-C methods can be variadic, too. Who knew. by Douglas Gregor · 15 years ago
  50. ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
  51. 80737ad Update tests to use %clang instead of 'clang', and forcibly disable use of ' by Daniel Dunbar · 15 years ago
  52. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  53. 01ed063 Make tests use the new clang -cc1 flag. by Fariborz Jahanian · 15 years ago
  54. 288294f Tests: Fix some bugs in clang_f_opts, options were out of order but it worked by Daniel Dunbar · 15 years ago
  55. 632d4b3 XFAIL this test on Win32 until I can take a look. by Daniel Dunbar · 15 years ago
  56. 7628294 Tweak code-completion results by suppressing class template by Douglas Gregor · 15 years ago
  57. 737061f Patch to fix a crash trying to access a category name in by Fariborz Jahanian · 15 years ago
  58. 2a7925c When in an Objective-C instance method, super is a valid code-completion result by Douglas Gregor · 15 years ago
  59. 9a0c85e Code completion for Objective-C @ keywords that are statements or expressions by Douglas Gregor · 15 years ago
  60. c464ae8 Code completion for Objective-C @ directives by Douglas Gregor · 15 years ago
  61. 9422097 CIndex: For the time being, don't return translation units if we encounter an error during parsing. by Daniel Dunbar · 15 years ago
  62. f772d1e ASTUnit/CIndex: Explicitly track the top-level decls when using an ASTUnit made by Daniel Dunbar · 15 years ago
  63. bdf70c2 XFAIL this on Win32 for the time being. by Daniel Dunbar · 15 years ago
  64. 735df88 Extend the CIndex code-completion API to perform code completion by Douglas Gregor · 15 years ago
  65. 625e4ef c-index-test: Split "function scanning" behavior into its own "filter" -- its by Daniel Dunbar · 15 years ago
  66. a4494d8 Add missing testcase for Objective-C p@property getter/setter completions by Douglas Gregor · 15 years ago
  67. d3c6854 Improve code completion for Objective-C message sends, so that we by Douglas Gregor · 15 years ago
  68. 988358f Improve the accuracy of code completion for the attributes of an @property declaration, so that we don't produce completions for attributes that would conflict with already-specified attributes by Douglas Gregor · 15 years ago
  69. 54f0161 Improve code-completion results for the flags in an @property by Douglas Gregor · 15 years ago
  70. 424b2a5 Code completion after @dynamic by Douglas Gregor · 15 years ago
  71. 322328b Code completion for Objective-C @synthesized. by Douglas Gregor · 15 years ago
  72. 2f43b21 Update test to stop scanning things in the predefines buffer, this isn't adding by Daniel Dunbar · 15 years ago
  73. 33ced0b Implement code completion for Objective-C category names in @interface by Douglas Gregor · 15 years ago
  74. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  75. c72af57 Update index tests for r89203. by Benjamin Kramer · 15 years ago
  76. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  77. f9a7c18 Rename code-completion test to actually make sense by Douglas Gregor · 15 years ago
  78. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  79. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  80. 95ac655 Code completion for member accesses that involve Objective-C properties and instance variables by Douglas Gregor · 15 years ago
  81. f74a419 Finish code completion for Objective-C message sends by Douglas Gregor · 15 years ago
  82. 36ecb04 Refactor code-completion support for message sends, collecting the by Douglas Gregor · 15 years ago
  83. 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
  84. 7324d6d Fix test case. by Ted Kremenek · 15 years ago
  85. 0196ce4 Rename test. by Ted Kremenek · 15 years ago
  86. 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
  87. 24a069f Implement code completion for Objective-C message sends to "super". by Douglas Gregor · 15 years ago
  88. 9630eb6 Augment code-completion results to provide argument names and by Douglas Gregor · 15 years ago
  89. 2ca2429 ... and add back a few more triple forces. by Daniel Dunbar · 15 years ago
  90. ca74ae7 Use -fblocks and -fobjc-nonfragile-abi when that is what is being tested, instead of forcing the triple. by Daniel Dunbar · 15 years ago
  91. 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
  92. bbd755a Update test, I don't know why this changed but seems innocuous. by Daniel Dunbar · 15 years ago
  93. ff4393c Make sure that we look into nested, transparent declaration contexts by Douglas Gregor · 15 years ago
  94. 4bb2c28 Simplify test to deal with type-based ordering variations by Douglas Gregor · 15 years ago
  95. ac06a7c Verify that code-completion is at least a little bit robust against inclusion of missing headers by Douglas Gregor · 15 years ago
  96. 3ac7385 Minor cleanup for CIndex-based code-completion: by Douglas Gregor · 15 years ago
  97. 1787b70 Move test/Index input files into a sub directory (not scanned as tests). by Daniel Dunbar · 15 years ago
  98. 4fcfde4 Eliminate &&s in tests. by Daniel Dunbar · 15 years ago
  99. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  100. 52e7108 Add support for a chain of stat caches in the FileManager, rather than by Douglas Gregor · 15 years ago