Home | History | Annotate | Download | only in Sema

Lines Matching refs:BTy

3989             } else if (const BuiltinType* BTy = ParamTy->getAs<BuiltinType>()) {
3990 if (BTy->getKind() == BuiltinType::Float) {
6066 const BuiltinType *BTy = Ty->getAs<BuiltinType>();
6067 if (!BTy)
6079 return BTy->getKind() == BuiltinType::UChar ||
6080 BTy->getKind() == BuiltinType::UShort ||
6081 BTy->getKind() == BuiltinType::ULong ||
6082 BTy->getKind() == BuiltinType::ULongLong;
6085 return BTy->getKind() == BuiltinType::SChar ||
6086 BTy->getKind() == BuiltinType::Short;
6095 if (Is64Bit && BTy->getKind() == BuiltinType::Double)
6098 return BTy->getKind() == BuiltinType::SChar ||
6099 BTy->getKind() == BuiltinType::UChar ||
6100 BTy->getKind() == BuiltinType::Short ||
6101 BTy->getKind() == BuiltinType::UShort ||
6102 BTy->getKind() == BuiltinType::Int ||
6103 BTy->getKind() == BuiltinType::UInt ||
6104 BTy->getKind() == BuiltinType::Long ||
6105 BTy->getKind() == BuiltinType::ULong ||
6106 BTy->getKind() == BuiltinType::LongLong ||
6107 BTy->getKind() == BuiltinType::ULongLong ||
6108 BTy
6109 BTy->getKind() == BuiltinType::Half;