Lines Matching defs:FilenameBuffer
1012 SmallString<128> FilenameBuffer;
1020 FilenameBuffer.push_back('<');
1046 FilenameBuffer.push_back(' ');
1048 // Get the spelling of the token, directly into FilenameBuffer if
1050 size_t PreAppendSize = FilenameBuffer.size();
1051 FilenameBuffer.resize(PreAppendSize + FilenameTok.getLength());
1053 const char *BufPtr = &FilenameBuffer[PreAppendSize];
1056 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1057 if (BufPtr != &FilenameBuffer[PreAppendSize])
1058 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
1060 // Resize FilenameBuffer to the correct size.
1062 FilenameBuffer.resize(PreAppendSize + ActualLen);
1070 CreateString(FilenameBuffer, FilenameTok, Start, End);
1082 StringRef Str = getSpelling(FilenameTok, FilenameBuffer);