Home | History | Annotate | Download | only in Sema

Lines Matching defs:BTy

2701             } else if (const BuiltinType* BTy = ArgTy->getAs<BuiltinType>()) {
2702 if (BTy->getKind() == BuiltinType::Float) {
4277 const BuiltinType* BTy = CurType->getAs<BuiltinType>();
4278 if (!BTy ||
4280 BTy->getKind() != BuiltinType::SChar &&
4281 BTy->getKind() != BuiltinType::Short) ||
4282 (BTy->getKind() != BuiltinType::SChar &&
4283 BTy->getKind() != BuiltinType::UChar &&
4284 BTy->getKind() != BuiltinType::Short &&
4285 BTy->getKind() != BuiltinType::UShort &&
4286 BTy->getKind() != BuiltinType::Int &&
4287 BTy->getKind() != BuiltinType::UInt &&
4288 BTy->getKind() != BuiltinType::LongLong &&
4289 BTy->getKind() != BuiltinType::ULongLong &&
4290 BTy->getKind() != BuiltinType::Float)) {