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