Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DPDB.cpp134 const CVType &FirstType);
140 mergeInPrecompHeaderObj(ObjFile *File, const CVType &FirstType,
465 auto FirstType = Types.begin(); in mergeDebugT() local
466 if (FirstType == Types.end()) in mergeDebugT()
469 if (FirstType->kind() == LF_TYPESERVER2) { in mergeDebugT()
472 return maybeMergeTypeServerPDB(File, *FirstType); in mergeDebugT()
473 } else if (FirstType->kind() == LF_PRECOMP) { in mergeDebugT()
478 auto E = mergeInPrecompHeaderObj(File, *FirstType, ObjectIndexMap); in mergeDebugT()
487 Types.getUnderlyingStream().drop_front(FirstType->RecordData.size())); in mergeDebugT()
554 PDBLinker::maybeMergeTypeServerPDB(ObjFile *File, const CVType &FirstType) { in maybeMergeTypeServerPDB() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1896 QualType FirstType; in ActOnObjCForCollectionStmt() local
1906 FirstType = D->getType(); in ActOnObjCForCollectionStmt()
1915 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt()
1922 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt()
1927 D->setType(FirstType); in ActOnObjCForCollectionStmt()
1944 FirstType = static_cast<Expr*>(First)->getType(); in ActOnObjCForCollectionStmt()
1945 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt()
1947 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt()
1949 if (!FirstType->isDependentType() && in ActOnObjCForCollectionStmt()
1950 !FirstType->isObjCObjectPointerType() && in ActOnObjCForCollectionStmt()
[all …]
H A DSemaDeclAttr.cpp3513 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local
3514 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
3517 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr()
3521 if (FirstType->isIncompleteType()) in handleTransparentUnionAttr()
3523 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr()
3524 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
H A DSemaExpr.cpp14139 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local
14144 FirstType = DstType; in DiagnoseAssignmentResult()
14155 FirstType = SrcType; in DiagnoseAssignmentResult()
14162 FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange(); in DiagnoseAssignmentResult()
14164 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); in DiagnoseAssignmentResult()
14177 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); in DiagnoseAssignmentResult()
14187 FirstType, /*TakingAddress=*/true); in DiagnoseAssignmentResult()
/freebsd-12.1/contrib/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h852 const Node *FirstType; variable
858 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName()
860 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match()
864 FirstType->print(S); in printLeft()
4728 Node *FirstType = getDerived().parseType(); in parseSpecialName() local
4729 if (FirstType == nullptr) in parseSpecialName()
4736 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp10252 QualType FirstType = FirstField->getType(); in diagnoseOdrViolations() local
10254 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations()
10258 << FirstII << FirstType; in diagnoseOdrViolations()
10717 QualType FirstType = FirstTD->getUnderlyingType(); in diagnoseOdrViolations() local
10719 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations()
10748 QualType FirstType = FirstVD->getType(); in diagnoseOdrViolations() local
10750 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations()
10754 << FirstName << FirstType; in diagnoseOdrViolations()
10955 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations()
11072 QualType FirstType = FirstNTTPD->getType(); in diagnoseOdrViolations() local
[all …]
/freebsd-12.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3374 typedef typename RawPairType::first_type FirstType;
3380 testing::SafeMatcherCast<const FirstType&>(first_matcher)),
3449 const Matcher<const FirstType&> first_matcher_;