Home
last modified time | relevance | path

Searched refs:VarType (Results 1 – 6 of 6) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dreturn.cpp89 template <class VarType>
90 void Test(const VarType& value) { in Test()
/minix3/external/bsd/llvm/dist/llvm/unittests/IR/
H A DValueMapTest.cpp117 template<typename ExpectedType, typename VarType>
118 void CompileAssertHasType(VarType) { in CompileAssertHasType() argument
119 static_assert(std::is_same<ExpectedType, VarType>::value, in CompileAssertHasType()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGBlocks.cpp1728 QualType VarType; member in __anond119db390211::CXXByrefHelpers
1734 : ByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {} in CXXByrefHelpers()
1745 CGF.PushDestructorCleanup(VarType, field); in emitDispose()
1750 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr()); in profileImpl()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp2420 auto VarType = Var->getType(); in CheckOpenMPIterationSpace() local
2421 if (!VarType->isDependentType() && !VarType->isIntegerType() && in CheckOpenMPIterationSpace()
2422 !VarType->isPointerType() && in CheckOpenMPIterationSpace()
2423 !(SemaRef.getLangOpts().CPlusPlus && VarType->isOverloadableType())) { in CheckOpenMPIterationSpace()
H A DSemaStmt.cpp702 QualType VarType = VD->getType(); in ShouldDiagnoseSwitchCaseNotInEnum() local
703 if (!VarType.isConstQualified()) in ShouldDiagnoseSwitchCaseNotInEnum()
706 if (Ctx.hasSameUnqualifiedType(EnumType, VarType)) in ShouldDiagnoseSwitchCaseNotInEnum()
H A DSemaDeclCXX.cpp9418 QualType VarType; member in __anon515e6f931011::RefBuilder
9422 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get()); in build()
9425 RefBuilder(VarDecl *Var, QualType VarType) in RefBuilder() argument
9426 : Var(Var), VarType(VarType) {} in RefBuilder()