Lines Matching refs:UnwrappedLineParser
141 ScopedLineState(UnwrappedLineParser &Parser, in ScopedLineState()
166 UnwrappedLineParser &Parser;
174 CompoundStatementIndenter(UnwrappedLineParser *Parser, in CompoundStatementIndenter()
220 UnwrappedLineParser::UnwrappedLineParser(const FormatStyle &Style, in UnwrappedLineParser() function in clang::format::UnwrappedLineParser
234 void UnwrappedLineParser::reset() { in reset()
251 void UnwrappedLineParser::parse() { in parse()
294 void UnwrappedLineParser::parseFile() { in parseFile()
322 void UnwrappedLineParser::parseLevel(bool HasOpeningBrace) { in parseLevel()
387 void UnwrappedLineParser::calculateBraceTypes(bool ExpectClassBody) { in calculateBraceTypes()
520 size_t UnwrappedLineParser::computePPHash() const { in computePPHash()
529 void UnwrappedLineParser::parseBlock(bool MustBeDeclaration, bool AddLevel, in parseBlock()
639 void UnwrappedLineParser::parseChildBlock() { in parseChildBlock()
656 void UnwrappedLineParser::parsePPDirective() { in parsePPDirective()
692 void UnwrappedLineParser::conditionalCompilationCondition(bool Unreachable) { in conditionalCompilationCondition()
704 void UnwrappedLineParser::conditionalCompilationStart(bool Unreachable) { in conditionalCompilationStart()
716 void UnwrappedLineParser::conditionalCompilationAlternative() { in conditionalCompilationAlternative()
727 void UnwrappedLineParser::conditionalCompilationEnd() { in conditionalCompilationEnd()
743 void UnwrappedLineParser::parsePPIf(bool IfDef) { in parsePPIf()
773 void UnwrappedLineParser::parsePPElse() { in parsePPElse()
784 void UnwrappedLineParser::parsePPElIf() { parsePPElse(); } in parsePPElIf()
786 void UnwrappedLineParser::parsePPEndIf() { in parsePPEndIf()
799 void UnwrappedLineParser::parsePPDefine() { in parsePPDefine()
840 void UnwrappedLineParser::parsePPUnknown() { in parsePPUnknown()
928 void UnwrappedLineParser::readTokenWithJavaScriptASI() { in readTokenWithJavaScriptASI()
968 void UnwrappedLineParser::parseStructuralElement() { in parseStructuralElement()
1395 bool UnwrappedLineParser::tryToParseLambda() { in tryToParseLambda()
1441 bool UnwrappedLineParser::tryToParseLambdaIntroducer() { in tryToParseLambdaIntroducer()
1459 void UnwrappedLineParser::tryToParseJSFunction() { in tryToParseJSFunction()
1502 bool UnwrappedLineParser::tryToParseBracedList() { in tryToParseBracedList()
1513 bool UnwrappedLineParser::parseBracedList(bool ContinueOnSemicolons, in parseBracedList()
1607 void UnwrappedLineParser::parseParens() { in parseParens()
1658 void UnwrappedLineParser::parseSquare(bool LambdaIntroducer) { in parseSquare()
1697 void UnwrappedLineParser::parseIfThenElse() { in parseIfThenElse()
1739 void UnwrappedLineParser::parseTryCatch() { in parseTryCatch()
1808 void UnwrappedLineParser::parseNamespace() { in parseNamespace()
1832 void UnwrappedLineParser::parseNew() { in parseNew()
1857 void UnwrappedLineParser::parseForOrWhileLoop() { in parseForOrWhileLoop()
1879 void UnwrappedLineParser::parseDoWhile() { in parseDoWhile()
1904 void UnwrappedLineParser::parseLabel() { in parseLabel()
1930 void UnwrappedLineParser::parseCaseLabel() { in parseCaseLabel()
1939 void UnwrappedLineParser::parseSwitch() { in parseSwitch()
1956 void UnwrappedLineParser::parseAccessSpecifier() { in parseAccessSpecifier()
1967 bool UnwrappedLineParser::parseEnum() { in parseEnum()
2029 void UnwrappedLineParser::parseJavaEnumBody() { in parseJavaEnumBody()
2092 void UnwrappedLineParser::parseRecord(bool ParseAsExpr) { in parseRecord()
2162 void UnwrappedLineParser::parseObjCMethod() { in parseObjCMethod()
2182 void UnwrappedLineParser::parseObjCProtocolList() { in parseObjCProtocolList()
2194 void UnwrappedLineParser::parseObjCUntilAtEnd() { in parseObjCUntilAtEnd()
2218 void UnwrappedLineParser::parseObjCInterfaceOrImplementation() { in parseObjCInterfaceOrImplementation()
2275 bool UnwrappedLineParser::parseObjCProtocol() { in parseObjCProtocol()
2305 void UnwrappedLineParser::parseJavaScriptEs6ImportExport() { in parseJavaScriptEs6ImportExport()
2350 void UnwrappedLineParser::parseStatementMacro() in parseStatementMacro()
2386 void UnwrappedLineParser::addUnwrappedLine() { in addUnwrappedLine()
2407 bool UnwrappedLineParser::eof() const { return FormatTok->Tok.is(tok::eof); } in eof()
2409 bool UnwrappedLineParser::isOnNewLine(const FormatToken &FormatTok) { in isOnNewLine()
2521 void UnwrappedLineParser::flushComments(bool NewlineBeforeNext) { in flushComments()
2546 void UnwrappedLineParser::nextToken(int LevelDifference) { in nextToken()
2559 void UnwrappedLineParser::distributeComments( in distributeComments()
2614 void UnwrappedLineParser::readToken(int LevelDifference) { in readToken()
2669 void UnwrappedLineParser::pushToken(FormatToken *Tok) { in pushToken()