Lines Matching refs:allocator
25 Path::Path(const util::StringView &absolutePath, ArenaAllocator *allocator)
27 Initializer(absolutePath.Mutf8(), allocator);
30 void Path::Initializer(const std::string &path, ArenaAllocator *allocator)
33 allocator_ = allocator;
34 path_ = util::UString(path, allocator).View();
111 Path::Path(const util::StringView &relativePath, const util::StringView &basePath, ArenaAllocator *allocator)
113 Initializer(relativePath.Mutf8(), allocator);
117 Path::Path(const std::string &absolutePath, ArenaAllocator *allocator)
119 Initializer(absolutePath, allocator);
122 Path::Path(const std::string &relativePath, const std::string &basePath, ArenaAllocator *allocator)
124 Initializer(relativePath, allocator);