Home
last modified time | relevance | path

Searched refs:BT2 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp662 auto *BT2 = QualType(Canon2)->getAs<BuiltinType>(); in matchesArgType() local
663 if (BT1 == nullptr || BT2 == nullptr) in matchesArgType()
665 if (BT1 == BT2) in matchesArgType()
668 if (!LeftWasPointer && BT1->isInteger() && BT2->isInteger()) in matchesArgType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp15430 const BuiltinType *BT2 = T2->getAs<BuiltinType>(); in IsSameCharType() local
15431 if (!BT2) in IsSameCharType()
15435 BuiltinType::Kind T2Kind = BT2->getKind(); in IsSameCharType()