Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp81 if (clang::TypeDecl *tdecl = llvm::dyn_cast<clang::TypeDecl>(p.m_decl)) { in GetCompilerTypeFromPersistentDecl() local
83 const_cast<clang::Type *>(tdecl->getTypeForDecl())); in GetCompilerTypeFromPersistentDecl()
/openbsd-src/gnu/gcc/gcc/cp/
H A Ddecl.c2982 tree tdecl = NULL_TREE; in record_builtin_type() local
2996 tdecl = build_decl (TYPE_DECL, tname, type); in record_builtin_type()
2997 DECL_ARTIFICIAL (tdecl) = 1; in record_builtin_type()
2998 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl); in record_builtin_type()
3002 if (!tdecl) in record_builtin_type()
3004 tdecl = build_decl (TYPE_DECL, rname, type); in record_builtin_type()
3005 DECL_ARTIFICIAL (tdecl) = 1; in record_builtin_type()
3007 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl); in record_builtin_type()
3011 TYPE_NAME (type) = tdecl; in record_builtin_type()
3013 if (tdecl) in record_builtin_type()
[all …]
H A DChangeLog-19986398 (record_builtin_type): Initialize `tdecl' to NULL_TREE.
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4674 clang::TagDecl *tdecl = nullptr; in CreateTypedef() local
4677 tdecl = rt->getDecl(); in CreateTypedef()
4679 tdecl = et->getDecl(); in CreateTypedef()
4685 if (tdecl && !tdecl->getIdentifier() && !tdecl->getTypedefNameForAnonDecl()) in CreateTypedef()
4686 tdecl->setTypedefNameForAnonDecl(decl); in CreateTypedef()
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Ddecl.c6784 tree tdecl = NULL_TREE; local
6795 tdecl = pushdecl (build_decl (TYPE_DECL, tname, type));
6799 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
6806 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
6810 tdecl = pushdecl (build_decl (TYPE_DECL, rname, type));
H A DChangeLog.213186 (record_builtin_type): Initialize `tdecl' to NULL_TREE.