Lines Matching defs:FilenameBuffer
1011 SmallString<128> FilenameBuffer;
1019 FilenameBuffer.push_back('<');
1045 FilenameBuffer.push_back(' ');
1047 // Get the spelling of the token, directly into FilenameBuffer if
1049 size_t PreAppendSize = FilenameBuffer.size();
1050 FilenameBuffer.resize(PreAppendSize + FilenameTok.getLength());
1052 const char *BufPtr = &FilenameBuffer[PreAppendSize];
1055 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1056 if (BufPtr != &FilenameBuffer[PreAppendSize])
1057 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
1059 // Resize FilenameBuffer to the correct size.
1061 FilenameBuffer.resize(PreAppendSize + ActualLen);
1069 CreateString(FilenameBuffer, FilenameTok, Start, End);
1081 StringRef Str = getSpelling(FilenameTok, FilenameBuffer);