Searched defs:Delimiters (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Support/
H A DStringExtras.cpp33 /// leading characters that appear in the Delimiters string, and ending the
34 /// token at any of the characters that appear in the Delimiters string. If
39 StringRef Delimiters) {
41 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
53 StringRef Delimiters) {
54 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
57 S = getToken(S.second, Delimiters);
38 getToken(StringRef Source, StringRef Delimiters) argument
51 SplitString(StringRef Source, SmallVectorImpl<StringRef> &OutFragments, StringRef Delimiters) argument

Completed in 73 milliseconds