Home
last modified time | relevance | path

Searched refs:EndOfLine (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Format/
H A DBreakableToken.cpp871 size_t EndOfLine = Content[i].find_last_not_of(Blanks); in BreakableLineCommentSection() local
872 if (EndOfLine == StringRef::npos) in BreakableLineCommentSection()
873 EndOfLine = Content[i].size(); in BreakableLineCommentSection()
875 ++EndOfLine; in BreakableLineCommentSection()
876 Content[i] = Content[i].substr(0, EndOfLine); in BreakableLineCommentSection()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DCompilerInvocation.cpp4284 unsigned EndOfLine = 0; in ParsePreprocessorArgs() local
4288 Value.substr(Comma + 1).getAsInteger(10, EndOfLine)) in ParsePreprocessorArgs()
4292 Opts.PrecompiledPreambleBytes.second = (EndOfLine != 0); in ParsePreprocessorArgs()