Age | Commit message (Expand) | Author |
2010-01-13 | Code-completion for @public, @protected, @private, @package. | Douglas Gregor |
2010-01-13 | Whenever completing ordinary names for an Objective-C source, also | Douglas Gregor |
2010-01-12 | Use horizontal-space markers in code-completion results rather than | Douglas Gregor |
2010-01-10 | Improve code completion by introducing patterns for the various C and | Douglas Gregor |
2009-12-30 | remove extraneous #include | Chris Lattner |
2009-12-30 | Typo correction for type names when they appear in declarations, e.g., given | Douglas Gregor |
2009-12-25 | Remove some dead variables clang-analyzer found. | Benjamin Kramer |
2009-12-23 | Objective-C methods can be variadic, too. Who knew. | Douglas Gregor |
2009-12-18 | Extend code-completion results with the type of each result | Douglas Gregor |
2009-12-16 | Shift things around so that it's easier to recover from a missing | John McCall |
2009-12-15 | update to match LLVM API change: | Chris Lattner |
2009-12-12 | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin |
2009-12-11 | When code completion of an overload set fails, produce results for ordinary n... | Douglas Gregor |
2009-12-11 | Add a function's cv-qualifiers to the code-completion results as an | Douglas Gregor |
2009-12-11 | Teach code completion to instantiate templates when it needs to | Douglas Gregor |
2009-12-11 | Member function templates can occur after . or -> | Douglas Gregor |
2009-12-11 | Tweak code-completion results by suppressing class template | Douglas Gregor |
2009-12-11 | Class template (partial) specializations should not show up in code completio... | Douglas Gregor |
2009-12-07 | When in an Objective-C instance method, super is a valid code-completion result | Douglas Gregor |
2009-12-07 | Code completion for Objective-C @ keywords that are statements or expressions | Douglas Gregor |
2009-12-07 | Code completion for Objective-C @ directives | Douglas Gregor |
2009-12-06 | PointerUnion == PointerUnion does not do what I thought it did. Also, fix a t... | Douglas Gregor |
2009-12-06 | Switch the std::multimap shadow map used in code completion to an | Douglas Gregor |
2009-12-05 | Avoid trashing two temporary strings. | Benjamin Kramer |
2009-12-05 | strcasecmp is unportable. | Benjamin Kramer |
2009-12-05 | Improve the performance of code completion by 2.2x when completing for ordina... | Douglas Gregor |
2009-12-01 | Switch the clang-to-CIndex interface for code-completion to a binary format, ... | Douglas Gregor |
2009-11-30 | Remove all of Sema's explicit uses of OverloadedFunctionDecl except for | John McCall |
2009-11-29 | Remove useless c_str() calls in SemaCodeComplete. | Benjamin Kramer |
2009-11-24 | Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and | John McCall |
2009-11-23 | Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations... | John McCall |
2009-11-22 | Consider a FunctionTemplate to be an overload all on its lonesome. Track | John McCall |
2009-11-21 | "Incremental" progress on using expressions, by which I mean totally ripping | John McCall |
2009-11-19 | Objective-C code completion within properties after "setter = " or | Douglas Gregor |
2009-11-19 | Improve code completion for Objective-C message sends, so that we | Douglas Gregor |
2009-11-19 | Improve the accuracy of code completion for the attributes of an @property de... | Douglas Gregor |
2009-11-19 | Improve code-completion results for the flags in an @property | Douglas Gregor |
2009-11-18 | Rename CodeCompleteObjCProperty to something more specific. No functionality ... | Douglas Gregor |
2009-11-18 | Code completion after @dynamic | Douglas Gregor |
2009-11-18 | Code completion for Objective-C @synthesized. | Douglas Gregor |
2009-11-18 | Implement code completion for Objective-C category names in @interface | Douglas Gregor |
2009-11-18 | Code completion for Objective-C class names after @interface, | Douglas Gregor |
2009-11-18 | Code completion after @property, providing the names of forward-declared prop... | Douglas Gregor |
2009-11-18 | Code completion for Objective-C properly lists | Douglas Gregor |
2009-11-18 | Code completion for member accesses that involve Objective-C properties and i... | Douglas Gregor |
2009-11-18 | Finish code completion for Objective-C message sends | Douglas Gregor |
2009-11-17 | Rename Objective-C message send completion functions to indicate that we're r... | Douglas Gregor |
2009-11-17 | Refactor code-completion support for message sends, collecting the | Douglas Gregor |
2009-11-17 | Implement code completion for Objective-C message sends to "super". | Douglas Gregor |
2009-11-17 | Augment code-completion results to provide argument names and | Douglas Gregor |