Home | History | Annotate | Download | only in Lex

Lines Matching defs:FilenameBuffer

1193                                         SmallString<128> &FilenameBuffer,
1211 FilenameBuffer.push_back(' ');
1213 // Get the spelling of the token, directly into FilenameBuffer if possible.
1214 unsigned PreAppendSize = FilenameBuffer.size();
1215 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
1217 const char *BufPtr = &FilenameBuffer[PreAppendSize];
1220 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1221 if (BufPtr != &FilenameBuffer[PreAppendSize])
1222 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
1224 // Resize FilenameBuffer to the correct size.
1226 FilenameBuffer.resize(PreAppendSize+ActualLen);
1255 SmallString<128> FilenameBuffer;
1267 Filename = getSpelling(FilenameTok, FilenameBuffer);
1274 // case, glue the tokens together into FilenameBuffer and interpret those.
1275 FilenameBuffer.push_back('<');
1276 if (ConcatenateIncludeName(FilenameBuffer, End))
1278 Filename = FilenameBuffer.str();