Home | History | Annotate | Download | only in Lex

Lines Matching refs:FilenameBuffer

1278                                         SmallString<128> &FilenameBuffer,
1296 FilenameBuffer.push_back(' ');
1298 // Get the spelling of the token, directly into FilenameBuffer if possible.
1299 unsigned PreAppendSize = FilenameBuffer.size();
1300 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
1302 const char *BufPtr = &FilenameBuffer[PreAppendSize];
1305 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1306 if (BufPtr != &FilenameBuffer[PreAppendSize])
1307 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
1309 // Resize FilenameBuffer to the correct size.
1311 FilenameBuffer.resize(PreAppendSize+ActualLen);
1340 SmallString<128> FilenameBuffer;
1352 Filename = getSpelling(FilenameTok, FilenameBuffer);
1359 // case, glue the tokens together into FilenameBuffer and interpret those.
1360 FilenameBuffer.push_back('<');
1361 if (ConcatenateIncludeName(FilenameBuffer, End))
1363 Filename = FilenameBuffer.str();