Home
last modified time | relevance | path

Searched refs:hasAnyListedName (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
DNoMallocCheck.cpp26 Matcher<FunctionDecl> hasAnyListedName(const std::string &FunctionNames) { in hasAnyListedName() function
41 Finder->addMatcher(callExpr(callee(functionDecl(hasAnyListedName(AllocList)))) in registerMatchers()
47 callExpr(callee(functionDecl(hasAnyListedName(ReallocList)))) in registerMatchers()
53 callExpr(callee(functionDecl(hasAnyListedName(DeallocList)))) in registerMatchers()
DOwningMemoryCheck.cpp27 Matcher<FunctionDecl> hasAnyListedName(const std::string &FunctionNames) { in hasAnyListedName() function
45 const auto LegacyCreatorFunctions = hasAnyListedName(LegacyResourceProducers); in registerMatchers()
47 hasAnyListedName(LegacyResourceConsumers); in registerMatchers()
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DSignedCharMisuseCheck.cpp23 static Matcher<TypedefDecl> hasAnyListedName(const std::string &Names) { in hasAnyListedName() function
50 hasDeclaration(typedefDecl(hasAnyListedName(CharTypdefsToIgnoreList)))); in charCastExpression()