Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaAccess.cpp610 SmallVector<const CXXRecordDecl*, 20> CurPath; member
623 assert(I < CurPath.size()); in checkFriendshipAlongPath()
624 for (unsigned E = CurPath.size(); I != E; ++I) { in checkFriendshipAlongPath()
625 switch (GetFriendKind(S, EC, CurPath[I])) { in checkFriendshipAlongPath()
655 BasePrivateDepth = CurPath.size() - 1; in findFriendship()
672 CurPath.push_back(RD); in findFriendship()
675 CurPath.pop_back(); in findFriendship()
682 assert(CurPath.empty()); in findFriendship()
683 CurPath.push_back(Cur); in findFriendship()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp443 SmallString<128> CurPath; in mangleName() local
444 if (sys::fs::current_path(CurPath)) return FName; in mangleName()
445 sys::path::append(CurPath, FName); in mangleName()
446 return CurPath.str(); in mangleName()
/external/llvm/lib/Support/Windows/
DPath.inc90 SmallString<80> CurPath;
91 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
93 FullPath.append(CurPath);