Age | Commit message (Expand) | Author |
2010-01-15 | When performing qualified name lookup into the current instantiation, | Douglas Gregor |
2010-01-14 | Switch the remaining code completions over to LookupVisibleDecls, | Douglas Gregor |
2010-01-14 | Move code completion for qualified name lookup (foo::) to | Douglas Gregor |
2010-01-14 | Look through using declarations when determining whether one decl hides another | Douglas Gregor |
2010-01-12 | Name lookup should know better than to look into a class before it's defined | Douglas Gregor |
2010-01-11 | When performing name lookup into a scope, check that its entity is | Douglas Gregor |
2010-01-11 | Implement name lookup for conversion function template specializations | Douglas Gregor |
2010-01-07 | Fix the search for visible declarations within a Scope to ensure that | Douglas Gregor |
2010-01-06 | Per offline discussion with Doug, don't perform typo correction when we have ... | Ted Kremenek |
2010-01-03 | Implement typo correction for a variety of Objective-C-specific | Douglas Gregor |
2010-01-01 | Make sure that the search for visible declarations looks into the semantic pa... | Douglas Gregor |
2009-12-31 | Typo correction for member access into classes/structs/unions, e.g., | Douglas Gregor |
2009-12-31 | Implement typo correction for id-expressions, e.g., | Douglas Gregor |
2009-12-30 | Typo correction for type names when they appear in declarations, e.g., given | Douglas Gregor |
2009-12-29 | Handle using declarations in overloaded and template functions during ADL and | Chandler Carruth |
2009-12-18 | Look through using decls when checking whether a name is an acceptable | John McCall |
2009-12-18 | Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria into | John McCall |
2009-12-12 | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin |
2009-12-11 | Patch to fix a crash trying to access a category name in | Fariborz Jahanian |
2009-12-10 | Implement redeclaration checking and hiding semantics for using declarations.... | John McCall |
2009-12-08 | When performing unqualified name lookup in C++, don't look directly | Douglas Gregor |
2009-12-03 | Stop stripping UnresolvedUsingDecls out of LookupResults that have other | John McCall |
2009-12-02 | Rip out the last remaining implicit use of OverloadedFunctionDecl in Sema: | John McCall |
2009-11-24 | Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and | 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-18 | Overhaul previous-declaration and overload checking to work on lookup results | John McCall |
2009-11-18 | Split LookupResult into its own header. | John McCall |
2009-11-18 | Incremental progress on using declarations. Split UnresolvedUsingDecl into | John McCall |
2009-11-17 | Temporarily unbreak the clang-on-llvm tests. :) Not going to fix unresolved | John McCall |
2009-11-17 | Store "sugared" decls in LookupResults (i.e. decl aliases like using declarat... | John McCall |
2009-11-17 | Instead of hanging a using declaration's target decls directly off the using | John McCall |
2009-11-17 | Carry lookup configuration throughout lookup on the LookupResult. Give | John McCall |
2009-11-16 | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor |
2009-11-11 | Introduce a new representation for template template | Douglas Gregor |
2009-11-11 | Create a new Scope when parsing a declaration with a C++ scope specifier. | John McCall |
2009-11-10 | Fix a similar problem with qualified lookup through using directives, | John McCall |
2009-11-10 | Make a somewhat more convincing test case for unqualified lookup through | John McCall |
2009-11-10 | Fix unqualified lookup through using directives. | John McCall |
2009-10-25 | Ignore dependent bases in ADL. Fixes PR5271. | Sebastian Redl |
2009-10-23 | Apply the special enum restrictions from [over.match.oper]p3b2 in argument-de... | Sebastian Redl |
2009-10-10 | Qualified lookup through using declarations. Diagnose a new type of ambiguity. | John McCall |
2009-10-09 | Dead Code Elimination | Douglas Gregor |
2009-10-09 | Refactor the LookupResult API to simplify most common operations. Require us... | John McCall |
2009-10-07 | Dead code elimination. | John McCall |
2009-10-06 | Refactor the code that walks a C++ inheritance hierarchy, searching | Douglas Gregor |
2009-09-21 | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall |
2009-09-11 | When performing name lookup within a class template or class template | Douglas Gregor |
2009-09-10 | When performing unqualified name lookup into a DeclContext, also look into | Douglas Gregor |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |