Searched refs:tdef (Results 1 – 2 of 2) sorted by relevance
176 bool CheckIPCVisitor::IsBlacklistedTypedef(const TypedefNameDecl* tdef) const { in IsBlacklistedTypedef()177 return blacklisted_typedefs_.find(tdef->getName()) != in IsBlacklistedTypedef()188 if (auto* tdef = dyn_cast<TypedefType>(type)) { in CheckIntegerType() local189 if (IsBlacklistedTypedef(tdef->getDecl())) { in CheckIntegerType()192 details->typedefs.push_back(tdef); in CheckIntegerType()247 if (auto* tdef = dyn_cast<TypedefType>(type)) { in CheckType() local248 details->typedefs.push_back(tdef); in CheckType()283 for (const TypedefType* tdef: details.typedefs) { in ReportCheckError() local284 diagnostics.Report(tdef->getDecl()->getLocation(), note_see_here_); in ReportCheckError()
67 bool IsBlacklistedTypedef(const clang::TypedefNameDecl* tdef) const;