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

/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp385 const QualType SecondType = SecondArg->getType(); local
388 SecondType->isIntegralOrEnumerationType()) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp8657 QualType SecondType) {
8658 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) ||
8659 (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) &&
8662 auto IsValidCast = [this](QualType FirstType, QualType SecondType) {
8664 if (const auto *VT = SecondType->getAs<VectorType>()) {
8673 return getTypeSize(SecondType) == getLangOpts().ArmSveVectorBits &&
8681 return IsValidCast(FirstType, SecondType) ||
8682 IsValidCast(SecondType, FirstType);
8686 QualType SecondType) {
8687 assert(((FirstType->isSizelessBuiltinType() && SecondType
8656 areCompatibleSveTypes(QualType FirstType, QualType SecondType) argument
8685 areLaxCompatibleSveTypes(QualType FirstType, QualType SecondType) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h830 const Node *SecondType; member in class:final
835 FirstType(FirstType_), SecondType(SecondType_) {}
837 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); }
843 SecondType->print(S);
5163 Node *SecondType = getDerived().parseType();
5164 if (SecondType == nullptr)
5166 return make<CtorVtableSpecialName>(SecondType, FirstType);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp9649 QualType SecondType = SecondField->getType();
9651 ComputeQualTypeODRHash(SecondType)) {
9657 << SecondII << SecondType;
9757 QualType SecondType = SecondTD->getUnderlyingType();
9759 ComputeQualTypeODRHash(SecondType)) {
9765 << IsTypeAlias << SecondName << SecondType;
9790 QualType SecondType = SecondVD->getType();
9792 ComputeQualTypeODRHash(SecondType)) {
9798 << SecondName << SecondType;
10954 QualType SecondType
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTContext.h2131 bool areCompatibleSveTypes(QualType FirstType, QualType SecondType);
2135 bool areLaxCompatibleSveTypes(QualType FirstType, QualType SecondType);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h2604 typedef typename RawPairType::second_type SecondType; typedef in class:testing::internal::PairMatcherImpl
2611 testing::SafeMatcherCast<const SecondType&>(second_matcher)) {
2679 const Matcher<const SecondType&> second_matcher_;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp7332 auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) {
7336 const auto *VecTy = SecondType->getAs<VectorType>();
10041 auto IsSveConversion = [](QualType FirstType, QualType SecondType) {
10042 const VectorType *VecType = SecondType->getAs<VectorType>();
10056 auto IsSveGnuConversion = [](QualType FirstType, QualType SecondType) {
10058 const VectorType *SecondVecType = SecondType->getAs<VectorType>();
16051 QualType FirstType, SecondType; local
16057 SecondType = SrcType;
16068 SecondType = DstType;
16074 FDiag << FirstType << SecondType << AA_Passin
[all...]

Completed in 367 milliseconds