Searched refs:MaxSplit (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Format/
H A DBreakableToken.cpp48 unsigned MaxSplit = ColumnLimit - ContentStartColumn + 1; local
52 NumChars < MaxSplit && MaxSplitBytes < Text.size(); ++NumChars)
61 // reaches past MaxSplit.
87 unsigned MaxSplit = local
104 if (Chars > MaxSplit)
/external/llvm/lib/Support/
H A DStringRef.cpp259 StringRef Separators, int MaxSplit,
266 rest.data() != NULL && (MaxSplit < 0 || splits < MaxSplit);
/external/llvm/include/llvm/ADT/
H A DStringRef.h457 /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most
458 /// \p MaxSplit splits are done and consequently <= \p MaxSplit
461 /// still count when considering \p MaxSplit
463 /// Separator.join(A) == *this if MaxSplit == -1 and KeepEmpty == true
467 /// \param MaxSplit - The maximum number of times the string is split.
470 StringRef Separator, int MaxSplit = -1,

Completed in 83 milliseconds