Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DCXXInheritance.h159 bool RecordPaths; variable
177 explicit CXXBasePaths(bool FindAmbiguities = true, bool RecordPaths = true,
179 : FindAmbiguities(FindAmbiguities), RecordPaths(RecordPaths), in FindAmbiguities()
201 bool isRecordingPaths() const { return RecordPaths; } in isRecordingPaths()
204 void setRecordingPaths(bool RP) { RecordPaths = RP; } in setRecordingPaths()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DCXXInheritance.cpp63 std::swap(RecordPaths, Other.RecordPaths); in swap()