Home
last modified time | relevance | path

Searched refs:tdef (Results 1 – 2 of 2) sorted by relevance

/external/v8/tools/clang/plugins/
DCheckIPCVisitor.cpp176 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() local
189 if (IsBlacklistedTypedef(tdef->getDecl())) { in CheckIntegerType()
192 details->typedefs.push_back(tdef); in CheckIntegerType()
247 if (auto* tdef = dyn_cast<TypedefType>(type)) { in CheckType() local
248 details->typedefs.push_back(tdef); in CheckType()
283 for (const TypedefType* tdef: details.typedefs) { in ReportCheckError() local
284 diagnostics.Report(tdef->getDecl()->getLocation(), note_see_here_); in ReportCheckError()
DCheckIPCVisitor.h67 bool IsBlacklistedTypedef(const clang::TypedefNameDecl* tdef) const;