/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorIndexList.h | 299 template<typename FirstType, typename... OtherTypes> 300 struct IndexList : internal::IndexTuple<FirstType, OtherTypes...> { 302 …return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >… 305 …return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >… 308 …return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >… 311 …texpr IndexList(const internal::IndexTuple<FirstType, OtherTypes...>& other) : internal::IndexTupl… 312 …EIGEN_DEVICE_FUNC constexpr IndexList(FirstType& first, OtherTypes... other) : internal::IndexTupl… 313 EIGEN_DEVICE_FUNC constexpr IndexList() : internal::IndexTuple<FirstType, OtherTypes...>() { } 316 …return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >… 319 …return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >… [all …]
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
D | p5-0x.cpp | 11 template<typename R, typename FirstType, typename ...Types> 12 struct has_nondeduced_pack_test<R(FirstType, Types..., int), 13 R(FirstType, Types...)> {
|
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
D | p5-0x.cpp | 10 template<typename R, typename FirstType, typename ...Types> 11 struct has_nondeduced_pack_test<R(FirstType, Types..., int), 12 R(FirstType, Types...)> {
|
/external/llvm-project/clang/test/Index/ |
D | objc-typeargs-protocols.m | 14 @interface Foo<FirstType, SecondType> : Base
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1779 QualType FirstType; in ActOnObjCForCollectionStmt() local 1789 FirstType = D->getType(); in ActOnObjCForCollectionStmt() 1798 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt() 1802 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) == in ActOnObjCForCollectionStmt() 1805 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt() 1810 D->setType(FirstType); in ActOnObjCForCollectionStmt() 1827 FirstType = static_cast<Expr*>(First)->getType(); in ActOnObjCForCollectionStmt() 1828 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt() 1830 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt() 1832 if (!FirstType->isDependentType() && in ActOnObjCForCollectionStmt() [all …]
|
D | SemaDeclAttr.cpp | 3038 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local 3039 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr() 3042 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr() 3046 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr() 3047 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
|
/external/libbrillo/brillo/dbus/ |
D | data_serialization.h | 542 template<typename FirstType, typename... RestOfTypes> 543 struct TupleTraits<FirstType, RestOfTypes...> { 545 return GetDBusSignature<FirstType>() +
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
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()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmt.cpp | 1961 QualType FirstType; in ActOnObjCForCollectionStmt() local 1971 FirstType = D->getType(); in ActOnObjCForCollectionStmt() 1980 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt() 1984 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) == in ActOnObjCForCollectionStmt() 1987 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt() 1992 D->setType(FirstType); in ActOnObjCForCollectionStmt() 2009 FirstType = static_cast<Expr*>(First)->getType(); in ActOnObjCForCollectionStmt() 2010 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt() 2012 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt() 2014 if (!FirstType->isDependentType() && in ActOnObjCForCollectionStmt() [all …]
|
D | SemaDeclAttr.cpp | 3645 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local 3646 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr() 3649 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr() 3653 if (FirstType->isIncompleteType()) in handleTransparentUnionAttr() 3655 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr() 3656 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
|
D | SemaExpr.cpp | 7274 auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) { in isValidSveBitcast() argument 7275 if (!FirstType->isSizelessBuiltinType()) in isValidSveBitcast() 9941 auto IsSveConversion = [](QualType FirstType, QualType SecondType) { in CheckVectorOperands() argument 9943 return FirstType->isSizelessBuiltinType() && VecType && in CheckVectorOperands() 9956 auto IsSveGnuConversion = [](QualType FirstType, QualType SecondType) { in CheckVectorOperands() argument 9957 const VectorType *FirstVecType = FirstType->getAs<VectorType>(); in CheckVectorOperands() 9967 return FirstType->isSizelessBuiltinType() && SecondVecType && in CheckVectorOperands() 15932 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local 15937 FirstType = DstType; in DiagnoseAssignmentResult() 15948 FirstType = SrcType; in DiagnoseAssignmentResult() [all …]
|
/external/libtextclassifier/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 389 template <typename FirstType, typename SecondType, typename Splitter> 391 std::pair<FirstType, SecondType> p = splitter; in TestPairConversionOperator() 392 EXPECT_EQ(p, (std::pair<FirstType, SecondType>("a", "b"))); in TestPairConversionOperator()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 389 template <typename FirstType, typename SecondType, typename Splitter> 391 std::pair<FirstType, SecondType> p = splitter; in TestPairConversionOperator() 392 EXPECT_EQ(p, (std::pair<FirstType, SecondType>("a", "b"))); in TestPairConversionOperator()
|
/external/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 387 template <typename FirstType, typename SecondType, typename Splitter> 389 std::pair<FirstType, SecondType> p = splitter; in TestPairConversionOperator() 390 EXPECT_EQ(p, (std::pair<FirstType, SecondType>("a", "b"))); in TestPairConversionOperator()
|
/external/openscreen/third_party/abseil/src/absl/strings/ |
D | str_split_test.cc | 389 template <typename FirstType, typename SecondType, typename Splitter> 391 std::pair<FirstType, SecondType> p = splitter; in TestPairConversionOperator() 392 EXPECT_EQ(p, (std::pair<FirstType, SecondType>("a", "b"))); in TestPairConversionOperator()
|
/external/webrtc/third_party/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 387 template <typename FirstType, typename SecondType, typename Splitter> 389 std::pair<FirstType, SecondType> p = splitter; in TestPairConversionOperator() 390 EXPECT_EQ(p, (std::pair<FirstType, SecondType>("a", "b"))); in TestPairConversionOperator()
|
/external/angle/third_party/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 391 template <typename FirstType, typename SecondType, typename Splitter> 393 std::pair<FirstType, SecondType> p = splitter; in TestPairConversionOperator() 394 EXPECT_EQ(p, (std::pair<FirstType, SecondType>("a", "b"))); in TestPairConversionOperator()
|
/external/llvm-project/clang/lib/AST/ |
D | ASTContext.cpp | 8542 bool ASTContext::areCompatibleSveTypes(QualType FirstType, in areCompatibleSveTypes() argument 8544 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) || in areCompatibleSveTypes() 8545 (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) && in areCompatibleSveTypes() 8548 auto IsValidCast = [this](QualType FirstType, QualType SecondType) { in areCompatibleSveTypes() argument 8549 if (const auto *BT = FirstType->getAs<BuiltinType>()) { in areCompatibleSveTypes() 8557 FirstType->getSveEltType(*this); in areCompatibleSveTypes() 8567 return IsValidCast(FirstType, SecondType) || in areCompatibleSveTypes() 8568 IsValidCast(SecondType, FirstType); in areCompatibleSveTypes() 8571 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType, in areLaxCompatibleSveTypes() argument 8573 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) || in areLaxCompatibleSveTypes() [all …]
|
/external/llvm-project/libcxxabi/src/demangle/ |
D | ItaniumDemangle.h | 827 const Node *FirstType; variable 833 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName() 835 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match() 839 FirstType->print(S); in printLeft() 5144 Node *FirstType = getDerived().parseType(); in parseSpecialName() local 5145 if (FirstType == nullptr) in parseSpecialName() 5152 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
D | ItaniumDemangle.h | 825 const Node *FirstType; variable 831 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName() 833 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match() 837 FirstType->print(S); in printLeft() 5011 Node *FirstType = getDerived().parseType(); in parseSpecialName() local 5012 if (FirstType == nullptr) in parseSpecialName() 5019 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
|
/external/llvm-project/llvm/include/llvm/Demangle/ |
D | ItaniumDemangle.h | 827 const Node *FirstType; variable 833 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName() 835 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match() 839 FirstType->print(S); in printLeft() 5144 Node *FirstType = getDerived().parseType(); in parseSpecialName() local 5145 if (FirstType == nullptr) in parseSpecialName() 5152 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
|
/external/libcxxabi/src/demangle/ |
D | ItaniumDemangle.h | 857 const Node *FirstType; variable 863 FirstType(FirstType_), SecondType(SecondType_) {} in CtorVtableSpecialName() 865 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); } in match() 869 FirstType->print(S); in printLeft() 4733 Node *FirstType = getDerived().parseType(); in parseSpecialName() local 4734 if (FirstType == nullptr) in parseSpecialName() 4741 return make<CtorVtableSpecialName>(SecondType, FirstType); in parseSpecialName()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReader.cpp | 9785 QualType FirstType = FirstField->getType(); in diagnoseOdrViolations() local 9787 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations() 9791 << FirstII << FirstType; in diagnoseOdrViolations() 9893 QualType FirstType = FirstTD->getUnderlyingType(); in diagnoseOdrViolations() local 9895 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations() 9899 << IsTypeAlias << FirstName << FirstType; in diagnoseOdrViolations() 9926 QualType FirstType = FirstVD->getType(); in diagnoseOdrViolations() local 9928 if (ComputeQualTypeODRHash(FirstType) != in diagnoseOdrViolations() 9932 << FirstName << FirstType; in diagnoseOdrViolations() 11090 QualType FirstType = FirstTTPD->getDefaultArgument(); in diagnoseOdrViolations() local [all …]
|
/external/llvm-project/clang/include/clang/AST/ |
D | ASTContext.h | 2088 bool areCompatibleSveTypes(QualType FirstType, QualType SecondType); 2092 bool areLaxCompatibleSveTypes(QualType FirstType, QualType SecondType);
|
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/ |
D | gmock-matchers.h | 3009 typedef typename RawPairType::first_type FirstType; 3015 testing::SafeMatcherCast<const FirstType&>(first_matcher)), 3084 const Matcher<const FirstType&> first_matcher_;
|