Home
last modified time | relevance | path

Searched refs:SecondType (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DODRDiagsEmitter.cpp179 QualType SecondType = SecondField->getType(); in diagnoseSubMismatchField() local
180 if (computeODRHash(FirstType) != computeODRHash(SecondType)) { in diagnoseSubMismatchField()
182 DiagNote(FieldTypeName) << SecondII << SecondType; in diagnoseSubMismatchField()
277 QualType SecondType = SecondTD->getUnderlyingType(); in diagnoseSubMismatchTypedef() local
320 QualType SecondType = SecondVD->getType(); in diagnoseSubMismatchVar() local
323 DiagNote(VarType) << SecondName << SecondType; in diagnoseSubMismatchVar()
1418 << (i + 1) << SecondType; in diagnoseMismatch()
1502 QualType SecondType = SecondNTTPD->getType(); in diagnoseMismatch() local
1986 QualType SecondType; in diagnoseMismatch() local
1988 SecondType = SecondSuperInfo->getType(); in diagnoseMismatch()
[all …]
H A DASTContext.cpp9442 QualType SecondType) { in areCompatibleSveTypes() argument
9467 return IsValidCast(FirstType, SecondType) || in areCompatibleSveTypes()
9468 IsValidCast(SecondType, FirstType); in areCompatibleSveTypes()
9483 const auto *VecTy = SecondType->getAs<VectorType>(); in areLaxCompatibleSveTypes()
9519 return IsLaxCompatible(FirstType, SecondType) || in areLaxCompatibleSveTypes()
9520 IsLaxCompatible(SecondType, FirstType); in areLaxCompatibleSveTypes()
9567 return IsValidCast(FirstType, SecondType) || in areCompatibleRVVTypes()
9568 IsValidCast(SecondType, FirstType); in areCompatibleRVVTypes()
9586 const auto *VecTy = SecondType->getAs<VectorType>(); in areLaxCompatibleRVVTypes()
9610 return IsLaxCompatible(FirstType, SecondType) || in areLaxCompatibleRVVTypes()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp381 const QualType SecondType = SecondArg->getType(); in handleOverloadedOperator() local
384 SecondType->isIntegralOrEnumerationType()) { in handleOverloadedOperator()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2263 bool areCompatibleSveTypes(QualType FirstType, QualType SecondType);
2267 bool areLaxCompatibleSveTypes(QualType FirstType, QualType SecondType);
2272 bool areCompatibleRVVTypes(QualType FirstType, QualType SecondType);
2278 bool areLaxCompatibleRVVTypes(QualType FirstType, QualType SecondType);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h1021 const Node *SecondType; variable
1026 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName()
1028 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match()
1034 SecondType->print(OB); in printLeft()
5327 Node *SecondType = getDerived().parseType(); in parseSpecialName() local
5328 if (SecondType == nullptr) in parseSpecialName()
5330 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp8264 const auto *VecTy = SecondType->getAs<VectorType>(); in isValidSveBitcast()
8285 const auto *VecTy = SecondType->getAs<VectorType>(); in isValidRVVBitcast()
11137 auto IsSveRVVConversion = [](QualType FirstType, QualType SecondType, in CheckVectorOperands()
11139 const VectorType *VecType = SecondType->getAs<VectorType>(); in CheckVectorOperands()
11168 const VectorType *SecondVecType = SecondType->getAs<VectorType>(); in CheckVectorOperands()
17865 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local
17871 SecondType = SrcType; in DiagnoseAssignmentResult()
17882 SecondType = DstType; in DiagnoseAssignmentResult()
17891 FDiag << FirstType << SecondType << ActionForDiag in DiagnoseAssignmentResult()
17913 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); in DiagnoseAssignmentResult()
[all …]
/freebsd-14.2/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3058 typedef typename RawPairType::second_type SecondType;
3065 testing::SafeMatcherCast<const SecondType&>(second_matcher)) {}
3132 const Matcher<const SecondType&> second_matcher_;