HomeSort by: relevance | last modified time | path
    Searched defs:FirstType (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IteratorModeling.cpp 384 const QualType FirstType = FirstArg->getType();
387 if (FirstType->isIntegralOrEnumerationType() ||
391 const bool IsIterFirst = FirstType->isStructureOrClassType();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 2253 QualType FirstType;
2263 FirstType = D->getType();
2272 if (FirstType->getContainedAutoType()) {
2276 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) ==
2279 if (FirstType.isNull()) {
2284 D->setType(FirstType);
2301 FirstType = static_cast<Expr*>(First)->getType();
2302 if (FirstType.isConstQualified())
2304 << FirstType << First->getSourceRange();
2306 if (!FirstType->isDependentType() &
    [all...]
SemaDeclAttr.cpp 3706 QualType FirstType = FirstField->getType();
3707 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
3710 << FirstType->isVectorType() << FirstType;
3714 if (FirstType->isIncompleteType())
3716 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3717 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
SemaExpr.cpp 7332 auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) {
7333 if (!FirstType->isSizelessBuiltinType())
10041 auto IsSveConversion = [](QualType FirstType, QualType SecondType) {
10043 return FirstType->isSizelessBuiltinType() && VecType &&
10056 auto IsSveGnuConversion = [](QualType FirstType, QualType SecondType) {
10057 const VectorType *FirstVecType = FirstType->getAs<VectorType>();
10067 return FirstType->isSizelessBuiltinType() && SecondVecType &&
16051 QualType FirstType, SecondType;
16056 FirstType = DstType;
16067 FirstType = SrcType
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 829 const Node *FirstType;
835 FirstType(FirstType_), SecondType(SecondType_) {}
837 template<typename Fn> void match(Fn F) const { F(FirstType, SecondType); }
841 FirstType->print(S);
5158 Node *FirstType = getDerived().parseType();
5159 if (FirstType == nullptr)
5166 return make<CtorVtableSpecialName>(SecondType, FirstType);
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h 2603 typedef typename RawPairType::first_type FirstType;
2609 testing::SafeMatcherCast<const FirstType&>(first_matcher)),
2678 const Matcher<const FirstType&> first_matcher_;

Completed in 57 milliseconds