HomeSort by relevance Sort by last modified time
    Searched refs:LastComponent (Results 1 - 4 of 4) sorted by null

  /external/clang/tools/driver/
driver.cpp 256 StringRef::size_type LastComponent = ProgNameRef.rfind('-',
258 if (LastComponent != StringRef::npos)
259 Prefix = ProgNameRef.slice(0, LastComponent);
263 StringRef::size_type LastComponent = ProgNameRef.rfind('-');
264 if (LastComponent == StringRef::npos)
266 ProgNameRef = ProgNameRef.slice(0, LastComponent);
  /frameworks/compile/mclinker/tools/mcld/lib/
TripleOptions.cpp 69 llvm::StringRef::size_type LastComponent = ProgNameRef.rfind('-',
71 if (LastComponent == llvm::StringRef::npos)
73 llvm::StringRef Prefix = ProgNameRef.slice(0, LastComponent);
  /external/llvm/unittests/Support/
Path.cpp 230 StringRef LastComponent = *--path::end(Path);
231 EXPECT_EQ(".", LastComponent);
242 StringRef LastComponent = *--path::end(Path);
243 EXPECT_EQ(1u, LastComponent.size());
244 EXPECT_TRUE(path::is_separator(LastComponent[0]));
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 748 StringRef LastComponent = sys::path::filename(Trimmed);
753 Result = new FileEntry(LastComponent, std::move(ExternalContentsPath),
757 Result = new DirectoryEntry(LastComponent, std::move(EntryArrayContents),
    [all...]

Completed in 802 milliseconds