llvm-project/clang/lib/Sema
Argyrios Kyrtzidis e6e67deeed Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset.
It already works (and is useful with) macro locs as well.

llvm-svn: 140057
2011-09-19 20:40:19 +00:00
..
AnalysisBasedWarnings.cpp Thread safety: refactoring various out of scope warnings to use the same inteface. This eliminates a lot of unnecessary duplicated code. 2011-09-15 17:25:19 +00:00
AttributeList.cpp Added basic parsing for all remaining attributes, thread safety 2011-07-28 20:12:35 +00:00
CMakeLists.txt Refactor the */& mismatch fixit generation out of SemaOverload and provide a simple conversion checking function. 2011-07-28 19:46:48 +00:00
CodeCompleteConsumer.cpp When performing code completion after at @interface, allow both 2011-07-30 06:55:39 +00:00
DeclSpec.cpp Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. 2011-09-19 20:40:19 +00:00
DelayedDiagnostic.cpp remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports 2011-07-23 10:55:15 +00:00
IdentifierResolver.cpp Fix the insertion of label declarations into the identifier chain in 2011-03-24 10:35:39 +00:00
JumpDiagnostics.cpp Move the "jump bypasses variable initialization" error -> warning downgrade from -fms-extensions to -fms-compatibility. 2011-09-18 21:48:27 +00:00
Makefile BUILD_ARCHIVE is the default for libraries, no need to set it. 2010-07-18 00:14:47 +00:00
Scope.cpp Store a parameter index and function prototype depth in every 2011-05-01 22:35:37 +00:00
Sema.cpp Give conversions of block pointers to ObjC pointers a different cast kind 2011-09-09 05:25:32 +00:00
SemaAccess.cpp Removed an unused field and its accessors methods. 2011-09-19 15:10:40 +00:00
SemaAttr.cpp Change all references of type ExprTy to Expr and get rid of the typedefs. 2011-09-09 02:00:50 +00:00
SemaCXXCast.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
SemaCXXScopeSpec.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
SemaChecking.cpp Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. 2011-09-19 20:40:19 +00:00
SemaCodeComplete.cpp Change all references of type ExprTy to Expr and get rid of the typedefs. 2011-09-09 02:00:50 +00:00
SemaDecl.cpp Fix PR10531. Attach an initializer to anonymous unions, since the default constructor might not be trivial (if there is an in-class initializer for some member) and might be deleted. 2011-09-18 00:06:34 +00:00
SemaDeclAttr.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
SemaDeclCXX.cpp Removed an unused field and its accessors methods. 2011-09-19 15:10:40 +00:00
SemaDeclObjC.cpp Give conversions of block pointers to ObjC pointers a different cast kind 2011-09-09 05:25:32 +00:00
SemaExceptionSpec.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
SemaExpr.cpp Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. 2011-09-19 20:40:19 +00:00
SemaExprCXX.cpp Finish the lex->LHS and rex->RHS cleanup in Sema. 2011-09-15 21:56:47 +00:00
SemaExprMember.cpp Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. 2011-09-19 20:40:19 +00:00
SemaExprObjC.cpp objc - Treat type of 'self' in class methods as root of 2011-09-17 19:23:40 +00:00
SemaFixItUtils.cpp Refactor the */& mismatch fixit generation out of SemaOverload and provide a simple conversion checking function. 2011-07-28 19:46:48 +00:00
SemaInit.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
SemaLookup.cpp Fix Sema::CorrectTypo to ignore found but unresolved symbols 2011-09-07 20:25:59 +00:00
SemaObjCProperty.cpp CurContext cannot be null ever. 2011-09-19 16:32:32 +00:00
SemaOverload.cpp In Microsoft mode(-fms-compatibility), prefer an integral conversion to a floating-to-integral conversion if the integral conversion is between types of the same size. 2011-09-18 21:37:37 +00:00
SemaStmt.cpp PR10864: make sure we correctly delay type-checking for inline asm tied operands with dependent type. Patch by Likai Liu. 2011-09-14 19:20:00 +00:00
SemaTemplate.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
SemaTemplateDeduction.cpp Fix a typo when determining whether to strip cv-qualifiers during template argument deduction 2011-08-30 00:37:54 +00:00
SemaTemplateInstantiate.cpp Implement function template specialization at class scope extension in Microsoft mode. A new AST node is introduced: ClassScopeFunctionSpecialization. This node holds a FunctionDecl that is not yet specialized; then during the class template instantiation the ClassScopeFunctionSpecialization will spawn the actual function specialization. 2011-08-14 03:52:19 +00:00
SemaTemplateInstantiateDecl.cpp Changed references of BaseTy, MemInitTy, CXXScopeTy, TemplateParamsTy to CXXBaseSpecifier, CXXCtorInitializer, NestedNameSpecifier, TemplateParameterList and removed their typedefs. 2011-09-09 03:18:59 +00:00
SemaTemplateVariadic.cpp remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports 2011-07-23 10:55:15 +00:00
SemaType.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
TargetAttributesSema.cpp Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. 2011-09-17 17:15:52 +00:00
TargetAttributesSema.h Remove Sema.h's dependency on DeclCXX.h. 2010-08-25 07:42:41 +00:00
TreeTransform.h The lock operand to an @synchronized statement is also 2011-07-27 21:50:02 +00:00
TypeLocBuilder.h Remove more unnecessary #include <llvm/ADT/SmallVector.h> 2011-06-20 06:11:46 +00:00