reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/AST/Type.h
  796   bool isTrivialType(const ASTContext &Context) const;

References

tools/clang/lib/AST/Type.cpp
 2248     return Context.getBaseElementType(*this).isTrivialType(Context);
tools/clang/lib/Analysis/ThreadSafety.cpp
  616       if (T.isTrivialType(VD->getASTContext())) {
tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
  622       if (T.isTrivialType(VD->getASTContext()))
  831     if (!T.isTrivialType(Pm->getASTContext()))
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
 6576                      ((VD->getType().isTrivialType(Ctx) ||
tools/clang/lib/Sema/SemaExprCXX.cpp
 4579     return T.isTrivialType(C);
tools/clang/lib/Sema/SemaOpenMP.cpp
14524       !QTy.isTrivialType(SemaRef.Context))
tools/clang/tools/extra/clang-tidy/misc/ThrowByValueCatchByReferenceCheck.cpp
  156     if (!caughtType.isTrivialType(context)) {