Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DUseUsingCheck.cpp84 FirstTypedefType = Type; in check()
95 if (Type.size() > FirstTypedefType.size() && in check()
96 Type.substr(0, FirstTypedefType.size()) == FirstTypedefType) in check()
97 Type = FirstTypedefName + Type.substr(FirstTypedefType.size() + 1); in check()
DUseUsingCheck.h27 std::string FirstTypedefType; variable