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

/external/llvm/lib/Support/
H A DStringExtras.cpp32 /// leading characters that appear in the Delimiters string, and ending the
33 /// token at any of the characters that appear in the Delimiters string. If
38 StringRef Delimiters) {
40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
52 StringRef Delimiters) {
53 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters);
56 S = getToken(S.second, Delimiters);
37 getToken(StringRef Source, StringRef Delimiters) argument
50 SplitString(StringRef Source, SmallVectorImpl<StringRef> &OutFragments, StringRef Delimiters) argument

Completed in 178 milliseconds