HomeSort by relevance Sort by last modified time
    Searched defs:Pathname (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Linker/
LinkItems.cpp 77 sys::Path Pathname = FindLib(Lib);
78 if (Pathname.isEmpty())
83 Pathname.getMagicNumber(Magic, 64);
91 if (LinkInFile(Pathname, is_native))
96 if (LinkInArchive(Pathname, is_native))
97 return error("Cannot link archive '" + Pathname.str() + "'");
149 /// File - The pathname of the bitcode file.
224 /// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
  /external/chromium/third_party/libjingle/source/talk/base/
pathutils.h 38 // Pathname - parsing of pathnames into components, and vice versa.
41 // component. A folder never contains a filename. A pathname may include
44 // pathname() /home/john/example.txt
57 class Pathname {
63 Pathname();
64 Pathname(const std::string& pathname);
65 Pathname(const std::string& folder, const std::string& filename);
67 // Set's the default folder delimiter for this Pathname
74 // Reset to the empty pathname
    [all...]
pathutils.cc 60 // Pathname - parsing of pathnames into components, and vice versa
63 bool Pathname::IsFolderDelimiter(char ch) {
67 char Pathname::DefaultFolderDelimiter() {
71 Pathname::Pathname()
75 Pathname::Pathname(const std::string& pathname)
77 SetPathname(pathname);
80 Pathname::Pathname(const std::string& folder, const std::string& filename
108 std::string Pathname::pathname() const { function in class:talk_base::Pathname
    [all...]

Completed in 172 milliseconds