Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h84 const auto *PE2 = dyn_cast_or_null<til::Project>(E2); in partiallyMatches() local
85 if (!PE2) in partiallyMatches()
87 return PE1->clangDecl() == PE2->clangDecl(); in partiallyMatches()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Dmake-unique.cpp332 std::unique_ptr<E> PE2 = std::unique_ptr<E>(new E{1, 2}); in initialization() local
335 PE2.reset(new E{1, 2}); in initialization()