Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dperformance-move-constructor-init.cpp138 struct NegativeNotPassedByValue { struct
140 NegativeNotPassedByValue(const Movable &M) : M_(M) {} in NegativeNotPassedByValue() function
141 NegativeNotPassedByValue(const Movable M) : M_(M) {} in NegativeNotPassedByValue() function
142 NegativeNotPassedByValue(Movable &M) : M_(M) {} in NegativeNotPassedByValue() argument
143 NegativeNotPassedByValue(Movable *M) : M_(*M) {} in NegativeNotPassedByValue() argument
144 NegativeNotPassedByValue(const Movable *M) : M_(*M) {} in NegativeNotPassedByValue() argument