Searched refs:InitType (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2013 QualType InitType; local
2015 SemaRef.DeduceAutoType(Decl->getTypeSourceInfo(), Init, InitType) ==
2018 if (InitType.isNull()) {
2022 Decl->setType(InitType);
H A DSemaExprCXX.cpp2253 QualType InitType;
2255 InitType = Context.getConstantArrayType(
2261 InitType =
2264 InitType = AllocType;
2267 = InitializedEntity::InitializeNew(StartLoc, InitType);
H A DSemaDecl.cpp11622 QualType InitType = Init->getType(); local
11623 assert((InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion() ||
11624 InitType.hasNonTrivialToPrimitiveCopyCUnion()) &&
11638 if (InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion())
11639 checkNonTrivialCUnion(InitType, Loc, NTCUC_DefaultInitializedObject,
11646 if (InitType.hasNonTrivialToPrimitiveCopyCUnion())
11647 checkNonTrivialCUnion(InitType, Loc, NTCUC_CopyInit, NTCUK_Copy);
12316 QualType InitType = Init->getType(); local
12317 if (!InitType.isNull() &&
12318 (InitType
[all...]
H A DSemaInit.cpp4317 QualType InitType = InitList->getInit(0)->getType();
4318 if (S.Context.hasSameUnqualifiedType(InitType, DestType) ||
4319 S.IsDerivedFrom(InitList->getBeginLoc(), InitType, DestType)) {
H A DSemaOverload.cpp4963 QualType InitType = From->getInit(0)->getType();
4964 if (S.Context.hasSameUnqualifiedType(InitType, ToType) ||
4965 S.IsDerivedFrom(From->getBeginLoc(), InitType, ToType))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp213 std::string InitType; local
215 InitType = (Twine("' of type bit initializer with length ") +
218 InitType = (Twine("' of type '") + TI->getType()->getAsString()).str();
222 V->getAsString() + InitType + "'");
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp3607 auto *InitType = Init->getType(); local
3608 if (GV->getValueType() != InitType) {
3617 GetAddrOfGlobalVar(D, InitType, IsForDefinition)
4007 llvm::Type* InitType = Init->getType(); local
4009 GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative));
4026 if (!GV || GV->getValueType() != InitType ||
4035 GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative))
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h859 using InitType = llvm::PointerUnion<Stmt *, EvaluatedStmt *>;
863 mutable InitType Init;

Completed in 418 milliseconds