Searched refs:RHSType (Results 1 – 9 of 9) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 1020 QualType RHSType, in handleComplexFloatConversion() argument 1023 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, in handleComplexFloatConversion() 1026 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, in handleComplexFloatConversion() 1028 return RHSType; in handleComplexFloatConversion() 1042 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType); in handleComplexFloatConversion() 1045 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType); in handleComplexFloatConversion() 1049 RHSComplexType ? RHSComplexType->getElementType() : RHSType; in handleComplexFloatConversion() 1107 QualType RHSType, bool IsCompAssign) { in handleFloatConversion() argument 1109 bool RHSFloat = RHSType->isRealFloatingType(); in handleFloatConversion() 1114 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); in handleFloatConversion() [all …]
|
D | SemaObjCProperty.cpp | 824 QualType RHSType = S.Context.getCanonicalType(Property->getType()); in DiagnosePropertyMismatchDeclInProtocols() local 830 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatchDeclInProtocols() 833 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC) in DiagnosePropertyMismatchDeclInProtocols() 1457 QualType RHSType = in DiagnosePropertyMismatch() local 1460 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatch() 1465 if (!isObjCPointerConversion(RHSType, LHSType, in DiagnosePropertyMismatch()
|
D | SemaExprCXX.cpp | 4543 QualType RHSType = RHS.get()->getType(); in CheckPointerToMemberOperands() local 4544 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>(); in CheckPointerToMemberOperands() 4547 << OpSpelling << RHSType << RHS.get()->getSourceRange(); in CheckPointerToMemberOperands() 4632 << RHSType << 1 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands() 4638 << RHSType << 0 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
|
D | SemaChecking.cpp | 2664 QualType RHSType = TheCall->getArg(1)->getType(); in SemaBuiltinShuffleVector() local 2666 if (!LHSType->isVectorType() || !RHSType->isVectorType()) in SemaBuiltinShuffleVector() 2679 if (!RHSType->hasIntegerRepresentation() || in SemaBuiltinShuffleVector() 2680 RHSType->getAs<VectorType>()->getNumElements() != numElements) in SemaBuiltinShuffleVector() 2685 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) { in SemaBuiltinShuffleVector()
|
/external/compiler-rt/lib/ubsan/ |
D | ubsan_handlers.h | 66 const TypeDescriptor &RHSType; member
|
D | ubsan_handlers.cc | 224 Value RHSVal(Data->RHSType, RHS); in handleShiftOutOfBoundsImpl()
|
/external/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 87 unsigned RHSType = RHS.Symbol->getType(); in operator <() local 88 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION) in operator <() 90 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION) in operator <() 92 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION) in operator <()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombinePHI.cpp | 33 Type *RHSType = RHSVal->getType(); in FoldPHIArgBinOpIntoPHI() local 51 I->getOperand(1)->getType() != RHSType) in FoldPHIArgBinOpIntoPHI() 92 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(), in FoldPHIArgBinOpIntoPHI()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 8402 QualType RHSType);
|