Home
last modified time | relevance | path

Searched refs:FirstType (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjC.cpp45 QualType FirstType; in ActOnObjCForCollectionStmt() local
55 FirstType = D->getType(); in ActOnObjCForCollectionStmt()
64 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt()
69 FirstType = QualType(); in ActOnObjCForCollectionStmt()
71 D->getTypeSourceInfo()->getTypeLoc(), DeducedInit, FirstType, Info); in ActOnObjCForCollectionStmt()
75 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt()
80 D->setType(FirstType); in ActOnObjCForCollectionStmt()
96 FirstType = static_cast<Expr *>(First)->getType(); in ActOnObjCForCollectionStmt()
97 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt()
99 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt()
[all …]
H A DSemaRISCV.cpp1414 auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) { in isValidRVVBitcast() argument
1415 if (!FirstType->isRVVSizelessBuiltinType()) in isValidRVVBitcast()
H A DSemaDeclAttr.cpp3797 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local
3798 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
3801 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr()
3805 if (FirstType->isIncompleteType()) in handleTransparentUnionAttr()
3807 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr()
3808 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
H A DSemaExpr.cpp7447 auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) { in isValidSveBitcast() argument
7448 if (!FirstType->isSVESizelessBuiltinType()) in isValidSveBitcast()
10139 auto IsSveRVVConversion = [](QualType FirstType, QualType SecondType, in CheckVectorOperands()
10143 if (FirstType->isSizelessBuiltinType() && VecType) { in CheckVectorOperands()
10167 auto IsSveRVVGnuConversion = [](QualType FirstType, QualType SecondType, in CheckVectorOperands()
10169 const VectorType *FirstVecType = FirstType->getAs<VectorType>(); in CheckVectorOperands()
10190 if (FirstType->isSVESizelessBuiltinType()) in CheckVectorOperands()
10192 if (FirstType->isRVVSizelessBuiltinType()) { in CheckVectorOperands()
16808 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local
16813 FirstType = DstType; in DiagnoseAssignmentResult()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DODRDiagsEmitter.cpp178 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
278 if (computeODRHash(FirstType) != computeODRHash(SecondType)) { in diagnoseSubMismatchTypedef()
279 DiagError(TypedefType) << IsTypeAlias << FirstName << FirstType; in diagnoseSubMismatchTypedef()
319 QualType FirstType = FirstVD->getType(); in diagnoseSubMismatchVar() local
321 if (computeODRHash(FirstType) != computeODRHash(SecondType)) { in diagnoseSubMismatchVar()
322 DiagError(VarType) << FirstName << FirstType; in diagnoseSubMismatchVar()
1503 QualType FirstType = FirstNTTPD->getType(); in diagnoseMismatch() local
[all …]
H A DASTContext.cpp9901 bool ASTContext::areCompatibleSveTypes(QualType FirstType, in areCompatibleSveTypes() argument
9903 auto IsValidCast = [this](QualType FirstType, QualType SecondType) { in areCompatibleSveTypes() argument
9904 if (const auto *BT = FirstType->getAs<BuiltinType>()) { in areCompatibleSveTypes()
9912 FirstType->getSveEltType(*this); in areCompatibleSveTypes()
9922 return IsValidCast(FirstType, SecondType) || in areCompatibleSveTypes()
9923 IsValidCast(SecondType, FirstType); in areCompatibleSveTypes()
9926 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType, in areLaxCompatibleSveTypes() argument
9928 auto IsLaxCompatible = [this](QualType FirstType, QualType SecondType) { in areLaxCompatibleSveTypes() argument
9929 const auto *BT = FirstType->getAs<BuiltinType>(); in areLaxCompatibleSveTypes()
9963 FirstType->getSveEltType(*this)->isIntegerType(); in areLaxCompatibleSveTypes()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeMap.h44 lldb::TypeSP FirstType() const;
H A DType.h349 lldb::TypeSP GetFirstType() const { return m_type_map.FirstType(); } in GetFirstType()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DTypeMap.cpp94 lldb::TypeSP TypeMap::FirstType() const { in FirstType() function in TypeMap
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp553 CVTypeArray::Iterator FirstType = CVTypes.begin(); in traverseTypeSection()
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()
555 CVTypeArray::Iterator FirstType = CVTypes.begin(); traverseTypeSection() local
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp381 const QualType FirstType = FirstArg->getType(); in handleOverloadedOperator() local
384 if (FirstType->isIntegralOrEnumerationType() || in handleOverloadedOperator()
388 const bool IsIterFirst = FirstType->isStructureOrClassType(); in handleOverloadedOperator()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2340 bool areCompatibleSveTypes(QualType FirstType, QualType SecondType);
2344 bool areLaxCompatibleSveTypes(QualType FirstType, QualType SecondType);
2349 bool areCompatibleRVVTypes(QualType FirstType, QualType SecondType);
2355 bool areLaxCompatibleRVVTypes(QualType FirstType, QualType SecondType);
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h1019 const Node *FirstType; variable
1025 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName()
1027 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match()
1031 FirstType->print(OB); in printLeft()
5321 Node *FirstType = getDerived().parseType(); in parseSpecialName() local
5322 if (FirstType == nullptr) in parseSpecialName()
5329 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3058 typedef typename RawPairType::first_type FirstType;
3064 testing::SafeMatcherCast<const FirstType&>(first_matcher)),
3132 const Matcher<const FirstType&> first_matcher_;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp177 TypeSP pcm_type_sp = results.GetTypeMap().FirstType(); in ParseTypeFromClangModule()
191 pcm_type_sp = results.GetTypeMap().FirstType(); in ParseTypeFromClangModule()