Home
last modified time | relevance | path

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

/external/clang/tools/driver/
Ddriver.cpp256 StringRef::size_type LastComponent = ProgNameRef.rfind('-', in ParseProgName() local
258 if (LastComponent != StringRef::npos) in ParseProgName()
259 Prefix = ProgNameRef.slice(0, LastComponent); in ParseProgName()
263 StringRef::size_type LastComponent = ProgNameRef.rfind('-'); in ParseProgName() local
264 if (LastComponent == StringRef::npos) in ParseProgName()
266 ProgNameRef = ProgNameRef.slice(0, LastComponent); in ParseProgName()
/external/llvm/unittests/Support/
DPath.cpp230 StringRef LastComponent = *--path::end(Path); in TEST() local
231 EXPECT_EQ(".", LastComponent); in TEST()
242 StringRef LastComponent = *--path::end(Path); in TEST() local
243 EXPECT_EQ(1u, LastComponent.size()); in TEST()
244 EXPECT_TRUE(path::is_separator(LastComponent[0])); in TEST()
/external/clang/lib/Basic/
DVirtualFileSystem.cpp748 StringRef LastComponent = sys::path::filename(Trimmed); in parseEntry() local
753 Result = new FileEntry(LastComponent, std::move(ExternalContentsPath), in parseEntry()
757 Result = new DirectoryEntry(LastComponent, std::move(EntryArrayContents), in parseEntry()