Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DBreakableToken.cpp51 unsigned MaxSplitBytes = 0; in getCommentSplit() local
54 NumChars < MaxSplit && MaxSplitBytes < Text.size();) { in getCommentSplit()
56 encoding::getCodePointNumBytes(Text[MaxSplitBytes], Encoding); in getCommentSplit()
58 encoding::columnWidthWithTabs(Text.substr(MaxSplitBytes, BytesInChar), in getCommentSplit()
60 MaxSplitBytes += BytesInChar; in getCommentSplit()
63 StringRef::size_type SpaceOffset = Text.find_last_of(Blanks, MaxSplitBytes); in getCommentSplit()
74 Blanks, std::max<unsigned>(MaxSplitBytes, FirstNonWhitespace)); in getCommentSplit()