summaryrefslogtreecommitdiffstats
path: root/lib/AST/DeclObjC.cpp
Commit message (Expand)AuthorAgeFilesLines
* Use llvm::stable_sortFangrui Song2019-04-241-1/+1
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* [Sema][ObjC] Infer availability of +new from availability of -init.Erik Pilkington2018-09-101-0/+8
* Port getLocEnd -> getEndLocStephen Kelly2018-08-091-1/+1
* Port getLocStart -> getBeginLocStephen Kelly2018-08-091-1/+1
* Add getEndLoc API to replace getLocEndStephen Kelly2018-08-091-1/+1
* [AST] Remove the static_assert check in ObjCMethodDecl::ObjCMethodDeclVlad Tsyrklevich2018-08-011-7/+0
* [AST][4/4] Move the bit-fields from ObjCMethodDecl and ObjCContainerDecl into...Erich Keane2018-08-011-9/+54
* Remove trailing spaceFangrui Song2018-07-301-31/+31
* Remove \brief commands from doxygen comments.Adrian Prantl2018-05-091-2/+2
* [AST] Fix some Clang-tidy modernize-use-auto warnings; other minor fixes (NFC).Eugene Zelenko2018-04-091-74/+60
* Fix typos in clangAlexander Kornienko2018-04-061-2/+2
* [AST] Fix some Clang-tidy modernize and Include What You Use warnings; other ...Eugene Zelenko2017-11-221-47/+54
* [ObjC] Pick a 'readwrite' property when synthesizing ambiguousAlex Lorenz2017-07-131-10/+8
* [DebugInfo] Add kind of ImplicitParamDecl for emission of FlagObjectPointer.Alexey Bataev2017-06-091-9/+9
* [Modules][ObjC] Check definition from canonical decl on designated initializersBruno Cardoso Lopes2017-04-261-1/+10
* [ObjC][ARC] Avoid -Warc-performSelector-leaks for performSelector variationsAlex Lorenz2017-03-231-8/+6
* [Sema][ObjC] Warn about 'performSelector' calls with selectorsAlex Lorenz2017-03-061-6/+8
* [ObjC][Modules] Don't perform property lookup in hidden class extensionsAlex Lorenz2017-02-221-2/+2
* [ObjC] Prevent infinite loops when iterating over redeclarationAlex Lorenz2016-11-211-0/+6
* Retire llvm::alignOf in favor of C++11 alignof.Benjamin Kramer2016-10-201-3/+2
* ObjectiveC: fix a seg fault when deserialing redeclaration of ObjCMethodDecl.Manman Ren2016-10-031-3/+7
* ObjectiveC Generics: Start using ObjCTypeParamType.Manman Ren2016-09-131-2/+6
* Fix ObjCMethodDecl::findPropertyDecl for class properties.Jordan Rose2016-03-111-9/+15
* Class Property: change PropertyMap to include isClassProperty.Manman Ren2016-01-281-6/+8
* Class Property: class property and instance property can have the same name.Manman Ren2016-01-281-18/+65
* Class Property: handle class properties.Manman Ren2016-01-271-2/+2
* Use instance_properties instead of properties. NFC.Manman Ren2016-01-261-6/+6
* [TrailingObjects] Convert Decl* classes.James Y Knight2015-12-291-7/+7
* Stop back-patching 'readonly' Objective-C properties with 'readwrite' ones.Douglas Gregor2015-11-031-11/+65
* DeclObjC: Move computing the type of self into a separate function (NFC).Adrian Prantl2015-07-081-5/+13
* Use AlignOf instead of alignOf so that this can go back to being a static_ass...Aaron Ballman2015-07-071-3/+3
* Changing a use of alignof() into llvm::alignOf() for MSVC compatibility. This...Aaron Ballman2015-07-071-2/+3
* Don't rely on the use of non-POD types within unions.Douglas Gregor2015-07-071-1/+3
* [libclang] Replace ObjC generic parameters when code-completing method implem...Douglas Gregor2015-07-071-0/+6
* The AST importer had a bug where it would enter into an infinite recursionDouglas Gregor2015-07-071-13/+22
* Implement variance for Objective-C type parameters.Douglas Gregor2015-07-071-5/+13
* Improve the Objective-C common-type computation used by the ternary operator.Douglas Gregor2015-07-071-1/+1
* Substitute type arguments into uses of Objective-C interface members.Douglas Gregor2015-07-071-2/+28
* Handle Objective-C type arguments.Douglas Gregor2015-07-071-0/+27
* Parsing, semantic analysis, and AST for Objective-C type parameters.Douglas Gregor2015-07-071-4/+113
* Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").Alexander Kornienko2015-06-221-1/+1
* Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko2015-06-221-1/+1
* Extend type nullability qualifiers for Objective-C.Douglas Gregor2015-06-191-3/+5
* [modules] Deserialize CXXCtorInitializer list for a constructor lazily.Richard Smith2015-03-241-0/+5
* revert r231700 (designated initializer patch) which brokeFariborz Jahanian2015-03-111-10/+0
* [PATCH Sema Objective-C]. Patch to warn on missing designated initializerFariborz Jahanian2015-03-091-0/+10
* Fix ObjCInterfaceDecl::getCategoryMethod() and give it a caller. No behavior ...Nico Weber2015-03-021-2/+1
* Cleanup: remove artificial division between lookup results and const lookupRichard Smith2015-02-211-8/+8
* Prefer SmallVector::append/insert over push_back loops. Clang edition.Benjamin Kramer2015-02-171-3/+2