1. b5b2ccb When performing name lookup for the allocation or deallocation by Douglas Gregor · 14 years ago
  2. 7aceaf8 When elevating access along an inheritance path, initialize the computed by John McCall · 14 years ago
  3. dbdf5e7 During C++ name lookup, use DeclContext::Equals() rather than by Douglas Gregor · 14 years ago
  4. 711be1e Implement C++ [temp.local]p8, which specifies that a template by Douglas Gregor · 14 years ago
  5. ce056bc Eliminate the default arguments to ASTContext::getFunctionType(), by Douglas Gregor · 15 years ago
  6. 36262b8 Implement C++ name lookup for instance variables of Objective-C classes by Douglas Gregor · 15 years ago
  7. 8591098 In C++, allow builtins to be referred to via qualified name lookup, e.g., by Douglas Gregor · 15 years ago
  8. 6b2accb Improve access control diagnostics. Perform access control on member-pointer by John McCall · 15 years ago
  9. 5769d61 Thread a source location into the template-argument deduction routines. There by John McCall · 15 years ago
  10. 1df0ee9 Teach C++ name lookup that it's okay to look in a scope without a by Douglas Gregor · 15 years ago
  11. 6202119 Fix a crash with ill-formed code within a method in an ill-formed by Douglas Gregor · 15 years ago
  12. 86ff308 Extract a common structure for holding information about the definition by John McCall · 15 years ago
  13. d0ed448 Add a stop gap to Sema::CorrectTypo() to correct only up to 20 typos. by Ted Kremenek · 15 years ago
  14. aaa1a89 Return early, reduce indentation, and simplify line breaks. No functionality by Chandler Carruth · 15 years ago
  15. 7edb5fd Handle redeclarations found by ADL deterministically and reasonably. by John McCall · 15 years ago
  16. a113e72 Allow ADL to find functions imported by using decls. Leave wordy comment by John McCall · 15 years ago
  17. 6e26689 Preserve access bits through overload resolution much better. Some by John McCall · 15 years ago
  18. 92f8831 Implement elementary access control. by John McCall · 15 years ago
  19. 46460a6 First pass at collecting access-specifier information along inheritance paths. by John McCall · 15 years ago
  20. eec51cf Give UnresolvedSet the ability to store access specifiers for each declaration. by John McCall · 15 years ago
  21. dc5c786 Make LookupResult::resolveKind() robust against NotFoundInCurrentInstantiation. by John McCall · 15 years ago
  22. 7d3f576 When performing qualified name lookup into the current instantiation, by Douglas Gregor · 15 years ago
  23. 0cc8404 Switch the remaining code completions over to LookupVisibleDecls, by Douglas Gregor · 15 years ago
  24. def9107 Move code completion for qualified name lookup (foo::) to by Douglas Gregor · 15 years ago
  25. efcf16d Look through using declarations when determining whether one decl hides another by Douglas Gregor · 15 years ago
  26. 3f477a1 Name lookup should know better than to look into a class before it's defined by Douglas Gregor · 15 years ago
  27. 277d280 When performing name lookup into a scope, check that its entity is by Douglas Gregor · 15 years ago
  28. 48026d2 Implement name lookup for conversion function template specializations by Douglas Gregor · 15 years ago
  29. 539c5c3 Fix the search for visible declarations within a Scope to ensure that by Douglas Gregor · 15 years ago
  30. 1dac341 Per offline discussion with Doug, don't perform typo correction when we have encountered a fatal error. On some files that are woefully wrong (missing headers) this can cause a 3x slowdown in some cases when parsing the file. It makes sense not to perform typo correction in this case because after a fatal error diagnostics will either be suppressed or not really make any sense. by Ted Kremenek · 15 years ago
  31. f06cdae Implement typo correction for a variety of Objective-C-specific constructs: by Douglas Gregor · 15 years ago
  32. e358201 Make sure that the search for visible declarations looks into the semantic parents of out-of-line function contexts by Douglas Gregor · 15 years ago
  33. 2dcc011 Typo correction for member access into classes/structs/unions, e.g., by Douglas Gregor · 15 years ago
  34. bb092ba Implement typo correction for id-expressions, e.g., by Douglas Gregor · 15 years ago
  35. 546be3c Typo correction for type names when they appear in declarations, e.g., given by Douglas Gregor · 15 years ago
  36. bd64729 Handle using declarations in overloaded and template functions during ADL and by Chandler Carruth · 15 years ago
  37. 4e0d81f Look through using decls when checking whether a name is an acceptable by John McCall · 15 years ago
  38. 1d7c528 Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria into by John McCall · 15 years ago
  39. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  40. 737061f Patch to fix a crash trying to access a category name in by Fariborz Jahanian · 15 years ago
  41. 9f54ad4 Implement redeclaration checking and hiding semantics for using declarations. There by John McCall · 15 years ago
  42. 1237259 When performing unqualified name lookup in C++, don't look directly by Douglas Gregor · 15 years ago
  43. fda8e12 Stop stripping UnresolvedUsingDecls out of LookupResults that have other by John McCall · 15 years ago
  44. 1bcee0a Rip out the last remaining implicit use of OverloadedFunctionDecl in Sema: by John McCall · 15 years ago
  45. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  46. 7453ed4 Consider a FunctionTemplate to be an overload all on its lonesome. Track by John McCall · 15 years ago
  47. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  48. 6826314 Overhaul previous-declaration and overload checking to work on lookup results by John McCall · 15 years ago
  49. 7d384dd Split LookupResult into its own header. by John McCall · 15 years ago
  50. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  51. 5b47faf Temporarily unbreak the clang-on-llvm tests. :) Not going to fix unresolved by John McCall · 15 years ago
  52. 314be4e Store "sugared" decls in LookupResults (i.e. decl aliases like using declarations); by John McCall · 15 years ago
  53. 9488ea1 Instead of hanging a using declaration's target decls directly off the using by John McCall · 15 years ago
  54. a24dc2e Carry lookup configuration throughout lookup on the LookupResult. Give by John McCall · 15 years ago
  55. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  56. 788cd06 Introduce a new representation for template template by Douglas Gregor · 15 years ago
  57. f7f3d0d Create a new Scope when parsing a declaration with a C++ scope specifier. by John McCall · 15 years ago
  58. d9f01d4 Fix a similar problem with qualified lookup through using directives, by John McCall · 15 years ago
  59. 12ea578 Make a somewhat more convincing test case for unqualified lookup through by John McCall · 15 years ago
  60. d7be78a Fix unqualified lookup through using directives. by John McCall · 15 years ago
  61. bbc1cc5 Ignore dependent bases in ADL. Fixes PR5271. by Sebastian Redl · 15 years ago
  62. 644be85 Apply the special enum restrictions from [over.match.oper]p3b2 in argument-dependent lookup too. This fixes PR5244. by Sebastian Redl · 15 years ago
  63. 6e24726 Qualified lookup through using declarations. Diagnose a new type of ambiguity. by John McCall · 15 years ago
  64. 3135df5 Dead Code Elimination by Douglas Gregor · 15 years ago
  65. f36e02d Refactor the LookupResult API to simplify most common operations. Require users to by John McCall · 15 years ago
  66. 71fdaf4 Dead code elimination. by John McCall · 15 years ago
  67. a8f32e0 Refactor the code that walks a C++ inheritance hierarchy, searching by Douglas Gregor · 15 years ago
  68. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  69. 4719f4e When performing name lookup within a class template or class template by Douglas Gregor · 15 years ago
  70. e942bbe When performing unqualified name lookup into a DeclContext, also look into by Douglas Gregor · 15 years ago
  71. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  72. 2dd078a Rewrite of our handling of name lookup in C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  73. 02cace7 Omnibus friend decl refactoring. Instead of cloning AST classes for friend by John McCall · 15 years ago
  74. 495c35d Improve support for out-of-line definitions of nested templates and by Douglas Gregor · 15 years ago
  75. a24eb4e Skip transparent contexts when performing C++ name lookup by Douglas Gregor · 15 years ago
  76. 3f9a8a6 Argument-dependent lookup for friend declarations. Add a new decl type, by John McCall · 15 years ago
  77. 6ff0785 Just add global scope to the associated namespaces set instead of tracking it by John McCall · 15 years ago
  78. 67d1a67 First pass at friend semantics. by John McCall · 15 years ago
  79. 33a3138 Get rid of "smart" quotes. Per report on cfe-dev. by Eli Friedman · 15 years ago
  80. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  81. d99cbe6 [llvm up] by Douglas Gregor · 15 years ago
  82. 8701877 Remove Sema::LookupObjCImplementation and replace it with just calling ObjCInterfaceDecl::getImplementation(). by Argyrios Kyrtzidis · 15 years ago
  83. 97fbaa2 Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its place. by Argyrios Kyrtzidis · 15 years ago
  84. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  85. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  86. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 15 years ago
  87. daa439a Fix a corner case with argument-dependent lookup and overloaded function sets. by Douglas Gregor · 15 years ago
  88. 69be8d6 Improve argument-dependent lookup to find associated classes and by Douglas Gregor · 15 years ago
  89. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  90. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  91. 364e021 Improve support for overloaded operator templates. by Douglas Gregor · 15 years ago
  92. e136e0e Add NamedDecl::getUnderlyingDecl that can see through UsingDecl and ObjCCompatibleAliasDecl. by Anders Carlsson · 15 years ago
  93. 58badb7 See through UsingDecls in more places. by Anders Carlsson · 15 years ago
  94. 5e50569 Fix failing test. by Anders Carlsson · 15 years ago
  95. bc13ab2 Fix another assert related to using decls. by Anders Carlsson · 15 years ago
  96. 8b50d01 When creating LookupResults, see through UsingDecls. Fixes PR4450. by Anders Carlsson · 15 years ago
  97. e53060f Improved semantic analysis and AST respresentation for function templates. by Douglas Gregor · 15 years ago
  98. 44bc2d5 Make sure that argument-dependent lookup looks into the global scope by Douglas Gregor · 15 years ago
  99. 9cfbe48 Parsing and AST support for using declarations, from John Thompson! by Douglas Gregor · 15 years ago
  100. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago