Home | History | Annotate | Download | only in Lex

Lines Matching refs:Result

213                                 SmallString<128> &Result) {
214 Result.clear();
221 Result = FilePath.substr(Path.size());
222 llvm::sys::path::append(Result,
231 Result = File->getName();
237 bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) {
293 Result.startToken();
294 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
298 CurPTHLexer->getEOF(Result);
352 Result.startToken();
354 CurLexer->FormTokenWithChars(Result, EndPos, tok::eof);
364 Result.setLocation(Result.getLocation().getLocWithOffset(-1));
372 CurPTHLexer->getEOF(Result);
460 bool Preprocessor::HandleEndOfTokenLexer(Token &Result) {
475 return HandleEndOfFile(Result, true);