Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringMap.h181 template <typename... InitType>
182 static StringMapEntry *Create(StringRef Key, InitType &&... InitVal) { in Create()
184 return Create(Key, A, std::forward<InitType>(InitVal)...); in Create()
/freebsd-12.1/contrib/llvm/lib/TableGen/
H A DTGParser.cpp213 std::string InitType; in SetValue() local
215 InitType = (Twine("' of type bit initializer with length ") + in SetValue()
218 InitType = (Twine("' of type '") + TI->getType()->getAsString()).str(); in SetValue()
222 V->getAsString() + InitType + "'"); in SetValue()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.cpp3166 auto *InitType = Init->getType(); in GetOrCreateLLVMGlobal() local
3167 if (GV->getType()->getElementType() != InitType) { in GetOrCreateLLVMGlobal()
3176 GetAddrOfGlobalVar(D, InitType, IsForDefinition)); in GetOrCreateLLVMGlobal()
3539 llvm::Type* InitType = Init->getType(); in EmitGlobalVarDefinition() local
3541 GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative)); in EmitGlobalVarDefinition()
3564 if (!GV || GV->getType()->getElementType() != InitType || in EmitGlobalVarDefinition()
3573 GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative))); in EmitGlobalVarDefinition()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1982 QualType InitType; in FinishForRangeVarDecl() local
1984 SemaRef.DeduceAutoType(Decl->getTypeSourceInfo(), Init, InitType) == in FinishForRangeVarDecl()
1987 if (InitType.isNull()) { in FinishForRangeVarDecl()
1991 Decl->setType(InitType); in FinishForRangeVarDecl()
H A DSemaExprCXX.cpp2128 QualType InitType; in BuildCXXNew() local
2130 InitType = Context.getConstantArrayType( in BuildCXXNew()
2135 InitType = in BuildCXXNew()
2138 InitType = AllocType; in BuildCXXNew()
2141 = InitializedEntity::InitializeNew(StartLoc, InitType); in BuildCXXNew()
H A DSemaInit.cpp4137 QualType InitType = InitList->getInit(0)->getType(); in TryListInitialization() local
4138 if (S.Context.hasSameUnqualifiedType(InitType, DestType) || in TryListInitialization()
4139 S.IsDerivedFrom(InitList->getBeginLoc(), InitType, DestType)) { in TryListInitialization()
H A DSemaOverload.cpp4823 QualType InitType = From->getInit(0)->getType(); in TryListConversion() local
4824 if (S.Context.hasSameUnqualifiedType(InitType, ToType) || in TryListConversion()
4825 S.IsDerivedFrom(From->getBeginLoc(), InitType, ToType)) in TryListConversion()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDecl.h852 using InitType = llvm::PointerUnion<Stmt *, EvaluatedStmt *>;
856 mutable InitType Init;