Home | History | Annotate | Download | only in Sema

Lines Matching refs:ValType

754   QualType ValType = AtomTy; // 'C'
766 ValType = AtomTy->getAs<AtomicType>()->getValueType();
772 if (IsAddSub && !ValType->isIntegerType() && !ValType->isPointerType()) {
777 if (!IsAddSub && !ValType->isIntegerType()) {
782 } else if (IsN && !ValType->isIntegerType() && !ValType->isPointerType()) {
798 // FIXME: For any builtin other than a load, the ValType must not be
801 switch (ValType.getObjCLifetime()) {
810 // FIXME: Can this happen? By this point, ValType should be known
813 << ValType << Ptr->getSourceRange();
817 QualType ResultType = ValType;
825 QualType ByValType = ValType; // 'CP'
842 if (Form == Init || (Form == Arithmetic && ValType->isIntegerType()))
843 Ty = ValType;
849 Ty = Context.getPointerType(ValType.getUnqualifiedType());
984 QualType ValType = pointerType->getPointeeType();
985 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
986 !ValType->isBlockPointerType()) {
992 switch (ValType.getObjCLifetime()) {
1002 << ValType << FirstArg->getSourceRange();
1006 // Strip any qualifiers off ValType.
1007 ValType = ValType.getUnqualifiedType();
1011 QualType ResultType = ValType;
1043 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
1237 // GCC does an implicit conversion to the pointer or integer ValType. This
1241 ValType, /*consume*/ false);