Searched refs:FirstType (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IteratorModeling.cpp | 384 const QualType FirstType = FirstArg->getType(); in handleOverloadedOperator() local 387 if (FirstType->isIntegralOrEnumerationType() || in handleOverloadedOperator() 391 const bool IsIterFirst = FirstType->isStructureOrClassType(); in handleOverloadedOperator()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 2254 QualType FirstType; in ActOnObjCForCollectionStmt() local 2264 FirstType = D->getType(); in ActOnObjCForCollectionStmt() 2273 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt() 2280 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt() 2285 D->setType(FirstType); in ActOnObjCForCollectionStmt() 2302 FirstType = static_cast<Expr*>(First)->getType(); in ActOnObjCForCollectionStmt() 2303 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt() 2305 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt() 2307 if (!FirstType->isDependentType() && in ActOnObjCForCollectionStmt() 2308 !FirstType->isObjCObjectPointerType() && in ActOnObjCForCollectionStmt() [all …]
|
| H A D | SemaDeclAttr.cpp | 3791 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local 3792 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr() 3795 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr() 3799 if (FirstType->isIncompleteType()) in handleTransparentUnionAttr() 3801 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr() 3802 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
|
| H A D | SemaExpr.cpp | 7397 if (!FirstType->isSizelessBuiltinType()) in isValidSveBitcast() 10105 auto IsSveConversion = [](QualType FirstType, QualType SecondType) { in CheckVectorOperands() argument 10107 return FirstType->isSizelessBuiltinType() && VecType && in CheckVectorOperands() 10121 const VectorType *FirstVecType = FirstType->getAs<VectorType>(); in CheckVectorOperands() 10131 return FirstType->isSizelessBuiltinType() && SecondVecType && in CheckVectorOperands() 16210 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local 16215 FirstType = DstType; in DiagnoseAssignmentResult() 16226 FirstType = SrcType; in DiagnoseAssignmentResult() 16243 FDiag << (isPlainChar(FirstType->getPointeeOrArrayElementType()) || in DiagnoseAssignmentResult() 16256 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); in DiagnoseAssignmentResult() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 8683 bool ASTContext::areCompatibleSveTypes(QualType FirstType, in areCompatibleSveTypes() argument 8689 auto IsValidCast = [this](QualType FirstType, QualType SecondType) { in areCompatibleSveTypes() argument 8690 if (const auto *BT = FirstType->getAs<BuiltinType>()) { in areCompatibleSveTypes() 8698 FirstType->getSveEltType(*this); in areCompatibleSveTypes() 8708 return IsValidCast(FirstType, SecondType) || in areCompatibleSveTypes() 8709 IsValidCast(SecondType, FirstType); in areCompatibleSveTypes() 8712 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType, in areLaxCompatibleSveTypes() argument 8719 const auto *BT = FirstType->getAs<BuiltinType>(); in areLaxCompatibleSveTypes() 8754 FirstType->getSveEltType(*this)->isIntegerType(); in areLaxCompatibleSveTypes() 8760 return IsLaxCompatible(FirstType, SecondType) || in areLaxCompatibleSveTypes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Demangle/ |
| H A D | ItaniumDemangle.h | 829 const Node *FirstType; variable 835 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName() 837 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match() 841 FirstType->print(S); in printLeft() 5158 Node *FirstType = getDerived().parseType(); in parseSpecialName() local 5159 if (FirstType == nullptr) in parseSpecialName() 5166 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 9677 QualType FirstType = FirstField->getType(); in diagnoseOdrViolations() local 9679 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations() 9683 << FirstII << FirstType; in diagnoseOdrViolations() 9787 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations() 9791 << IsTypeAlias << FirstName << FirstType; in diagnoseOdrViolations() 9818 QualType FirstType = FirstVD->getType(); in diagnoseOdrViolations() local 9820 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations() 9824 << FirstName << FirstType; in diagnoseOdrViolations() 10984 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations() 11109 QualType FirstType = FirstNTTPD->getType(); in diagnoseOdrViolations() local [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 2176 bool areCompatibleSveTypes(QualType FirstType, QualType SecondType); 2180 bool areLaxCompatibleSveTypes(QualType FirstType, QualType SecondType);
|
| /freebsd-13.1/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 3374 typedef typename RawPairType::first_type FirstType; 3380 testing::SafeMatcherCast<const FirstType&>(first_matcher)), 3449 const Matcher<const FirstType&> first_matcher_;
|