1. a0cff72 [AST/libclang] Fix the selector locations that are reported for a by Argyrios Kyrtzidis · 12 years ago
  2. 1c3a46a Documentation cleanup: escape Objective-C @keywords in Doxygen comments. by James Dennett · 12 years ago
  3. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  4. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  5. bf393be objective-c: Don't warn when a category does not implement a method by Fariborz Jahanian · 12 years ago
  6. a5f4441 [Sema] Prefer to use ObjCInterfaceDecl's protocol_begin()/protocol_end() iterators instead of by Argyrios Kyrtzidis · 13 years ago
  7. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  8. 5a61e0c [Sema] Fix crash-on-invalid-code issue: by Argyrios Kyrtzidis · 13 years ago
  9. 77bfb8b objective-c: provide fixit hint when atomic property does not by Fariborz Jahanian · 13 years ago
  10. af30029 modern objc translator. Finish off first cut of the by Fariborz Jahanian · 13 years ago
  11. bb3d14e objc: If a method is not implemented in the category implementation but by Fariborz Jahanian · 13 years ago
  12. f978059 Switch the ObjC*Decl raw_stream overloads to take a reference, for consistency with NamedDecls. by Benjamin Kramer · 13 years ago
  13. a6ea10e Delay the creation of the built-in Objective-C class 'Protocol' by by Douglas Gregor · 13 years ago
  14. cc32b44 When deserializing the definition of a C++ class/ObjC class/ObjC by Douglas Gregor · 13 years ago
  15. 1e68ecc When creating declarations that are deserialized from an module file, by Douglas Gregor · 13 years ago
  16. c9d3c7e Eliminate the ForwardDecl/InitiallyForwardDecl bits from ObjCProtocolDecl. They are no longer needed by Douglas Gregor · 13 years ago
  17. bd9482d Eliminate ObjCForwardProtocolDecl, which is redundant now that by Douglas Gregor · 13 years ago
  18. 27c6da2 Wire up redeclaration chains for Objective-C protocols, so that both by Douglas Gregor · 13 years ago
  19. 1d784b2 Introduce the core infrastructure needed to model redeclaration chains by Douglas Gregor · 13 years ago
  20. 5e2a1ff Move the data that corresponds to the definition of a protocol into a by Douglas Gregor · 13 years ago
  21. 375bb14 Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl by Douglas Gregor · 13 years ago
  22. 712ef87 objective-c: Use class definition AST in several situations when by Fariborz Jahanian · 13 years ago
  23. 99ba9e3 Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 13 years ago
  24. fd002a7 Make sure we're always setting the previous declaration of an ObjCInterfaceDecl by Douglas Gregor · 13 years ago
  25. 8d2dbbf If there is a definition of an ObjCInterfaceDecl, make it the Decl returned from the corresponding ObjCInterfaceType by Douglas Gregor · 13 years ago
  26. 0af5501 Fix chaining of ObjCInterfaceDecl redeclarations by Douglas Gregor · 13 years ago
  27. 7723fec Keep track of all declarations of an Objective-C class (both forward by Douglas Gregor · 13 years ago
  28. 26fec63 Extend ObjCInterfaceDecl::DefinitionData to contain a pointer to the by Douglas Gregor · 13 years ago
  29. 53df7a1 Introduce the core infrastructure needed to model a complete by Douglas Gregor · 13 years ago
  30. 2e5c15b Move the definition-specific data of ObjCInterfaceDecl into a by Douglas Gregor · 13 years ago
  31. af76472 Eliminate the vistigial ObjCClassDecl::ObjCClassRef, and inline its by Douglas Gregor · 13 years ago
  32. c699400 Save category name loc in ObjCCategoryImplDecl, patch by Jason Haslam! by Argyrios Kyrtzidis · 13 years ago
  33. 40f57ee Use Decl's isImplicit field to indicate whether an ObjCInterfaceDecl is 'ImplicitInterfaceDecl', by Argyrios Kyrtzidis · 13 years ago
  34. 2bbcd5c ARC: make assignment to 'self' within class methods illegal. Fixes <rdar://problem/10416568>. by Ted Kremenek · 13 years ago
  35. ad834d5 [PCH] When completing an objc forward reference, do not serialize the chain of its categories because by Argyrios Kyrtzidis · 13 years ago
  36. 3045ce7 Relax restriction of assigning to 'self' in ARC when a method is attributed with ns_consumes_self. Fixes <rdar://problem/10274056>. by Ted Kremenek · 13 years ago
  37. 7c81c2a Don't forget to complete the objc interface before asking for information, by Argyrios Kyrtzidis · 13 years ago
  38. 6d4740e Have ObjCMethodDecl::getCanonicalDecl take into account redeclared methods. by Argyrios Kyrtzidis · 13 years ago
  39. b05d7b2 Keep track when a ObjC interface/protocol was initially created as a forward reference. by Argyrios Kyrtzidis · 13 years ago
  40. 72b2625 [PCH] Serialize info about redeclared objc methods. by Argyrios Kyrtzidis · 13 years ago
  41. 3a919e7 Really protect from infinite loop when there are objc method redeclarations. by Argyrios Kyrtzidis · 13 years ago
  42. b40034c Keep track of objc method redeclarations in the same interface. by Argyrios Kyrtzidis · 13 years ago
  43. 1711fc9 Improve location fidelity of objc decls. by Argyrios Kyrtzidis · 13 years ago
  44. 491306a Allow getting all source locations of selector identifiers in a ObjCMethodDecl. by Argyrios Kyrtzidis · 13 years ago
  45. 11d7716 Pass from the parser the locations of selector identifiers when creating by Argyrios Kyrtzidis · 13 years ago
  46. da92a7f Don't keep NumSelectorArgs in the ObjCMethodDecl, the number can be derived from the selector. by Argyrios Kyrtzidis · 13 years ago
  47. eb2d1f1 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 13 years ago
  48. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  49. e6b8d68 Support importing of ObjC categories from modules. by Argyrios Kyrtzidis · 13 years ago
  50. 955fadb Remove a few mutating ObjCCategoryDecl methods. by Argyrios Kyrtzidis · 13 years ago
  51. 80cb6e6 Warn on missing [super finalize] calls. by Nico Weber · 13 years ago
  52. 95ed778 objective-c: Treat top-level objective-c declarations by Fariborz Jahanian · 13 years ago
  53. 3060178 Fix else style. No functionality change intended. by Chad Rosier · 13 years ago
  54. 75cf3e8 Mark objc methods that are implicitly declared for properties (not user-declared) as implicit. by Argyrios Kyrtzidis · 13 years ago
  55. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  56. da6d976 Move this ObjCImplementationDecl member function into libAST where it belongs. by John McCall · 13 years ago
  57. 9670e17 objc-arc: enforce performSelector rules in rejecting retaining selectors by Fariborz Jahanian · 13 years ago
  58. 7acddac Objective-C fast enumeration loop variables are not retained in ARC, but by John McCall · 13 years ago
  59. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  60. 926df6c Implement Objective-C Related Result Type semantics. by Douglas Gregor · 13 years ago
  61. ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 14 years ago
  62. d976c8e Work around a misdesigned GCC warning. by John McCall · 14 years ago
  63. d5313b0 Provide an attribute, objc_method_family, to allow the inferred family by John McCall · 14 years ago
  64. 85f3d76 Move some of the logic about classifying Objective-C methods into by John McCall · 14 years ago
  65. 74b2756 Diagnose when accessing property in a class method and by Fariborz Jahanian · 14 years ago
  66. 26ac3f3 Extend ExternalASTSource with the ability to lazily complete the by Douglas Gregor · 14 years ago
  67. a4ffd85 For an Objective-C @synthesize statement, e.g., by Douglas Gregor · 14 years ago
  68. 3248854 Rename alignof -> alignOf to avoid irritating C++'0x compilers, PR8423 by Chris Lattner · 14 years ago
  69. 53b9441 Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 14 years ago
  70. 000835d Support for IRGen of synthesize bitfield ivars in by Fariborz Jahanian · 14 years ago
  71. 2c18bb7 objective-c ivar refactoring patch. Iterations by Fariborz Jahanian · 14 years ago
  72. deacbdc Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, by Douglas Gregor · 14 years ago
  73. 74c730a - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for forward declarations and the definition. by Sebastian Redl · 14 years ago
  74. ff331c1 Remove the vast majority of the Destroy methods from the AST library, by Douglas Gregor · 14 years ago
  75. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 14 years ago
  76. ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
  77. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 14 years ago
  78. 83a230c Remember type source information for Objective C property declarations. by John McCall · 14 years ago
  79. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 14 years ago
  80. 7732cc9 Implement method type encoding in the presense by Fariborz Jahanian · 14 years ago
  81. 27a961a AST: Add ObjCIvarDecl::getContainingInterface(). by Daniel Dunbar · 14 years ago
  82. a065492 Sema/Obj-C: Narrow type of ObjCIvarDecl::Create, and check additional invariants on the provided DeclContext. by Daniel Dunbar · 14 years ago
  83. ebfa339 Make the CIndex API more resilient to being used on invalid code. by Ted Kremenek · 15 years ago
  84. 37cafb0 Move method FindPropertyVisibleInPrimaryClass() from ObjCContainerDecl to ObjCInterfaceDecl. by Ted Kremenek · 15 years ago
  85. de09d0c Change ObjCCategoryDecl::FindPropertyDeclaration() to lookup by Ted Kremenek · 15 years ago
  86. 9f550ff Make 'findPropertyDecl()' a static method of ObjCPropertyDecl. by Ted Kremenek · 15 years ago
  87. 568eb6c Remove unused 'IVars' field from ObjCInterfaceDecl. That functionality by Ted Kremenek · 15 years ago
  88. 4bc1cb6 Keep track of type source information in the return type of an by Douglas Gregor · 15 years ago
  89. 0e5ad25 More support for ivars in class extension. by Fariborz Jahanian · 15 years ago
  90. 2576061 Class continuation now has its own property ast for by Fariborz Jahanian · 15 years ago
  91. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  92. 3db211b Improve location information for Objective-C category declarations. We by Douglas Gregor · 15 years ago
  93. 18df52b Keep track of the source locations for each protocol reference in by Douglas Gregor · 15 years ago
  94. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  95. 2dbdd62 Add ObjCClassDecl::getSourceRange(). by Ted Kremenek · 15 years ago
  96. 321c22f Add SourceLocations to ObjCClassDecl for the class identifiers referenced by @class. by Ted Kremenek · 15 years ago
  97. a6f14e1 Property declared in continuation class can only be used to by Fariborz Jahanian · 15 years ago
  98. 0d69b8c - Add/tweak some comments. by Steve Naroff · 15 years ago
  99. b106fc6 tweaked my last patch to 1) preserve the protocol in by Fariborz Jahanian · 15 years ago
  100. 339798e Patch to implement Protocols on class extensions. by Fariborz Jahanian · 15 years ago