aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaCodeComplete.cpp
AgeCommit message (Expand)Author
2010-08-25Split FunctionScopeInfo and BlockScopeInfo into their own header.John McCall
2010-08-25Teach Sema to live without CodeCompleteConsumer.h.John McCall
2010-08-25When performing completions involving Objective-C method declarationsDouglas Gregor
2010-08-24Give a slight preference to functions returning "void" when we'reDouglas Gregor
2010-08-24Implement code completion for preprocessor expressions and in macroDouglas Gregor
2010-08-24Move some of SemaOverload's API to various places in Overload.h, and killJohn McCall
2010-08-24Implement preprocessor code completion where a macro name is expected,Douglas Gregor
2010-08-24Introduce basic code-completion support for preprocessor directives,Douglas Gregor
2010-08-24When providing completions for a function or method argument thatDouglas Gregor
2010-08-24More header elimination. The goal of all this is to allow Parser toJohn McCall
2010-08-24Struggle mightily against header inclusion in Sema.h.John McCall
2010-08-24OwningExprResult -> ExprResult. This patch brought to you byJohn McCall
2010-08-24Abstract out passing around types and kill off ActionBase.John McCall
2010-08-24State explicitly that we are intentionally not providing macro completions fo...Douglas Gregor
2010-08-24Consistently switch on PCC_TypeDouglas Gregor
2010-08-24Provide code completion results for the context-sensitive Objective-CDouglas Gregor
2010-08-23When calling a function or messaging a method marked "sentinel", addDouglas Gregor
2010-08-23Include __FUNCTION__, __PRETTY_FUNCTION_, __func__ in code-completionDouglas Gregor
2010-08-23Introduce a code-completion hook for the Objective-C collectionDouglas Gregor
2010-08-23Don't include macro results when we're completing a declarator.Douglas Gregor
2010-08-23Introduce a new code-completion point when we're parsing aDouglas Gregor
2010-08-21DeclPtrTy -> Decl *John McCall
2010-08-18More PCH -> AST renaming.Sebastian Redl
2010-08-18zap a big dead method.Chris Lattner
2010-08-17When generating code completion patterns for method declarations, giveDouglas Gregor
2010-08-171 != I. Fix the formulation of code-completion patterns forDouglas Gregor
2010-08-16Implement support for cached code completions forDouglas Gregor
2010-08-16When caching global completion results, keep track of the simplifiedDouglas Gregor
2010-08-15Extend the code-completion caching infrastructure to include globalDouglas Gregor
2010-08-13Implement caching of code-completion results for macro definitionsDouglas Gregor
2010-08-12Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor
2010-08-11Once code completion has completed, pass a "completion context" on toDouglas Gregor
2010-08-11Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable,Douglas Gregor
2010-08-09- Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for for...Sebastian Redl
2010-08-04Add code-completion support directly to ASTUnit, which performs codeDouglas Gregor
2010-08-02Simplify global method pool implementation in Sema. No functionality change.Sebastian Redl
2010-07-28When performing code completion for a case statement in a switch whoseDouglas Gregor
2010-07-14Only filter out names reserved for the implementation (e.g., __blah orDouglas Gregor
2010-07-13When forming a function call or message send expression, be sure toDouglas Gregor
2010-07-08Support code completion for parameter names in Objective-C methodDouglas Gregor
2010-07-08Introduce a new code-completion point prior to an identifier in theDouglas Gregor
2010-07-08During code completion, give the "nil" and "NULL" macros the sameDouglas Gregor
2010-06-22Patch to provide separate ASTs for multiple ObjC class extension Fariborz Jahanian
2010-06-15Remove a completely useless and utterly incorrect assertion.Douglas Gregor
2010-06-15Teach code completion not to ignore data members when performing codeDouglas Gregor
2010-06-01Alter the ExternalASTSource interface to permit by-name lookups. PCH continu...John McCall
2010-05-31Fix crash in code completion when an ObjCMethodDecl doesn't have an associate...Ted Kremenek
2010-05-30Teach code-completion for calls to be more careful with aDouglas Gregor
2010-05-30Teach code completion to adjust its completion priorities based on theDouglas Gregor
2010-05-28Don't put method bodies into code completions unless code patterns areDouglas Gregor