Searched refs:FirstType (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp384 const QualType FirstType = FirstArg->getType(); local
387 if (FirstType->isIntegralOrEnumerationType() ||
391 const bool IsIterFirst = FirstType->isStructureOrClassType();
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp2253 QualType FirstType; local
2263 FirstType = D->getType();
2272 if (FirstType->getContainedAutoType()) {
2276 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) ==
2279 if (FirstType.isNull()) {
2284 D->setType(FirstType);
2301 FirstType = static_cast<Expr*>(First)->getType();
2302 if (FirstType.isConstQualified())
2304 << FirstType << First->getSourceRange();
2306 if (!FirstType
[all...]
H A DSemaDeclAttr.cpp3706 QualType FirstType = FirstField->getType(); local
3707 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
3710 << FirstType->isVectorType() << FirstType;
3714 if (FirstType->isIncompleteType())
3716 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3717 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
H A DSemaExpr.cpp7332 auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) {
7333 if (!FirstType->isSizelessBuiltinType())
10041 auto IsSveConversion = [](QualType FirstType, QualType SecondType) {
10043 return FirstType->isSizelessBuiltinType() && VecType &&
10056 auto IsSveGnuConversion = [](QualType FirstType, QualType SecondType) {
10057 const VectorType *FirstVecType = FirstType->getAs<VectorType>();
10067 return FirstType->isSizelessBuiltinType() && SecondVecType &&
16051 QualType FirstType, SecondType; local
16056 FirstType = DstType;
16067 FirstType
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp8656 bool ASTContext::areCompatibleSveTypes(QualType FirstType, argument
8658 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) ||
8659 (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) &&
8662 auto IsValidCast = [this](QualType FirstType, QualType SecondType) {
8663 if (const auto *BT = FirstType->getAs<BuiltinType>()) {
8671 FirstType->getSveEltType(*this);
8681 return IsValidCast(FirstType, SecondType) ||
8682 IsValidCast(SecondType, FirstType);
8685 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType, argument
8687 assert(((FirstType
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h829 const Node *FirstType; member in class:final
835 FirstType(FirstType_), SecondType(SecondType_) {}
837 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); }
841 FirstType->print(S);
5158 Node *FirstType = getDerived().parseType(); local
5159 if (FirstType == nullptr)
5166 return make<CtorVtableSpecialName>(SecondType, FirstType);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp9648 QualType FirstType = FirstField->getType();
9650 if (ComputeQualTypeODRHash(FirstType) !=
9654 << FirstII << FirstType;
9756 QualType FirstType = FirstTD->getUnderlyingType();
9758 if (ComputeQualTypeODRHash(FirstType) !=
9762 << IsTypeAlias << FirstName << FirstType;
9789 QualType FirstType = FirstVD->getType();
9791 if (ComputeQualTypeODRHash(FirstType) !=
9795 << FirstName << FirstType;
10953 QualType FirstType
[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.h2603 typedef typename RawPairType::first_type FirstType; typedef in class:testing::internal::PairMatcherImpl
2609 testing::SafeMatcherCast<const FirstType&>(first_matcher)),
2678 const Matcher<const FirstType&> first_matcher_;

Completed in 579 milliseconds