| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ODRDiagsEmitter.cpp | 178 QualType FirstType = FirstField->getType(); in diagnoseSubMismatchField() local 180 if (computeODRHash(FirstType) != computeODRHash(SecondType)) { in diagnoseSubMismatchField() 181 DiagError(FieldTypeName) << FirstII << FirstType; in diagnoseSubMismatchField() 276 QualType FirstType = FirstTD->getUnderlyingType(); in diagnoseSubMismatchTypedef() local 319 QualType FirstType = FirstVD->getType(); in diagnoseSubMismatchVar() local 322 DiagError(VarType) << FirstName << FirstType; in diagnoseSubMismatchVar() 1416 << (i + 1) << FirstType; in diagnoseMismatch() 1501 QualType FirstType = FirstNTTPD->getType(); in diagnoseMismatch() local 1977 QualType FirstType; in diagnoseMismatch() local 1979 FirstType = FirstSuperInfo->getType(); in diagnoseMismatch() [all …]
|
| H A D | ASTContext.cpp | 9457 FirstType->getSveEltType(*this); in areCompatibleSveTypes() 9467 return IsValidCast(FirstType, SecondType) || in areCompatibleSveTypes() 9468 IsValidCast(SecondType, FirstType); in areCompatibleSveTypes() 9519 return IsLaxCompatible(FirstType, SecondType) || in areLaxCompatibleSveTypes() 9520 IsLaxCompatible(SecondType, FirstType); in areLaxCompatibleSveTypes() 9552 return FirstType->isRVVVLSBuiltinType() && in areCompatibleRVVTypes() 9558 return FirstType->isRVVVLSBuiltinType() && in areCompatibleRVVTypes() 9567 return IsValidCast(FirstType, SecondType) || in areCompatibleRVVTypes() 9568 IsValidCast(SecondType, FirstType); in areCompatibleRVVTypes() 9610 return IsLaxCompatible(FirstType, SecondType) || in areLaxCompatibleRVVTypes() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | TypeMap.h | 44 lldb::TypeSP FirstType() const;
|
| H A D | Type.h | 345 lldb::TypeSP GetFirstType() const { return m_type_map.FirstType(); } in GetFirstType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewReader.cpp | 553 CVTypeArray::Iterator FirstType = CVTypes.begin(); in traverseTypeSection() local 556 if (FirstType->kind() == LF_TYPESERVER2) { in traverseTypeSection() 558 TypeDeserializer::deserializeAs<TypeServer2Record>(FirstType->data())); in traverseTypeSection() 564 if (FirstType->kind() == LF_PRECOMP) { in traverseTypeSection() 566 TypeDeserializer::deserializeAs<PrecompRecord>(FirstType->data())); in traverseTypeSection()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | TypeMap.cpp | 94 lldb::TypeSP TypeMap::FirstType() const { in FirstType() function in TypeMap
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IteratorModeling.cpp | 380 const QualType FirstType = FirstArg->getType(); in handleOverloadedOperator() local 383 if (FirstType->isIntegralOrEnumerationType() || in handleOverloadedOperator() 387 const bool IsIterFirst = FirstType->isStructureOrClassType(); in handleOverloadedOperator()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 2301 QualType FirstType; in ActOnObjCForCollectionStmt() local 2311 FirstType = D->getType(); in ActOnObjCForCollectionStmt() 2320 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt() 2325 FirstType = QualType(); in ActOnObjCForCollectionStmt() 2330 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt() 2335 D->setType(FirstType); in ActOnObjCForCollectionStmt() 2353 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt() 2355 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt() 2357 if (!FirstType->isDependentType() && in ActOnObjCForCollectionStmt() 2358 !FirstType->isObjCObjectPointerType() && in ActOnObjCForCollectionStmt() [all …]
|
| H A D | SemaExpr.cpp | 8261 if (!FirstType->isSVESizelessBuiltinType()) in isValidSveBitcast() 8282 if (!FirstType->isRVVSizelessBuiltinType()) in isValidRVVBitcast() 11141 if (FirstType->isSizelessBuiltinType() && VecType) { in CheckVectorOperands() 11188 if (FirstType->isSVESizelessBuiltinType()) in CheckVectorOperands() 11190 if (FirstType->isRVVSizelessBuiltinType()) { in CheckVectorOperands() 17865 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local 17870 FirstType = DstType; in DiagnoseAssignmentResult() 17881 FirstType = SrcType; in DiagnoseAssignmentResult() 17891 FDiag << FirstType << SecondType << ActionForDiag in DiagnoseAssignmentResult() 17913 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); in DiagnoseAssignmentResult() [all …]
|
| H A D | SemaDeclAttr.cpp | 4274 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local 4275 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr() 4278 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr() 4282 if (FirstType->isIncompleteType()) in handleTransparentUnionAttr() 4284 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr() 4285 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 2263 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 D | ItaniumDemangle.h | 1020 const Node *FirstType; variable 1026 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName() 1028 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match() 1032 FirstType->print(OB); in printLeft() 5322 Node *FirstType = getDerived().parseType(); in parseSpecialName() local 5323 if (FirstType == nullptr) in parseSpecialName() 5330 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
|
| /freebsd-14.2/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 3057 typedef typename RawPairType::first_type FirstType; 3063 testing::SafeMatcherCast<const FirstType&>(first_matcher)), 3131 const Matcher<const FirstType&> first_matcher_;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 175 TypeSP pcm_type_sp = results.GetTypeMap().FirstType(); in ParseTypeFromClangModule() 189 pcm_type_sp = results.GetTypeMap().FirstType(); in ParseTypeFromClangModule()
|