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

/external/llvm/include/llvm/MC/MCParser/
H A DAsmLexer.h32 bool isAtStartOfLine; member in class:llvm::AsmLexer
/external/clang/include/clang/Lex/
H A DToken.h237 /// isAtStartOfLine - Return true if this token is at the start of a line.
239 bool isAtStartOfLine() const { return (Flags & StartOfLine) ? true : false; } function in class:clang::Token
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp282 bool IsAtStartOfLine = Identifier.isAtStartOfLine();
290 if (!Identifier.isAtStartOfLine()) {
308 // Propagate the isAtStartOfLine/hasLeadingSpace markers of the macro
310 bool isAtStartOfLine = Identifier.isAtStartOfLine(); local
317 Identifier.setFlagValue(Token::StartOfLine , isAtStartOfLine);

Completed in 118 milliseconds