Searched defs:StartOfLine (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/Lex/
H A DToken.h74 StartOfLine = 0x01, // At start of line or only after whitespace. enumerator in enum:clang::Token::TokenFlags
231 bool isAtStartOfLine() const { return (Flags & StartOfLine) ? true : false; }
H A DPreprocessor.h937 /// \param StartOfLine Whether skipping these bytes puts the lexer at the
939 void setSkipMainFilePreamble(unsigned Bytes, bool StartOfLine) { argument
941 SkipMainFilePreamble.second = StartOfLine;
/external/clang/lib/Lex/
H A DLexer.cpp1355 void Lexer::SkipBytes(unsigned Bytes, bool StartOfLine) { argument
1359 IsAtStartOfLine = StartOfLine;
1896 Result.setFlag(Token::StartOfLine);
2026 Result.setFlag(Token::StartOfLine);
3428 // the StartOfLine flag and clear LeadingSpace.
3430 Result.setFlag(Token::StartOfLine);

Completed in 101 milliseconds