Searched refs:AllocatedBuffer (Results 1 – 1 of 1) sorted by relevance
984 auto *AllocatedBuffer = Allocator.Allocate<char>(Source.size()); in allocateContent() local985 llvm::copy(Source, AllocatedBuffer); in allocateContent()986 return MutableArrayRef<char>(AllocatedBuffer, Source.size()); in allocateContent()999 auto *AllocatedBuffer = Allocator.Allocate<char>(SourceStr.size()); in allocateString() local1000 llvm::copy(SourceStr, AllocatedBuffer); in allocateString()1001 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size()); in allocateString()