Home
last modified time | relevance | path

Searched refs:AnnotatedLines (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Format/
DTokenAnalyzer.cpp101 SmallVector<AnnotatedLine *, 16> AnnotatedLines; in process() local
105 AnnotatedLines.push_back(new AnnotatedLine(UnwrappedLines[Run][i])); in process()
106 Annotator.annotate(*AnnotatedLines.back()); in process()
110 analyze(Annotator, AnnotatedLines, Tokens, Result); in process()
120 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { in process()
121 delete AnnotatedLines[i]; in process()
DFormat.cpp802 SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, in analyze() argument
804 deriveLocalStyle(AnnotatedLines); in analyze()
805 AffectedRangeMgr.computeAffectedLines(AnnotatedLines.begin(), in analyze()
806 AnnotatedLines.end()); in analyze()
810 requoteJSStringLiteral(AnnotatedLines, Result); in analyze()
812 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) { in analyze()
813 Annotator.calculateFormattingInformation(*AnnotatedLines[i]); in analyze()
816 Annotator.setCommentLineLevels(AnnotatedLines); in analyze()
826 .format(AnnotatedLines); in analyze()
950 deriveLocalStyle(const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines) { in deriveLocalStyle() argument
[all …]
DSortJavaScriptImports.cpp129 SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, in analyze() argument
131 AffectedRangeMgr.computeAffectedLines(AnnotatedLines.begin(), in analyze()
132 AnnotatedLines.end()); in analyze()
138 parseModuleReferences(Keywords, AnnotatedLines); in analyze()
276 SmallVectorImpl<AnnotatedLine *> &AnnotatedLines) { in parseModuleReferences() argument
281 for (auto Line : AnnotatedLines) { in parseModuleReferences()
DTokenAnalyzer.h89 SmallVectorImpl<AnnotatedLine *> &AnnotatedLines,