Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaAccess.cpp606 SmallVector<const CXXRecordDecl*, 20> CurPath; member
619 assert(I < CurPath.size()); in checkFriendshipAlongPath()
620 for (unsigned E = CurPath.size(); I != E; ++I) { in checkFriendshipAlongPath()
621 switch (GetFriendKind(S, EC, CurPath[I])) { in checkFriendshipAlongPath()
651 BasePrivateDepth = CurPath.size() - 1; in findFriendship()
668 CurPath.push_back(RD); in findFriendship()
671 CurPath.pop_back(); in findFriendship()
678 assert(CurPath.empty()); in findFriendship()
679 CurPath.push_back(Cur); in findFriendship()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp553 SmallString<128> CurPath; in mangleName() local
554 if (sys::fs::current_path(CurPath)) return FName; in mangleName()
555 sys::path::append(CurPath, FName); in mangleName()
556 return CurPath.str(); in mangleName()
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DPath.inc94 SmallString<80> CurPath;
95 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
97 FullPath.append(CurPath);