Home
last modified time | relevance | path

Searched refs:RHSType (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/Sema/
DSemaExpr.cpp1032 QualType RHSType, in handleComplexFloatConversion() argument
1035 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, in handleComplexFloatConversion()
1038 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, in handleComplexFloatConversion()
1040 return RHSType; in handleComplexFloatConversion()
1054 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType); in handleComplexFloatConversion()
1057 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType); in handleComplexFloatConversion()
1061 RHSComplexType ? RHSComplexType->getElementType() : RHSType; in handleComplexFloatConversion()
1119 QualType RHSType, bool IsCompAssign) { in handleFloatConversion() argument
1121 bool RHSFloat = RHSType->isRealFloatingType(); in handleFloatConversion()
1126 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); in handleFloatConversion()
[all …]
DSemaObjCProperty.cpp833 QualType RHSType = S.Context.getCanonicalType(Property->getType()); in DiagnosePropertyMismatchDeclInProtocols() local
839 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatchDeclInProtocols()
842 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC) in DiagnosePropertyMismatchDeclInProtocols()
1472 QualType RHSType = in DiagnosePropertyMismatch() local
1475 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatch()
1480 if (!isObjCPointerConversion(RHSType, LHSType, in DiagnosePropertyMismatch()
DSemaExprCXX.cpp4807 QualType RHSType = RHS.get()->getType(); in CheckPointerToMemberOperands() local
4808 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>(); in CheckPointerToMemberOperands()
4811 << OpSpelling << RHSType << RHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
4896 << RHSType << 1 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
4902 << RHSType << 0 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
DSemaChecking.cpp3395 QualType RHSType = TheCall->getArg(1)->getType(); in SemaBuiltinShuffleVector() local
3397 if (!LHSType->isVectorType() || !RHSType->isVectorType()) in SemaBuiltinShuffleVector()
3410 if (!RHSType->hasIntegerRepresentation() || in SemaBuiltinShuffleVector()
3411 RHSType->getAs<VectorType>()->getNumElements() != numElements) in SemaBuiltinShuffleVector()
3416 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) { in SemaBuiltinShuffleVector()
/external/compiler-rt/lib/ubsan/
Dubsan_handlers.h66 const TypeDescriptor &RHSType; member
Dubsan_handlers.cc224 Value RHSVal(Data->RHSType, RHS); in handleShiftOutOfBoundsImpl()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombinePHI.cpp32 Type *RHSType = RHSVal->getType(); in FoldPHIArgBinOpIntoPHI() local
50 I->getOperand(1)->getType() != RHSType) in FoldPHIArgBinOpIntoPHI()
91 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(), in FoldPHIArgBinOpIntoPHI()
/external/llvm/lib/MC/
DELFObjectWriter.cpp86 unsigned RHSType = RHS.Symbol->getType(); in operator <() local
87 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION) in operator <()
89 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION) in operator <()
91 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION) in operator <()
/external/llvm/lib/Transforms/InstCombine/
DInstCombinePHI.cpp36 Type *RHSType = RHSVal->getType(); in FoldPHIArgBinOpIntoPHI() local
45 I->getOperand(1)->getType() != RHSType) in FoldPHIArgBinOpIntoPHI()
79 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(), in FoldPHIArgBinOpIntoPHI()
/external/clang/include/clang/Sema/
DSema.h8706 QualType RHSType);