| Commit message (Expand) | Author | Age | Files | Lines |
* | Fold -fobjc-nonfragile-abi2 into -fobjc-nonfragile-abi. | Fariborz Jahanian | 2011-01-04 | 1 | -3/+3 |
* | When in code-completion, skip obj-c method bodies for speed up. | Argyrios Kyrtzidis | 2011-01-03 | 1 | -1/+1 |
* | Speed up code-completion by skipping function bodies. | Argyrios Kyrtzidis | 2011-01-03 | 2 | -29/+1 |
* | When determining which preprocessed entities to traverse in libclang, | Douglas Gregor | 2010-12-21 | 3 | -0/+15 |
* | Fix test to be platform-agnostic | Douglas Gregor | 2010-12-21 | 1 | -1/+1 |
* | Fix a major inconsistency in the representation of Objective-C | Douglas Gregor | 2010-12-21 | 2 | -13/+42 |
* | Implement BlockDecl::getSourceRange(). The bogus source-range | Douglas Gregor | 2010-12-21 | 1 | -0/+34 |
* | add missing newlines at end of file. | Chris Lattner | 2010-12-21 | 1 | -1/+1 |
* | Swap the order of the condition and body of a do-while statement in | Douglas Gregor | 2010-12-17 | 1 | -1/+22 |
* | Avoid to emit redundant implicit cast for enum constants init expressions. | Abramo Bagnara | 2010-12-17 | 1 | -1/+0 |
* | In clang_getCursor(), don't override a preprocessing cursor within | Douglas Gregor | 2010-12-10 | 1 | -0/+7 |
* | Eliminate duplicate code completions for properties. | Douglas Gregor | 2010-12-09 | 1 | -0/+16 |
* | Don't walk the translation unit context to produce protocol names when | Douglas Gregor | 2010-12-09 | 1 | -1/+3 |
* | Fix bug where annotate tokens was not working for BinaryTypeTraitExpr. | Francois Pichet | 2010-12-08 | 1 | -2/+10 |
* | Fix test that didn't really test anything. | Francois Pichet | 2010-12-08 | 1 | -2/+2 |
* | When using a precompiled preamble with detailed preprocessing records, | Douglas Gregor | 2010-11-30 | 1 | -0/+6 |
* | Extend the libclang diagnostic API to provide information about the | Douglas Gregor | 2010-11-19 | 1 | -2/+4 |
* | Do not produce "purely informative" code completion results for | Douglas Gregor | 2010-11-17 | 1 | -2/+2 |
* | When libclang is walking a member access expression, don't walk into | Douglas Gregor | 2010-11-17 | 2 | -20/+40 |
* | When comparing the source range of a declaration against the region of | Douglas Gregor | 2010-11-17 | 3 | -9/+9 |
* | For an Objective-C @synthesize statement, e.g., | Douglas Gregor | 2010-11-17 | 1 | -1/+6 |
* | Fix source-range information for Objective-C properties. Previously, | Douglas Gregor | 2010-11-17 | 3 | -15/+53 |
* | Fix use of an uninitialized SourceLocation because DeclarationNameLoc failed ... | Ted Kremenek | 2010-11-12 | 1 | -0/+2256 |
* | Temporarily remove this test. It is causing an assertion failure in the buil... | Ted Kremenek | 2010-11-11 | 1 | -2256/+0 |
* | Annotate tokens in a separate thread to avoid blowing out stack space. While... | Ted Kremenek | 2010-11-11 | 1 | -0/+2256 |
* | Generalize data-recursive visitation in CursorVisitor to also handle MemberExprs | Ted Kremenek | 2010-11-11 | 1 | -0/+532 |
* | Improve ASTUnit's capture of diagnostics so that the | Douglas Gregor | 2010-11-11 | 1 | -5/+6 |
* | Replace UsingDecl's SmallPtrSet of UsingShadowDecls with a linked list to avo... | Argyrios Kyrtzidis | 2010-11-10 | 1 | -1/+1 |
* | ntroduce clang_getSpellingLocation() into libclang, to provide the | Douglas Gregor | 2010-11-09 | 3 | -3/+9 |
* | Revert r118492, which didn't update all of its tests accordingly | Douglas Gregor | 2010-11-09 | 1 | -8/+1 |
* | Introduce clang_getSpellingLocation() into libclang, to provide the | Douglas Gregor | 2010-11-09 | 1 | -1/+8 |
* | Teach code completion not to include out-of-line declarations and | Douglas Gregor | 2010-11-09 | 1 | -2/+4 |
* | Add CursorVisitor::VisitBinaryOperator() to explicitly handle the case where ... | Ted Kremenek | 2010-11-08 | 1 | -0/+1982 |
* | If an instance method messages is sending to an expression of type Class, | Douglas Gregor | 2010-11-08 | 1 | -0/+26 |
* | Teach clang_getCursorReferenced() that a | Douglas Gregor | 2010-11-05 | 3 | -6/+9 |
* | Improve source-location information for CXXConstructExpr nodes, by | Douglas Gregor | 2010-11-03 | 1 | -0/+30 |
* | Hack to workaround deficiency in ObjC ASTs. Functions and variables may be d... | Ted Kremenek | 2010-11-02 | 1 | -1/+51 |
* | Teach code completion to provide property results when the property | Douglas Gregor | 2010-11-02 | 1 | -0/+56 |
* | Encapsulate within CXCursor the notion of whether a VarDecl* is the first Dec... | Ted Kremenek | 2010-11-01 | 1 | -0/+142 |
* | Improve the tracking of source locations for parentheses in constructor calls. | Chandler Carruth | 2010-10-25 | 1 | -1/+1 |
* | Teach clang_getCursorReferenced() and friends about BlockDeclRefExprs. | Douglas Gregor | 2010-10-22 | 2 | -21/+27 |
* | Substantially revise how clang computes the visibility of a declaration to | John McCall | 2010-10-22 | 1 | -1/+1 |
* | Update clang_getCursor() test to check searches on include directives | Douglas Gregor | 2010-10-21 | 1 | -5/+9 |
* | Improve the implementation of libclang's token-annotation logic for | Douglas Gregor | 2010-10-21 | 3 | -51/+51 |
* | Extend the preprocessing record and libclang with support for | Douglas Gregor | 2010-10-20 | 2 | -1/+2 |
* | Tweak code-completion result priorities, so that exact and similar | Douglas Gregor | 2010-10-19 | 20 | -222/+222 |
* | Fix the translation of the PCC_ForInit code-completion context for | Douglas Gregor | 2010-10-18 | 1 | -0/+6 |
* | Provide code completion for types after the '^' that starts a block | Douglas Gregor | 2010-10-18 | 1 | -0/+6 |
* | Introduce code completion results for Objective-C methods, both when | Douglas Gregor | 2010-10-18 | 2 | -43/+42 |
* | When providing code completions of Objective-C method declarations | Douglas Gregor | 2010-10-18 | 1 | -1/+3 |