Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/clang/tools/driver/
H A Ddriver.cpp275 StringRef::size_type LastComponent = ProgNameRef.rfind( in ParseProgName() local
277 if (LastComponent == StringRef::npos) in ParseProgName()
281 StringRef Prefix = ProgNameRef.slice(0, LastComponent); in ParseProgName()
/minix/external/bsd/llvm/dist/llvm/unittests/Support/
H A DPath.cpp231 StringRef LastComponent = *path::rbegin(Path); in TEST() local
232 EXPECT_EQ(".", LastComponent); in TEST()
243 StringRef LastComponent = *path::rbegin(Path); in TEST() local
244 EXPECT_EQ(1u, LastComponent.size()); in TEST()
245 EXPECT_TRUE(path::is_separator(LastComponent[0])); in TEST()
/minix/external/bsd/llvm/dist/clang/lib/Basic/
H A DVirtualFileSystem.cpp735 StringRef LastComponent = sys::path::filename(Trimmed); in parseEntry() local
740 Result = new FileEntry(LastComponent, std::move(ExternalContentsPath), in parseEntry()
744 Result = new DirectoryEntry(LastComponent, std::move(EntryArrayContents), in parseEntry()