Home
last modified time | relevance | path

Searched refs:PathStorage (Results 1 – 5 of 5) sorted by relevance

/external/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp77 SmallString<16> PathStorage; in TEST() local
78 llvm::sys::path::native("//net/dir/file1", PathStorage); in TEST()
79 expected_files.push_back(PathStorage.str()); in TEST()
80 llvm::sys::path::native("//net/dir/file2", PathStorage); in TEST()
81 expected_files.push_back(PathStorage.str()); in TEST()
/external/llvm/lib/Support/Windows/
DProgram.inc44 std::wstring PathStorage;
46 PathStorage.reserve(Paths.size() * MAX_PATH);
49 PathStorage.push_back(L';');
54 PathStorage.append(TmpPath.begin(), TmpPath.end());
56 Path = PathStorage.c_str();
/external/clang/lib/Tooling/
DTooling.cpp224 SmallString<1024> PathStorage; in mapVirtualFile() local
225 llvm::sys::path::native(FilePath, PathStorage); in mapVirtualFile()
226 MappedFileContents[PathStorage] = Content; in mapVirtualFile()
/external/llvm/lib/Support/Unix/
DPath.inc310 SmallString<128> PathStorage;
311 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
383 SmallString<128> PathStorage;
384 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
/external/llvm/lib/Support/
DPath.cpp844 SmallString<128> PathStorage; in create_directories() local
845 StringRef P = Path.toStringRef(PathStorage); in create_directories()