Home | History | Annotate | Download | only in Sema

Lines Matching refs:literalType

4832   QualType literalType = GetTypeFromParser(Ty, &TInfo);
4834 TInfo = Context.getTrivialTypeSourceInfo(literalType);
4842 QualType literalType = TInfo->getType();
4844 if (literalType->isArrayType()) {
4845 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
4850 if (literalType->isVariableArrayType())
4853 } else if (!literalType->isDependentType() &&
4854 RequireCompleteType(LParenLoc, literalType,
4867 &literalType);
4876 !literalType->isDependentType()) { // 6.5.2.5p3
4877 if (CheckForConstantInitializer(LiteralExpr, literalType))
4885 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,