Lines Matching defs:AtomTy
3905 QualType AtomTy = pointerType->getPointeeType(); // 'A'
3906 QualType ValType = AtomTy; // 'C'
3908 if (!AtomTy->isAtomicType()) {
3913 if ((Form != Load && Form != LoadCopy && AtomTy.isConstQualified()) ||
3914 AtomTy.getAddressSpace() == LangAS::opencl_constant) {
3916 << (AtomTy.isConstQualified() ? 0 : 1) << Ptr->getType()
3920 ValType = AtomTy->castAs<AtomicType>()->getValueType();
3931 if (RequireCompleteType(Ptr->getBeginLoc(), AtomTy,
3935 if (Context.getTypeInfoInChars(AtomTy).Width.isZero()) {
3944 AtomTy = Context.CharTy;
3945 AtomTy = AtomTy.withCVRQualifiers(
3947 QualType PointerQT = Context.getPointerType(AtomTy);
3950 ValType = AtomTy;
3995 if (!IsC11 && !AtomTy.isTriviallyCopyableType(Context) &&
3996 !AtomTy->isScalarType()) {