Searched refs:literalType (Results 1 – 2 of 2) sorted by relevance
/external/expat/lib/ |
D | xmltok.h | 220 #define XmlLiteralTok(enc, literalType, ptr, end, nextTokPtr) \ argument 221 (((enc)->literalScanners[literalType])(enc, ptr, end, nextTokPtr))
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 3676 QualType literalType = GetTypeFromParser(Ty, &TInfo); in ActOnCompoundLiteral() local 3678 TInfo = Context.getTrivialTypeSourceInfo(literalType); in ActOnCompoundLiteral() 3686 QualType literalType = TInfo->getType(); in BuildCompoundLiteralExpr() local 3688 if (literalType->isArrayType()) { in BuildCompoundLiteralExpr() 3689 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType), in BuildCompoundLiteralExpr() 3694 if (literalType->isVariableArrayType()) in BuildCompoundLiteralExpr() 3697 } else if (!literalType->isDependentType() && in BuildCompoundLiteralExpr() 3698 RequireCompleteType(LParenLoc, literalType, in BuildCompoundLiteralExpr() 3705 = InitializedEntity::InitializeTemporary(literalType); in BuildCompoundLiteralExpr() 3712 &literalType); in BuildCompoundLiteralExpr() [all …]
|