Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDCXXInheritance.h166 bool RecordPaths; variable
186 explicit CXXBasePaths(bool FindAmbiguities = true, bool RecordPaths = true,
188 : FindAmbiguities(FindAmbiguities), RecordPaths(RecordPaths), in FindAmbiguities()
212 bool isRecordingPaths() const { return RecordPaths; } in isRecordingPaths()
215 void setRecordingPaths(bool RP) { RecordPaths = RP; } in setRecordingPaths()
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDCXXInheritance.cpp86 std::swap(RecordPaths, Other.RecordPaths); in swap()