Lines Matching defs:split
698 /// \param Separator The character to split on.
699 /// \returns The split substrings.
700 [[nodiscard]] std::pair<StringRef, StringRef> split(char Separator) const {
701 return split(StringRef(&Separator, 1));
712 /// \param Separator - The string to split on.
713 /// \return - The split substrings.
715 split(StringRef Separator) const {
730 /// \param Separator - The string to split on.
731 /// \return - The split substrings.
751 /// \param Separator - The string to split on.
752 /// \param MaxSplit - The maximum number of times the string is split.
754 void split(SmallVectorImpl<StringRef> &A,
769 /// \param Separator - The string to split on.
770 /// \param MaxSplit - The maximum number of times the string is split.
772 void split(SmallVectorImpl<StringRef> &A, char Separator, int MaxSplit = -1,
783 /// \param Separator - The character to split on.
784 /// \return - The split substrings.