Lines Matching refs:Text

127     StringRef Text(PreviousOriginalWhitespaceEndData,  in calculateLineBreakInformation()  local
151 auto NewlinePos = Text.find_first_of('\n'); in calculateLineBreakInformation()
1283 void WhitespaceManager::storeReplacement(SourceRange Range, StringRef Text) { in storeReplacement() argument
1288 WhitespaceLength) == Text) in storeReplacement()
1291 SourceMgr, CharSourceRange::getCharRange(Range), Text)); in storeReplacement()
1300 void WhitespaceManager::appendNewlineText(std::string &Text, in appendNewlineText() argument
1303 Text.append(UseCRLF ? "\r\n" : "\n"); in appendNewlineText()
1307 std::string &Text, unsigned Newlines, unsigned PreviousEndOfTokenColumn, in appendEscapedNewlineText() argument
1313 Text.append(Spaces, ' '); in appendEscapedNewlineText()
1314 Text.append(UseCRLF ? "\\\r\n" : "\\\n"); in appendEscapedNewlineText()
1320 void WhitespaceManager::appendIndentText(std::string &Text, in appendIndentText() argument
1326 Text.append(Spaces, ' '); in appendIndentText()
1335 Text.append(Spaces, ' '); in appendIndentText()
1340 Text.append("\t"); in appendIndentText()
1342 Text.append(Spaces / Style.TabWidth, '\t'); in appendIndentText()
1343 Text.append(Spaces % Style.TabWidth, ' '); in appendIndentText()
1345 Text.append(Spaces, ' '); in appendIndentText()
1352 Spaces = appendTabIndent(Text, Spaces, Indentation); in appendIndentText()
1354 Text.append(Spaces, ' '); in appendIndentText()
1358 Spaces = appendTabIndent(Text, Spaces, Spaces); in appendIndentText()
1359 Text.append(Spaces, ' '); in appendIndentText()
1365 Spaces = appendTabIndent(Text, Spaces, Indentation); in appendIndentText()
1367 Text.append(Spaces, ' '); in appendIndentText()
1372 unsigned WhitespaceManager::appendTabIndent(std::string &Text, unsigned Spaces, in appendTabIndent() argument
1380 Text.append(Tabs, '\t'); in appendTabIndent()